You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
238 B
JavaScript

function ttn_encoder() {
// IMPORTANT: paste code from src/encoder.js here
// IMPORTANT: paste code from src/LoraMessage.js here
return new LoraMessage()
.addUnixtime(Date.now() / 1000)
.addLatLng(-33.905052, 151.26641);
}