added power handling

master
cheetah 4 years ago
parent 58a850f16b
commit 622fb264da

@ -1,5 +1,3 @@
// This is for TTNv2 (deprecated)
// configured for having no Choice of Recipient for CannedMessages
function Decoder(bytes, port) { function Decoder(bytes, port) {
var data = {} var data = {}
function bytesToString(a) { function bytesToString(a) {
@ -27,12 +25,24 @@ function Decoder(bytes, port) {
case 3: // Status & Canned Messages case 3: // Status & Canned Messages
break; break;
case '4': // Battery and Power Notifications case 4: // Battery and Power Notifications
// Startup 'FF' // Startup 'FF'
// Shutdown 'EE' // Shutdown 'EE'
// Low Battery 'FD' // Low Battery 'FD'
// ChargingOn '|V|CC' // ChargingOn '|V|CC'
// ChargingOff'|V|BB' // ChargingOff'|V|BB'
if (bytes.length == 1) {
data.type = 'power'
if (bytes[0] >= 0xEE) {
data.poweredOn = bytes[0]== 0xFF
}
if (bytes[0] == 0xFD) {
data.type = 'low_battery'
}
} else {
data.battery = bytes[0] * 1
data.isCharging = bytes[1] == 0xCC
}
break; break;
case 5: // OTAStatus + LoneWorker/SOS Trigger + GPS Tracking Port '|G|' case 5: // OTAStatus + LoneWorker/SOS Trigger + GPS Tracking Port '|G|'
// GPS Tracking '|G|' // GPS Tracking '|G|'

Loading…
Cancel
Save