Updates to decoder function for new API endpoint. (#34)

master
Sharjeel Aziz 2021-11-22 13:25:07 -05:00 zatwierdzone przez GitHub
rodzic 3c9dbe770c
commit 83bd603a10
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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;
}