XStore

NORVI X-DI4 – USER GUIDE

Updated on September 2, 2026

6 min read

NORVI X is a next generation modular industrial controller designed to power smart automation and IoT solutions. Built around a CPU module and a range of plug and play expansion modules, the platform scales from a handful of I/O points up to 200, giving system integrators, OEMs, and industrial engineers a flexible foundation for automation, remote monitoring, and data acquisition projects.

The NORVI X-DI4 is a 4 channel digital input expansion module for the NORVI X range. Unlike most other digital input modules in the lineup, it wires its four inputs directly to the host CPU’s GPIO rather than through an I2C port expander. That direct connection is what lets it capture fast signals such as PWM, pulse trains, and encoder output, in addition to simple on and off sensing, while still supporting sourcing (PNP) sensor types.

Key Features #

  • Four optically isolated 24 V DC digital inputs
  • Direct GPIO connection to the host CPU for high speed signal acquisition
  • Switching frequency up to 5 kHz in fast input mode
  • Supports sourcing (NPN) input devices.
  • One shared common terminal (DCOM) for all four inputs
  • DIN rail mountable enclosure with spring terminals
  • One status LED per input channel
  • CE / EMC compliant (EN 61131-2:2007, EN 61010-1:2010+A1:2019, EN IEC 61010-2-201:2018, 2014/30/EU)

Safety Information #

Warning: Disconnect all power sources before installing, wiring, or servicing the NORVI X-DI4. Failure to do so may result in electric shock or damage to the equipment.

  • Install and wire this module only if you are a qualified electrician or trained technician familiar with industrial control equipment.
  • Confirm the host CPU is running from a regulated 24 V DC supply, since the module draws its power through the expansion port rather than a separate connection.
  • Mount the module on a DIN rail inside a suitably rated enclosure. It carries an IP20 protection rating and is not designed for direct outdoor or wash down exposure.
  • Keep the operating environment within minus 40 to plus 85 degrees C and avoid condensing humidity.
  • Do not connect or disconnect the module from the expansion bus while the system is powered.
  • Follow all local and national electrical codes applicable to industrial control panel wiring.
  • The X-DI4 and X-UART-IO share the same GPIO pins (IO5, IO6, IO7, IO10) and cannot be used together in the same system. If your project needs both digital inputs and a UART interface, plan around this conflict rather than combining both modules. Check the NORVI X Mixing Guide before finalizing your module selection.

Technical Specifications #

Electrical #

Rated Supply Voltage24V DC
Current Consumption40mA @ 24V DC

Input Specifications #

Number of Inputs4 digital Inputs
Input TypeIsolated 24 V DC, Sinking
Input Voltage Range0 to 30 V DC
Logic Low (OFF)Below 5 V DC
Logic High (ON)Above 15 V DC
Input ImpedanceApproximately 3.3 kΩ
Input CurrentApproximately 7 mA at 24 V DC
Switching FrequencyUp to 5 kHz in fast input mode
Isolation TypeOptocoupler per channel
Isolation VoltageAbove 1500 Vrms
Connector TypeSpring terminal

Hardware Layout & GPIO Map #

The table below lists the GPIO pins reserved for the X-DI4’s four inputs on the host CPU. These pins are unavailable for any other use once the module is connected to the expansion bus.

TerminalFunctionGPIO
IN1Digital Input 1IO5
IN2Digital Input 2IO6
IN3Digital Input 3IO7
IN4Digital Input 4IO10
DCOMIsolated digital common

Wiring Guide #

GPIO pin assignments for every input are listed in the Hardware Layout and GPIO Map section above; this section covers how to physically wire the module, not the pin numbers themselves.

Power Connection #

The module draws its 24 V DC supply through the expansion port itself, shared with the CPU, so there is no separate power terminal to wire on the X-DI4.

Digital Input Wiring #

  • For a sourcing (PNP) sensor, connect the sensor’s signal output to the corresponding INx terminal, and connect the sensor’s negative or ground lead to DCOM.
  • Since all four inputs share a single DCOM terminal, use the same wiring configuration for all four sourcing digital inputs.

Connecting the Module to the CPU #

  1. Power off the system.
  2. Mount the X-DI4 on the DIN rail next to the CPU module or an adjacent expansion module.
  3. Seat it firmly onto the expansion bus connector until it locks into place.
  4. Wire your field signals (switches, sensors, encoders) to the INPUT 1 through INPUT 4 terminals, confirming each signal stays within the module’s 0 to 30 V DC input range.
  5. Power the system back on.
  6. Upload the module’s test sketch from the NORVI GitHub repository to confirm each channel reads correctly before wiring it into your final control logic.

Expansion Port (50 pin) #

The X-DI4 connects via the same 50 pin expansion bus used across the NORVI X range. Pins 21 through 24 (IO5, IO6, IO7, IO10) are the ones this module claims; all others remain available for other expansion modules or custom wiring.

