I would start with checking if anything at all is coming back, something like -while True:
if uart.any():
received_data = uart.readline().decode().strip()
print("Received:", received_data)
Code:
while True: if uart.any(): received_data = uart.read(1)# Don't wait for end of line print("Received:", received_data)
Statistics: Posted by hippy — Thu Feb 08, 2024 11:51 am