Send one device at a time instead of an array.

This commit is contained in:
henry 2024-11-21 07:58:42 -08:00
parent 2cc64731f1
commit 6816ebdb73
1 changed files with 1 additions and 6 deletions

View File

@ -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