PIN INDEXPurposeGPIOSOURCE
1MOSIIO11ESP32-S3
2MISOIO13
3SCLKIO12
4GND—-
5SCLIO9
6SDAIO8
7GND—-
8RX1IO18
9TX1IO17
10GND—-
11D+—-
12D-—-
13GND—-
14CS1P1_0PCA9539
I2C Address 0x75
15CS2P0_7
16CS3P0_6
17CS4P0_5
18IO1IO1ESP32-S3
19IO2IO2
20IO4IO4
21IO5IO5
22IO6IO6
23IO7IO7
24IO10IO10
25IO11IO35
26IO12IO36
27IO13IO37
28IO14IO14
29RS485_TXIO15
30GND—-
31GND—-
32RS485_RXIO16
33P1_1P1_1PCA9539
I2C Address 0x75
34P1_2P1_2
35IO21IO21ESP32-S3
36GND—-
37GND—-
38P1_3P1_3PCA9539
I2C Address 0x75
39P1_4P1_4
40P1_5P1_5
41IO39IO39ESP32-S3
42IO40IO40
43NC—-
44NC—-
45NC—-
46GND—-
475V5V
48GNDGND
4924V24V
5024V24V

Software Setup (Arduino IDE) #

The NORVI X-DI4 is read through the host CPU using the Arduino IDE with the ESP32 board package. Firmware examples and required libraries are maintained in the NORVI GitHub repository.

Board Configuration #

1

Install Arduino IDE #

Install the Arduino IDE and add ESP32 board support:

Tools → Board → Boards Manager → ESP32
2

Connect the Controller #

Connect the NORVI X CPU to your computer using the USB interface.

3

Select Board and Port #

Configure the board and communication port:

Tools → Board → ESP32 Arduino → ESP32S3 Dev Module
Tools → Port → Select the corresponding COM/serial port
Arduino IDE Board and Tools Menu Configuration
4

Configure Board Settings #

Under the Tools menu, configure the following settings:

SettingSelection
USB CDC On BootEnabled
Flash Size16MB (128Mb)
PSRAMQSPI PSRAM

Test Code Examples #

Required Libraries #

Install these via Arduino IDE → Sketch → Include Library → Manage Libraries before compiling any of the examples below:

  • Wire
  • WiFi
  • Ethernet
  • SPI
  • PCA9539
  • PCA9536D
  • RTClib (DS3231 RTC)
  • TFT_eSPI
  • CST816S

Install the Required Library #

Install the Wire library through:

Sketch → Include Library → Manage Libraries

Search for Wire and install it if required.

Upload Setting Under the Tools Menu

The Libraries are available in the NORVI-X-Version-02 GitHub repository.

Open and Upload the Test Sketch #

  • Open the X-DI4 test sketch from the NORVI GitHub repository.
  • Verify the board and port selections.
  • Click Upload to upload the test sketch to the NORVI X CPU.

Digital Input Read (X-DI4 Test Sketch Excerpt) #

The following excerpt reads all four X-DI4 channels and prints any state change to the Serial Monitor. It’s taken from the module’s test sketch in the NORVI-X-Version-02 GitHub repository, under the expansion modules folder.

Copy
#define INPUT1 5 
#define INPUT2 6 
#define INPUT3 7 
#define INPUT4 10 

pinMode(INPUT1, INPUT); 
pinMode(INPUT2, INPUT); 
pinMode(INPUT3, INPUT); 
pinMode(INPUT4, INPUT); 

tft.print(digitalRead(INPUT1)); 
tft.print(digitalRead(INPUT2)); 
tft.print(digitalRead(INPUT3)); 
tft.print(digitalRead(INPUT4)); 

When the module is wired correctly, toggling a sensor or dry contact on any of the four inputs should print an immediate state change on the Serial Monitor, and the corresponding LED on the module should light up while the input is active.

Validating the Full Test Sketch #

When the module is wired correctly, the display shows INPUT 1 through INPUT 4 with a live value next to each. Toggling a sensor or dry contact on any channel should flip its value between 0 and 1 on screen within about half a second, confirming that channel is reading correctly before it goes into your final control logic.

Troubleshooting #

SymptomSuggested Action
No response from an inputCheck the wiring polarity and confirm that DCOM is properly connected to the sensor’s return path.
LED stays off despite an active sensorConfirm that the input voltage exceeds the 15 V logic-high threshold.
Inconsistent readings on fast signalsConfirm that the source frequency remains within the 5 kHz switching limit.
Module not detected by the CPUPower down, reseat the module on the expansion bus, and confirm that no other module is already using IO5, IO6, IO7, or IO10.
TFT display blank or not workingCheck three settings under Tools: USB CDC On Boot set to Enabled, Flash Size set to 16MB (128Mb), and PSRAM set to QSPI PSRAM.

10. Support & Resources #

Access product documentation, firmware resources, and technical support for your NORVI device.

Product Documentation & Datasheets NORVI X-DI4 Datasheet
Product Page Visit NORVI
Firmware Examples & Libraries NORVI X Version 02 GitHub Repository
Technical Support support@norvi.io