diff --git a/main.py b/main.py index 26e9003..50a2db3 100644 --- a/main.py +++ b/main.py @@ -2,6 +2,7 @@ import RYLR896Py from _thread import * import threading import json +import requests # 1. Setup serial connection lora = RYLR896Py.RYLR896("/dev/ttyS0", 115200) @@ -24,7 +25,10 @@ def dataHandler(data): 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 while True: