Added lora receiver

This commit is contained in:
2025-12-25 03:33:43 +01:00
parent fc30830159
commit 692320a635

View File

@@ -0,0 +1,8 @@
import serial
ser = serial.Serial('/dev/ttyUSB1', 57600, timeout=1)
while True:
line = ser.readline()
if line:
print("Received:", line.decode('utf-8', errors='ignore'))