ser = serial.Serial('/dev/ttyUSB0', 19200)
Does your firmware really ask for just 19200 baud? More typical are 115200 or even 250000 baud. 250000 baud don't work so well on Linux, though.
ser = serial.Serial('/dev/ttyUSB0', 19200)
Quote
What are the Serial Communication Default Properties
Baud: 9600
Data Bits: 8
Parity: None
Stop Bits: 1
Flow Control: None
See IMS Terminal > Preferences > Comm Settings for recommended Character Delay and Line Delay settings.
Timing will vary with our different products.
Quote
BR is the least of my worries
Quote
Bits/ byte I don't know and stop bits 1 or 2...? Parity...?