cyclops1982 / RAKTracker

Example code that get's a distance measure and sends it via lora. First implementation. Very basic.
0 stars 0 forks source link

Add rx handling #2

Closed cyclops1982 closed 1 year ago

cyclops1982 commented 1 year ago

We would like to be able to configure a few things remotely. These are things are:

We want a fairly simple format to do this. Like sending 0x01 0xFF could set the timeout to 255 minutes (or something like that). We could then send multiple commands by doing this after each other. The key is that we know that message 0x01 means 'wait time update' and it (in this case) is 1 byte of data. We could thus send 0x01 0xFF 0x10 0x00 0xFF to set the wait time AND the (example) GPS fix time (Where the fix time is 2 bytes)

cyclops1982 commented 1 year ago

This has been completed in https://github.com/cyclops1982/RAKTracker/pull/3