diff --git a/esp32/main.py b/esp32/main.py index 26c8bb5..8e43d92 100644 --- a/esp32/main.py +++ b/esp32/main.py @@ -51,11 +51,14 @@ def ensure_peer(addr): raise +print("Starting ESP32 main.py") + while True: if uart.any(): data = uart.read() if not data or len(data) < 6: continue + print(f"Received data: {data}") addr = data[:6] payload = data[6:] ensure_peer(addr)