Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bluetooth.bluegiga] Add characteristic notification support #9067

Merged
merged 3 commits into from
Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}
Loading