aumentar el timeout en la conexión serial

si el arduino tarda en leer los datos podemos obtener una respuesta
vacía
This commit is contained in:
f 2022-06-08 10:29:10 -03:00
parent e4bf856b5f
commit a70d4734b7

View file

@ -10,7 +10,7 @@ ser = serial.Serial(
parity=serial.PARITY_NONE,
stopbits=serial.STOPBITS_ONE,
bytesize=serial.EIGHTBITS,
timeout=1
timeout=2
)
ser.flush()
@ -28,7 +28,3 @@ while True:
break
quit()