additional decoder for short latLon on port4
This commit is contained in:
parent
42b1435df3
commit
bb227b525b
@ -50,8 +50,12 @@ function Decoder(bytes, port) {
|
|||||||
|
|
||||||
if (port === 4) {
|
if (port === 4) {
|
||||||
// gps data
|
// gps data
|
||||||
|
if (bytes.length === 8) {
|
||||||
|
return decode(bytes, [latLng, latLng], ['latitude', 'longitude']);
|
||||||
|
} else {
|
||||||
return decode(bytes, [latLng, latLng, uint8, hdop, altitude], ['latitude', 'longitude', 'sats', 'hdop', 'altitude']);
|
return decode(bytes, [latLng, latLng, uint8, hdop, altitude], ['latitude', 'longitude', 'sats', 'hdop', 'altitude']);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (port === 5) {
|
if (port === 5) {
|
||||||
// button pressed
|
// button pressed
|
||||||
|
Loading…
Reference in New Issue
Block a user