packed_converter.js: bugfix

This commit is contained in:
Klaus K Wilting 2019-01-01 13:48:32 +01:00
parent fadbd2d38d
commit a0a96b36dd

View File

@ -7,19 +7,19 @@ function Converter(decoded, port) {
var pax = 0; var pax = 0;
if (port === 1) { if (port === 1) {
if('wifi' in converted){
pax += converted.wifi
}
for (var x in converted) { if('ble' in converted){
pax += converted[x]; pax += converted.ble
} }
converted.pax = pax;
converted.pax = pax;
} }
if (port === 2) { if (port === 2) {
converted.voltage /= 1000; converted.voltage /= 1000;
} }
return converted; return converted;
} }