/ TheThingsNetwork_Feather / tinylora_hello_decoder.js
tinylora_hello_decoder.js
1  // TTN Decoder for 'Hello LoRa'
2  function Decoder(bytes, port) {
3    // Decode plain text; for testing only 
4    return {
5        myTestValue: String.fromCharCode.apply(null, bytes)
6    };
7  }