Setup
Direct wiring
When using the microcontrollers pins directly (as in the figure above), you'll use 10_TableAndAnalog.ino.
Set enableOutput
to 1 to create an output hub.
List the pins numbers used in outputPins[]
below. The first you type in will get slot 1 in the hub, the second gets slot 2, and so on.
As mentioned above, this hub is numbered last of all your hubs. So if you only have this hub, it is #1. If you have 3 port expanders set up as output hubs, this is hub #4.
To set up the arduino as in the figure above:
Lets say you've hooked these output pins to LEDs. In the firmware you'll now refer to the 6 LEDs as Slot 1 to 6 on Hub #1 instead of having to keep track of the arduino pin numbers.
PCA9555
USING_PCA0555 is to disable/enable support for this IC. Set it to 1 to enable.
PCA9555_I2C_NUMBER lets to chose between I2C channel 0 or 1 on a RP2040 board. If you're not using a RP2040 board, just leave this at 0.
PCA9995_OUTPUT is to set up the port expander as an output device. Set it to 1.
PCA9995outputAddress needs to know the I2C address of the port expanders you're setting up as output devices and builds output hubs for them. The order in which you list them here will also assign the hub numbers. The first on in the list is your output hub #1.
Lets say we're using I2C channel 0 and have 3 x PCA9555 set up:
The firmware has now build 3 output hubs, corresponding to the 3 port expanders, with 16 slots each corresponding to the 16 pins on each port expander. If we want to do something with pin 10 on the port expander with address 0x21, well refer to it as hub 2, slot 10.
Last updated