I\'m having trouble to read more than one character using my program, I can\'t seem to figure out what went wrong with my program.
import serial ser = seria
I use this small method to read Arduino serial monitor with Python
import serial ser = serial.Serial("COM11", 9600) while True: cc=str(ser.readline()) print(cc[2:][:-5])