From 1220da020ef4d5b9825ba967b4216f9e1180b4cb Mon Sep 17 00:00:00 2001 From: Konstantinos Kamaropoulos Date: Mon, 6 Jan 2020 00:50:24 +0200 Subject: [PATCH] feat: Send POST request with LoRa packet data to REST API --- main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: