diff --git a/decoder-ttn.txt b/decoder-ttn.txt index e1842af..d73153e 100644 --- a/decoder-ttn.txt +++ b/decoder-ttn.txt @@ -1,6 +1,6 @@ /********************************************************************* * The TTN Payload function equal for all environment applications -********************************************************************** +**********************************************************************/ function Decoder(bytes, port) { var retValue = { bytes: bytes @@ -14,4 +14,5 @@ function Decoder(bytes, port) { retValue.humidity = ((bytes[8] << 8) | bytes[9]) / 10.0; return retValue; } -*********************************************************************/ + +