This commit is contained in:
2026-02-27 16:26:37 +01:00
parent b23ad9a1fd
commit 58564affa0

View File

@@ -21,8 +21,9 @@ const (
type Packet struct {
Time time.Time `json:"time,omitempty"` // Receive time stamp
Protocol string `json:"protocol"` // Protocol name
Radio string `json:"radio"` // Radio name/ID
SNR float64 `json:"snr"` // Signal-to-noise Ratio
RSSI int8 `json:"rssi"` // Received Signal Strength Indicator
RSSI int `json:"rssi"` // Received Signal Strength Indicator
Raw []byte `json:"raw"` // Raw packet
}