The ADuM1201 is a dual-channel digital isolator manufactured by Analog Devices Inc. It provides electrical isolation between two circuits while enabling the transmission of digital signals. This isolation is achieved using iCoupler® technology, which employs magnetic coupling to ensure robust performance and high-speed operation. The ADuM1201 is ideal for applications requiring protection from high voltages, noise immunity, and signal integrity across isolated domains.
Parameter | Value |
---|---|
Isolation Voltage | 2.5 kV RMS |
Data Rate | Up to 25 Mbps |
Supply Voltage (VDD1/VDD2) | 2.7 V to 5.5 V |
Propagation Delay | 45 ns (typical) |
Common-Mode Transient Immunity (CMTI) | >25 kV/µs |
Operating Temperature Range | -40°C to +125°C |
Channels | 2 (1 forward, 1 reverse or 2 forward) |
Package Options | 8-lead SOIC (narrow-body) |
The ADuM1201 is available in an 8-lead SOIC package. The pinout and descriptions are as follows:
Pin Number | Pin Name | Description |
---|---|---|
1 | VDD1 | Supply voltage for side 1 (2.7 V to 5.5 V) |
2 | GND1 | Ground for side 1 |
3 | IN1 | Digital input for channel 1 |
4 | IN2 | Digital input for channel 2 |
5 | OUT2 | Digital output for channel 2 |
6 | OUT1 | Digital output for channel 1 |
7 | GND2 | Ground for side 2 |
8 | VDD2 | Supply voltage for side 2 (2.7 V to 5.5 V) |
The ADuM1201 can be used to isolate an Arduino UNO from a high-voltage circuit. Below is an example of how to connect and program the ADuM1201 for isolating a digital signal.
// Example code to toggle a digital signal through the ADuM1201
const int signalPin = 2; // Arduino pin connected to IN1 of ADuM1201
void setup() {
pinMode(signalPin, OUTPUT); // Set signalPin 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
Exceeding Isolation Voltage
Overheating
Q1: Can the ADuM1201 handle bidirectional communication?
A1: No, the ADuM1201 is designed for unidirectional communication. For bidirectional communication, consider using other isolators with dedicated bidirectional channels.
Q2: What is the maximum distance between the isolated sides?
A2: The maximum distance is determined by the PCB layout and isolation standards. Ensure sufficient spacing to maintain the rated isolation voltage.
Q3: Can I use the ADuM1201 for analog signals?
A3: No, the ADuM1201 is designed for digital signals only. For isolating analog signals, consider using analog isolators.
Q4: Is the ADuM1201 suitable for medical applications?
A4: Yes, the ADuM1201 can be used in medical applications, provided it meets the required isolation and safety standards for the specific use case.