Help to decode Netvox R711 data

Here is the working formatter for a R712, which is just a 711 in outdoor clothing, should work the same.

function Decoder(bytes, port) {
var BatteryVolts = bytes[3] / 10;
var Temperature = (bytes[4]<<24>>16 | bytes[5]) / 100;
var Humidity = ((bytes[6] << 8) | bytes[7]) / 100;

return {
    Volts: BatteryVolts,
    Temperature : Temperature,
    Humidity: Humidity
    };
}
1 Like