I am writing some code to read from an OBD II simulator using Python Serial. I am able to communicate with it as normal if I connect using 115200 bauds per second.
But in order to initialize it I need to write 0x33 through serial at 5 bauds per second. But the only baudrates I can use in Python Serial are the following:
(50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200)
Does anybody knows how to send the data at 5 bauds per second?
I have tried many crazy things (like sleeping beetween reads) without any succes.
Any help will be greatly appreciated!