Send one device at a time instead of an array.
This commit is contained in:
parent
2cc64731f1
commit
6816ebdb73
|
@ -974,7 +974,6 @@ type BleManufacturerData struct {
|
|||
|
||||
type BleAdvertisementPayload struct {
|
||||
LocalName string `json:"localName,omitempty"`
|
||||
Bytes []byte `json:"bytes,omitempty"`
|
||||
ManufacturerData []BleManufacturerData `json:"companies,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -985,13 +984,9 @@ type BleDevice struct {
|
|||
Advertisement BleAdvertisementPayload `json:"advertisement,omitempty"`
|
||||
}
|
||||
|
||||
type BleDevicesMap map[string]BleDevice
|
||||
|
||||
type BleDevices []BleDevice
|
||||
|
||||
type BleAdvertisementMessage struct {
|
||||
Header MessageHeader `json:"header,omitempty"`
|
||||
Devices BleDevices `json:"devices,omitempty"`
|
||||
Devices BleDevice `json:"device,omitempty"`
|
||||
}
|
||||
|
||||
// noinspection GoUnusedExportedFunction
|
||||
|
|
Loading…
Reference in New Issue