You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How hard could it be to add the support of the I2C extension module? I am talking about Pa.HUB (PCA 9548AP), which extends 1 I2C slot into 6 I2C slots.
So far with my very limited attempts at coding in arduino ide and UIFlow 2, I don't really see where I can put the "address" of the device - so far it is something like "Serial1" etc.
For the first iteration, e.g. the first slot of the Pa.HUB could be GPS module, second slot could be RFID 2 module, 3rd and 4th slots would be RF433R and RF433T respectively (the most popular/common modules, as far as I understand?)
Eventually, there could be some simple configuration screen for other types of modules, so that you can actually assemble some rig with lego pieces and the choice of modules, without switching the connections back and forth?
The text was updated successfully, but these errors were encountered:
TwoWire (i2c) devices are already chainable. i2c is nice because of this capability and its already relied upon for the basics of how the i2c bus works. What you are looking at is a Multiplexer that is intended to attach multiple of devices that happen to have the same address (collision).
GPS modules run off UART/Serial, not i2c
RF433R/T is not supported and does not use i2c (nor do they use UART/Serial, but instead output the signal which you have to decode)
Hi Everyone,
How hard could it be to add the support of the I2C extension module? I am talking about Pa.HUB (PCA 9548AP), which extends 1 I2C slot into 6 I2C slots.
So far with my very limited attempts at coding in arduino ide and UIFlow 2, I don't really see where I can put the "address" of the device - so far it is something like "Serial1" etc.
For the first iteration, e.g. the first slot of the Pa.HUB could be GPS module, second slot could be RFID 2 module, 3rd and 4th slots would be RF433R and RF433T respectively (the most popular/common modules, as far as I understand?)
Eventually, there could be some simple configuration screen for other types of modules, so that you can actually assemble some rig with lego pieces and the choice of modules, without switching the connections back and forth?
The text was updated successfully, but these errors were encountered: