Electrical – Connect several RS-232 ports into one

atmelmicrocontrollerrs232

I will have several devices with atmel microcontrollers which I'm going to connect to PC using RS-232. Is there any way to connect several devices into one RS-232 port? (Let's assume RS-232 can handle amounts of data I need to transmit). Maybe there is some other good way for me that is not based on RS-232?

Best Answer

Such a scheme exists but it is not RS232, it would be an RS485 system. Each device connects to a common wire pair and communication is controlled by each device having a unique address. The main PC system would send a request to an address and only one device would respond at a time. There are RS232 to RS485 converters available.

There are also RS232 multiplexers available that use address schemes, though these are often very bulky.

These days there would be more modern options, such as using addressed (wireless) WiFi modules for communication.

Related Topic