Data Sheet

www.dragino.com
LGT-92 LoRa GPS Tracker User Manual 11 / 29
value=bytes[3]<<16 | bytes[4]<<8 | bytes[5];
var longitude=value/10000;//gps longitude
value=bytes[6]<<8 | bytes[7];
var batV=value/1000;//Battery,units:V
value=bytes[8]<<8 | bytes[9];
var roll=value/100;//
value=bytes[10]<<8 | bytes[11];
var pitch=value/100;
return {
Latitude: latitude,
Longitud: longitude,
Roll: roll,
Pitch:pitch,
BatV:batV,
};
}
Save the change the uplink message will be parsed. As below:
2.4 Downlink Payload
2.5 Firmware Change Log