diff --git a/esp32-lora/lora_receiver.py b/esp32-lora/lora_receiver.py new file mode 100644 index 00000000..81dd87fa --- /dev/null +++ b/esp32-lora/lora_receiver.py @@ -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')) \ No newline at end of file