bluetooth/gatts.go
Ayke van Laethem 0cabe28570
Initial commit
2019-11-08 10:58:02 +01:00

15 lines
220 B
Go

package bluetooth
// Service is a GATT service to be used in AddService.
type Service struct {
handle uint16
UUID
Characteristics []Characteristic
}
type Characteristic struct {
handle uint16
UUID
Value []byte
}