

The ADUM150N1BRZ is a digital isolator manufactured by Analog Devices. It provides galvanic isolation between two circuits, enabling safe data transfer while protecting sensitive low-voltage components from high-voltage surges. This component uses Analog Devices' iCoupler® technology, which ensures high-speed data transmission with low power consumption.








The following table outlines the key technical details of the ADUM150N1BRZ:
| Parameter | Value |
|---|---|
| Isolation Voltage | 3 kV RMS |
| Data Rate | Up to 10 Mbps |
| Supply Voltage (VDD1, VDD2) | 3.0 V to 5.5 V |
| Propagation Delay | 50 ns (typical) |
| Power Consumption | 1.0 mA per channel (typical) |
| Operating Temperature Range | -40°C to +125°C |
| Package Type | 8-lead SOIC (Narrow Body) |
The ADUM150N1BRZ is an 8-pin device. The pin configuration 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 | IN1 | Data input for side 1. |
| 4 | IN2 | Data input for side 1. |
| 5 | OUT2 | Data output for side 2. |
| 6 | OUT1 | Data output for side 2. |
| 7 | GND2 | Ground for side 2. |
| 8 | VDD2 | Supply voltage for side 2 (3.0 V to 5.5 V). |
The ADUM150N1BRZ can be used to isolate an Arduino UNO from a high-voltage circuit. Below is an example of how to connect and program the device:
// Example code to send a digital signal through the ADUM150N1BRZ
const int signalPin = 2; // Pin connected to IN1 of ADUM150N1BRZ
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 Output Signal on OUT1/OUT2:
Signal Distortion or Noise:
Device Overheating:
Isolation Breakdown:
Q1: Can the ADUM150N1BRZ be used for bidirectional communication?
A1: No, the ADUM150N1BRZ is designed for unidirectional data transfer. For bidirectional communication, consider using other isolators from Analog Devices that support bidirectional operation.
Q2: What is the maximum distance between the isolated sides?
A2: The maximum distance is determined by the PCB layout and the isolation voltage rating. Ensure sufficient spacing to maintain isolation integrity.
Q3: Can I use the ADUM150N1BRZ with a 3.3 V system?
A3: Yes, the ADUM150N1BRZ supports supply voltages from 3.0 V to 5.5 V, making it compatible with 3.3 V systems.