Programming #
NORVI-EX-I4 uses MCP230008 over I2C communication. The I2C addresses of the devices can be configured with the DIP switches at the bottom of the controller. It can Daisy chain up to eight expansion modules.
Expansion Port #
The expansion port of the NORVI IIOT Controllers can be utilized for external sensor connections where raw GPIO connections are required, or they can be used to plug NORVI Expansion Modules. Browse the NORVI Expansion Product Range. How to Connect NORVI Expansion Modules
I2C Address Setting #
The I2C address of the expansion module can be configured by switching DIP switches at the bottom of the expansion module. The device can be configured at 8 I2C addresses using the first 3 DIP switches.
Digital Inputs #
Wiring Digital Inputs #
The digital inputs of the NORVI IIOT range can be configured as both a sink and a source connection. The inverse of the digital input polar should be supplied to the common terminal.
Programming Digital Input #
Reading the relevant GPIO of MCP230008 gives the value of the digital input. When the inputs are in the OFF state, the GPIO goes HIGH, and when the inputs are in the ON state, the GPIO goes LOW.
Refer to the GPIO Allocation Table for Digital Input GPIO
Refer to the I2C Address setting to set the I2C address of the Expansion
#include <Adafruit_MCP23X17.h>
#define SDA 16
#define SCL 17
#define INPUT1 0
#define INPUT2 1
#define INPUT3 2
#define INPUT4 3
#define Address 0x27 // Set Address According to DIP Switch Configuration
Adafruit_MCP23X17 mcp;
void setup() {
Serial.begin(115200);
Serial.println("Device Starting");
Wire.begin (SDA, SCL);
if (!mcp.begin_I2C(Address)) {
Serial.println("Error.");
while (1);
}
// configure pin for output
mcp.pinMode(INPUT1, INPUT);
mcp.pinMode(INPUT2, INPUT);
mcp.pinMode(INPUT3, INPUT);
mcp.pinMode(INPUT4, INPUT);
}
void loop() {
Serial.print(mcp.digitalRead(INPUT1));
Serial.print(mcp.digitalRead(INPUT2));
Serial.print(mcp.digitalRead(INPUT3));
Serial.println(mcp.digitalRead(INPUT4));
Serial.println("");
delay(500);
}