You have a timeout set at 1 second. Are you certain the response is not timing out? The read here is waiting for 9 characters.
Try this:
Try this:
Code:
try: ser_resp = ser.read(9)except: print("timeout")
Statistics: Posted by SurferTim — Wed Oct 30, 2024 3:52 pm