

The ADG442 is a low-power, quad single-pole single-throw (SPST) switch designed by Analog Devices using LC²CMOS technology. This component is optimized for efficient control of both analog and digital signals, offering low on-resistance and low leakage currents. It is ideal for applications requiring high precision and low power consumption.








| Parameter | Value |
|---|---|
| Supply Voltage Range | ±5 V to ±15 V (dual supply) or 5 V to 30 V (single supply) |
| On-Resistance (RON) | 45 Ω (typical) at ±15 V supply |
| Leakage Current | 0.01 nA (typical) at 25°C |
| Switching Time | 120 ns (typical) |
| Power Dissipation | 0.001 µW (typical, low power operation) |
| Operating Temperature Range | -40°C to +85°C |
| Package Options | 16-lead PDIP, SOIC, or TSSOP |
The ADG442 is available in a 16-pin package. Below is the pin configuration and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN1 | Control input for switch 1 |
| 2 | D1 | Drain terminal for switch 1 |
| 3 | S1 | Source terminal for switch 1 |
| 4 | IN2 | Control input for switch 2 |
| 5 | D2 | Drain terminal for switch 2 |
| 6 | S2 | Source terminal for switch 2 |
| 7 | VSS | Negative supply voltage (or GND for single supply) |
| 8 | GND | Ground |
| 9 | S3 | Source terminal for switch 3 |
| 10 | D3 | Drain terminal for switch 3 |
| 11 | IN3 | Control input for switch 3 |
| 12 | S4 | Source terminal for switch 4 |
| 13 | D4 | Drain terminal for switch 4 |
| 14 | IN4 | Control input for switch 4 |
| 15 | VDD | Positive supply voltage |
| 16 | NC | No connection |
Power Supply Configuration:
Control Inputs:
Signal Connections:
Bypass Capacitors:
The ADG442 can be controlled using digital pins on an Arduino UNO. Below is an example code to toggle one of the switches:
// Define control pin for switch 1
const int controlPin1 = 7;
void setup() {
// Set the control pin as an output
pinMode(controlPin1, OUTPUT);
}
void loop() {
// Close the switch by setting the control pin HIGH
digitalWrite(controlPin1, HIGH);
delay(1000); // Keep the switch closed for 1 second
// Open the switch by setting the control pin LOW
digitalWrite(controlPin1, LOW);
delay(1000); // Keep the switch open for 1 second
}
Switch Not Responding to Control Signal:
Signal Distortion or Attenuation:
Excessive Power Consumption:
Leakage Current Too High:
Q: Can the ADG442 handle bidirectional signals?
A: Yes, the ADG442 supports bidirectional signal flow between the source (Sx) and drain (Dx) terminals.
Q: What is the maximum signal frequency the ADG442 can handle?
A: The ADG442 is suitable for low- to medium-frequency signals. For high-frequency applications, consider the switch's on-resistance and capacitance to ensure minimal signal degradation.
Q: Can I use the ADG442 with a single power supply?
A: Yes, the ADG442 can operate with a single supply voltage (e.g., 5 V to 30 V). Connect VSS to ground in this configuration.
Q: How do I protect the ADG442 from overvoltage?
A: Use clamping diodes or transient voltage suppressors (TVS) to protect the device from voltage spikes exceeding the supply range.