-
Notifications
You must be signed in to change notification settings - Fork 85
Description
FT101
LoRaWAN Version 1.0.3
Work Mode Class A
Join Type OTAA
App Version 1.0.4
Firmware Version 1.3
Hardware Version 1.0
FT101 is onboarded and communicating with LNS, and codec is properly decoding. Values passed in payload are:
Status, FW Version HW Version, IPSO Version, Serial, TSL Version, RSSI, SF, SNR, and Tx Power.
Latitude and Longitude are displayed in FT101 app while running Signal Evaluation, Real-Time Testing, and Noise Scan, and are included in the exported reports. Inclusion of Lat/Long in the payload will allow 3rd party integration with application server and provide mapping abilities outside of the current exported report method. The decoder already has a function detailing that Lat/Long should/could be decoded from the uplink.
} // LOCATION else if (channel_id === 0x03 && channel_type === 0xa1) { decoded.longitude = readInt32LE(bytes.slice(i, i + 4)) / 1000000; decoded.latitude = readInt32LE(bytes.slice(i + 4, i + 8)) / 1000000; i += 8; }