Added Code and Pictures

This commit is contained in:
unixweb
2020-05-17 12:32:37 +02:00
parent dabd4bd9e9
commit 83b05e96d6
4 changed files with 513 additions and 0 deletions

17
decoder-ttn.txt Normal file
View File

@@ -0,0 +1,17 @@
/*********************************************************************
* The TTN Payload function equal for all environment applications
**********************************************************************
function Decoder(bytes, port) {
var retValue = {
bytes: bytes
};
retValue.node = bytes[0];
retValue.battery = bytes[1] / 10.0;
retValue.vcc = bytes[2] / 10.0;
retValue.temperature = (((bytes[3] << 8) | bytes[4]) / 10.0) - 40.0;
retValue.pressure = ((bytes[5] << 16) | (bytes[6] << 8) | bytes[7]);
retValue.humidity = ((bytes[8] << 8) | bytes[9]) / 10.0;
return retValue;
}
*********************************************************************/