You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
203 B
11 lines
203 B
export interface MessageDTO {
|
|
from: number;
|
|
to: number;
|
|
rx_snr: number;
|
|
hop_limit: number;
|
|
rx_rssi: number;
|
|
hop_start: number;
|
|
ts: number;
|
|
decoded_payload: string;
|
|
want_ack: boolean;
|
|
}
|
|
|