I have a question, I use pyserial to trigger Arduino on windows 7 PC but it does not work , Linux PC use the same pyserial code and Windows use Arduino IDE to launch serial port and input value but it can work.
L LED have flashing when I use python code to trigger it.
I have check serial port and write value is right.
code.
import serial
ser=serial.Serial()
ser.braudrate = 9600
ser.port = ('COM82')
ser.open()
ser.write(5)
PC Windows 7 64 bit
I have try python 2.7.15 32bit and 64bit and 3.6 64bit but still is fail.
pyserial use 3.4
Arduino uno R3