-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bluetooth.bluegiga] Add characteristic notification support (#9067)
* Add support for characteristic notifications. * Also fixed bluegiga initialize/dispose bugs. Signed-off-by: Connor Petty <[email protected]>
- Loading branch information
Showing
6 changed files
with
596 additions
and
224 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
...src/main/java/org/openhab/binding/bluetooth/bluegiga/BlueGigaBluetoothCharacteristic.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/** | ||
* Copyright (c) 2010-2020 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.bluetooth.bluegiga; | ||
|
||
import java.util.UUID; | ||
|
||
import org.openhab.binding.bluetooth.BluetoothCharacteristic; | ||
|
||
/** | ||
* The {@link BlueGigaBluetoothCharacteristic} class extends BluetoothCharacteristic | ||
* to provide write access to certain BluetoothCharacteristic fields that BlueGiga | ||
* may not be initially aware of during characteristic construction but must be discovered | ||
* later. | ||
* | ||
* @author Connor Petty - Initial contribution | ||
* | ||
*/ | ||
public class BlueGigaBluetoothCharacteristic extends BluetoothCharacteristic { | ||
|
||
private boolean notificationEnabled; | ||
|
||
public BlueGigaBluetoothCharacteristic(int handle) { | ||
super(null, handle); | ||
} | ||
|
||
public void setProperties(int properties) { | ||
this.properties = properties; | ||
} | ||
|
||
public void setHandle(int handle) { | ||
this.handle = handle; | ||
} | ||
|
||
public void setUUID(UUID uuid) { | ||
this.uuid = uuid; | ||
} | ||
|
||
public boolean isNotificationEnabled() { | ||
return notificationEnabled; | ||
} | ||
|
||
public void setNotificationEnabled(boolean enable) { | ||
this.notificationEnabled = enable; | ||
} | ||
} |
Oops, something went wrong.