How can i send 8-bit data or binary data with pyserial?

Diez B. Roggisch deetsNOSPAM at web.de
Tue Dec 14 07:31:49 EST 2004


> i have an electronic module which only understand binary data.
> i use  python pyserial.
> for example the module starts when 001000000 8-bit binary data sent.but
> pyserial sent only string data.
> Can i send this binary data with pyserial or another way with python.

Strings _are_ binary data. Use the module struct to convert data from more
convenient representations (numbers) to strings, or use chr() to convert
them yourself.

-- 
Regards,

Diez B. Roggisch



More information about the Python-list mailing list