

The WisNode Bridge IO Lite_4 Digital Output (RAK2461) is a versatile digital output module designed by RAK. It is an expansion module for the WisNode Bridge, enabling control of up to four digital outputs. This module is ideal for applications in automation, IoT projects, and remote control systems. With its compact design and reliable performance, the RAK2461 simplifies the process of integrating digital outputs into your projects.








The following table outlines the key technical specifications of the RAK2461 module:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Output Voltage Range | 0V to 5V DC |
| Maximum Output Current | 500mA per channel |
| Number of Outputs | 4 |
| Communication Interface | UART (via WisNode Bridge) |
| Dimensions | 50mm x 25mm x 10mm |
| Operating Temperature | -40°C to 85°C |
The RAK2461 module has a simple pinout for connecting to the WisNode Bridge. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Power supply input (5V DC) |
| GND | Ground |
| TX | UART Transmit (to WisNode Bridge RX) |
| RX | UART Receive (from WisNode Bridge TX) |
| OUT1 | Digital Output 1 |
| OUT2 | Digital Output 2 |
| OUT3 | Digital Output 3 |
| OUT4 | Digital Output 4 |
VCC pin to a 5V DC power source and the GND pin to ground.TX and RX pins to establish UART communication with the WisNode Bridge.OUT1, OUT2, OUT3, and OUT4 pins. Ensure the connected devices do not exceed the maximum output current of 500mA per channel.The following example demonstrates how to control the RAK2461 module using an Arduino UNO. This code assumes the module is connected to the Arduino's hardware UART pins (TX and RX).
// Example code to control RAK2461 digital outputs using Arduino UNO
// Ensure the RAK2461 TX is connected to Arduino RX (pin 0)
// and RAK2461 RX is connected to Arduino TX (pin 1).
void setup() {
Serial.begin(9600); // Initialize UART communication at 9600 baud
delay(1000); // Wait for the module to initialize
}
void loop() {
// Turn ON Output 1
Serial.println("OUT1 ON"); // Send command to turn ON Output 1
delay(1000); // Wait for 1 second
// Turn OFF Output 1
Serial.println("OUT1 OFF"); // Send command to turn OFF Output 1
delay(1000); // Wait for 1 second
// Repeat for other outputs as needed
}
Note: Replace "OUT1 ON" and "OUT1 OFF" with the actual UART commands required by the WisNode Bridge to control the outputs. Refer to the WisNode Bridge documentation for the exact command format.
No Response from the Module
Output Not Activating
Module Overheating
Interference with Other Devices
By following this documentation, you can effectively integrate the WisNode Bridge IO Lite_4 Digital Output (RAK2461) into your projects and troubleshoot any issues that arise.