hello, I've been wondering if it is possible to connect two (or more) Usb Host Shields to a single microcontroller.
My understanding is that the Usb Host Shields are just spi devices that can connect via the spi bus. Thus, it would be possible and one would only need to assign a different SS pin for each device.
The problem is that the library I'm using assumes only ONE Usb Host Shield. I'm sure if I were to connect another Usb Host Shield, it would require modifying the library a bit as things would conflict.
I would like to use two USB Host Shields for Arduino Pro Mini connected to a single Teensy 3.2. So far, I have one connected and it works fine. Would it be possible to connect a second one?
fyi, I'm trying to connect both a usb keyboard AND a usb barcode scanner to the teensy. I know both can be individually connected (one at a time) but I'm trying to figure out how to do both at the same time. This is an example of a usb keyboard (the barcode scanner example is almost identical). Would it really be as simple as just declaring another Usb object?
Any help greatly appreciated. Thanks.