When sending information via serial port using the pyserial import, the "write" function is sending the data coded as ASCII.
I would like a method to send the hex data as it is, meaning that for h"7" to send "00000111" for example and not the "00110111" ascii coded.
Could somebody help?