Browse Source

feat: Listen to LoRa data and print them to the console

master
Konstantinos Kamaropoulos 5 years ago
parent
commit
bb50e48c72
  1. 24
      main.py

24
main.py

@ -0,0 +1,24 @@
import RYLR896Py
from _thread import *
import threading
# 1. Setup serial connection
lora = RYLR896Py.RYLR896("/dev/ttyS0", 115200)
lora.SetRFParamsLessThan3KM()
def dataHandler(data):
print(data["message"])
# 2. Listen for data
while True:
data = lora.Receive()
if data is not None:
# On data:
# a. Check if valid
# b. Parse into object
# c. Prepare server request
# d. Send request to REST API
start_new_thread(dataHandler, (data,))
# Split packet and structure into a JSON object
# Send Post request to REST API with JSON object in request body
Loading…
Cancel
Save