The ADUM1401BRWZ is a high-performance digital isolator that provides galvanic isolation between two circuits. It utilizes Analog Devices' iCoupler® technology to achieve high-speed data transfer while maintaining electrical isolation. This component is ideal for applications requiring robust isolation in data communication, such as industrial control systems, medical devices, power supplies, and motor control systems. Its compact design and high reliability make it a popular choice for engineers working on safety-critical and noise-sensitive systems.
The ADUM1401BRWZ is housed in a 16-lead SOIC package. The pinout and descriptions are as follows:
Pin Number | Pin Name | Description |
---|---|---|
1 | VDD1 | Supply voltage for side 1 (3.0 V to 5.5 V). |
2 | GND1 | Ground for side 1. |
3 | VIA | Input signal for channel A (side 1). |
4 | VIB | Input signal for channel B (side 1). |
5 | VIC | Input signal for channel C (side 1). |
6 | GND1 | Ground for side 1 (duplicate pin for improved grounding). |
7 | NC | No connection (leave unconnected). |
8 | NC | No connection (leave unconnected). |
9 | GND2 | Ground for side 2. |
10 | VOD | Output signal for channel D (side 2). |
11 | VOC | Output signal for channel C (side 2). |
12 | VOB | Output signal for channel B (side 2). |
13 | VOA | Output signal for channel A (side 2). |
14 | GND2 | Ground for side 2 (duplicate pin for improved grounding). |
15 | VDD2 | Supply voltage for side 2 (3.0 V to 5.5 V). |
16 | NC | No connection (leave unconnected). |
The ADUM1401BRWZ can be used to isolate communication between an Arduino UNO and another device. Below is an example of how to transmit a digital signal from the Arduino to an isolated circuit.
// Example code to send a digital signal through the ADUM1401BRWZ
const int signalPin = 3; // Pin connected to VIA (Pin 3 of ADUM1401BRWZ)
void setup() {
pinMode(signalPin, OUTPUT); // Set the signal pin as an output
}
void loop() {
digitalWrite(signalPin, HIGH); // Send a HIGH signal
delay(1000); // Wait for 1 second
digitalWrite(signalPin, LOW); // Send a LOW signal
delay(1000); // Wait for 1 second
}
No Signal on Output Pins:
Signal Distortion or Noise:
Loss of Isolation:
Overheating:
Q1: Can the ADUM1401BRWZ be used for bidirectional communication?
A1: Yes, the ADUM1401BRWZ supports bidirectional communication with its 3 forward channels and 1 reverse channel.
Q2: What is the maximum isolation voltage?
A2: The ADUM1401BRWZ provides a minimum isolation voltage of 2.5 kV RMS.
Q3: Can I use the ADUM1401BRWZ with a 3.3V system?
A3: Yes, the ADUM1401BRWZ is compatible with supply voltages ranging from 3.0 V to 5.5 V.
Q4: Do I need external pull-up resistors for the input pins?
A4: No, the ADUM1401BRWZ does not require external pull-up resistors for its input pins.