SyntaxFix
Write A Post
Hire A Developer
Questions
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])