prototooth/gatts_other.go
Ayke van Laethem b568c93250
all: add support for sending notifications
This is done by enabling the Notify permission and writing to the
characteristics: writes will automatically notify connected centrals.
2020-06-03 19:42:21 +02:00

10 lines
197 B
Go

// +build !linux
package bluetooth
// Characteristic is a single characteristic in a service. It has an UUID and a
// value.
type Characteristic struct {
permissions CharacteristicPermissions
}