Skip to content

FT101_Decoder.js does not pass Lat/Long in payload #84

@techfixpros

Description

@techfixpros

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; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions