Hi guys, total rookie here. I'm working on a project that involves having an Arduino mega communicate with two syringes that each have an RS-232 port and a USB-B port. My original plan was to hook up two serial ports from the mega to MAX232s and have them connect separately to the two RS-232 ports. However, I'm trying to consider other options.
The USB-B can use TTL levels to communicate, which seems like a nice workaround, but the mega only has one USB port. I have a feeling I can't communicate serially to two different devices using a USB splitter (or can I?). I don't know a lot about USB protocol and it seems pretty complicated, so any help here would be much appreciated.
I'm also considering using an SPI connection to communicate more cleanly with both syringes, but given that they're looking for serial inputs, I have a sense that won't work. I guess I could probably convert it back into two serial outputs, but at that point I'm better off using the actual serial ports, right?