prototooth/gatts.go

15 lines
220 B
Go
Raw Normal View History

2019-06-02 17:12:36 +00:00
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
}