Browse Source

feat: Send POST request with LoRa packet data to REST API

master
Konstantinos Kamaropoulos 5 years ago
parent
commit
1220da020e
  1. 6
      main.py

6
main.py

@ -2,6 +2,7 @@ import RYLR896Py
from _thread import * from _thread import *
import threading import threading
import json import json
import requests
# 1. Setup serial connection # 1. Setup serial connection
lora = RYLR896Py.RYLR896("/dev/ttyS0", 115200) lora = RYLR896Py.RYLR896("/dev/ttyS0", 115200)
@ -24,7 +25,10 @@ def dataHandler(data):
jsonData = json.dumps(dataToSend) jsonData = json.dumps(dataToSend)
print(jsonData) url = 'http://192.168.100.11:3000/logs'
req = requests.post(url, json = dataToSend)
print(req.text)
# 2. Listen for data # 2. Listen for data
while True: while True:

Loading…
Cancel
Save