I have two python programs that need to read from the same serial port via pySerial API.
From what I understand, you can not have two programs reading from the same serial port. So what I plan on doing is have one python program read from a physical serial port, and then have it copy the EXACT data it received from the serial port to the virtual serial ports, where the other python programs can read it via pySerial API.
Of the two python progarms that will be using pySerial, only one of them will respond back with anything.
Any ideas how to do this?