ex post clean solution for issue #510

This commit is contained in:
Klaus K Wilting 2020-03-01 16:18:17 +01:00
parent f00397929b
commit d180a56fd1
3 changed files with 11 additions and 5 deletions

View File

@ -4,8 +4,6 @@
function Decoder(bytes, port) { function Decoder(bytes, port) {
var decoded = {}; var decoded = {};
decoded.wifi = 0;
decoded.ble = 0;
if (bytes.length === 0) { if (bytes.length === 0) {
return {}; return {};

View File

@ -4,14 +4,24 @@
function Converter(decoded, port) { function Converter(decoded, port) {
var converted = decoded; var converted = decoded;
var pax = 0;
if (port === 1) { if (port === 1) {
converted.pax = converted.ble + converted.wifi;
if ('wifi' in converted) {
pax += converted.wifi
}
if ('ble' in converted) {
pax += converted.ble
}
converted.pax = pax;
if (converted.hdop) { if (converted.hdop) {
converted.hdop /= 100; converted.hdop /= 100;
converted.latitude /= 1000000; converted.latitude /= 1000000;
converted.longitude /= 1000000; converted.longitude /= 1000000;
} }
} }
return converted; return converted;

View File

@ -3,8 +3,6 @@
function Decoder(bytes, port) { function Decoder(bytes, port) {
var decoded = {}; var decoded = {};
decoded.wifi = 0;
decoded.ble = 0;
if (port === 1) { if (port === 1) {
var i = 0; var i = 0;