Updates to decoder function for new API endpoint.

pull/34/head
sharjeelaziz 2021-06-30 22:51:55 -04:00
rodzic 3c9dbe770c
commit 5a65d1719b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 868CABF258C2D25D
2 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -46,7 +46,7 @@ In summary, within the Arduino IDE open Boards Manager from Tools > Board menu a
The specific details for adding a Mapper or Cargo integration use a different edge node device than the one detailed here. When prompted to add a function decoder, be sure to use the following decoder. Note: This decoder can also be found within this project in the console-decoders directory.
```C
```JS
function Decoder(bytes, port) {
var decoded = {};
@ -63,6 +63,9 @@ function Decoder(bytes, port) {
decoded.hdop = bytes[8] / 10.0;
decoded.sats = bytes[9];
//additional required field
decoded.accuracy = 3;
return decoded;
}

Wyświetl plik

@ -1,4 +1,3 @@
// Decoder for TTGO_TBeam mapping
function Decoder(bytes, port) {
var decoded = {};
@ -15,6 +14,9 @@ function Decoder(bytes, port) {
decoded.hdop = bytes[8] / 10.0;
decoded.sats = bytes[9];
//additional required field
decoded.accuracy = 3;
return decoded;
}