

The ISO1540 is an isolated voltage regulator designed to provide a stable output voltage while electrically isolating the input and output sides. This isolation ensures that noise, surges, or ground loops on one side do not affect the other, making it ideal for applications requiring robust electrical isolation. The ISO1540 is commonly used in industrial automation, medical devices, and communication systems where signal integrity and safety are critical.








The ISO1540 is designed to meet stringent performance and safety requirements. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Input Voltage Range | 3.0 V to 5.5 V |
| Output Voltage | 3.3 V or 5 V (fixed options) |
| Isolation Voltage | 2500 VRMS |
| Maximum Output Current | 50 mA |
| Operating Temperature | -40°C to +85°C |
| Quiescent Current | 1.5 mA (typical) |
| Package Type | SOIC-8 |
The ISO1540 is available in an 8-pin SOIC package. The pinout and descriptions are as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC1 | Input supply voltage for the primary side |
| 2 | GND1 | Ground for the primary side |
| 3 | NC | No connection (leave unconnected) |
| 4 | OUT | Regulated output voltage |
| 5 | GND2 | Ground for the secondary side |
| 6 | NC | No connection (leave unconnected) |
| 7 | VCC2 | Input supply voltage for the secondary side |
| 8 | EN | Enable pin (active high, enables the regulator when pulled high) |
To use the ISO1540 in a circuit, follow these steps:
Power Supply Connections:
VCC1 and GND1.VCC2 and GND2.Output Voltage:
OUT pin. Ensure the load connected to this pin does not exceed the maximum output current of 50 mA.Enable Pin:
EN pin must be pulled high to enable the regulator. If unused, connect it to VCC1 through a pull-up resistor.Bypass Capacitors:
VCC1 and VCC2 pins to ensure stable operation.Isolation:
GND1 and GND2) are not connected to maintain electrical isolation.Below is an example of how to connect the ISO1540 in a circuit:
Primary Side: Secondary Side:
+3.3V (VCC1) --------------------+ +3.3V (VCC2)
|
[ISO1540]
|
GND1 ---------------------------+ GND2
The ISO1540 is not directly used for signal processing but can be used to isolate power supplies for Arduino-based projects. For example, it can provide a stable, isolated power supply to sensors or modules connected to the Arduino.
// Example: Using ISO1540 to power an isolated sensor
// Ensure the ISO1540 output is connected to the sensor's VCC and GND pins
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
// Ensure the ISO1540 enable pin is set high
pinMode(8, OUTPUT); // Assuming pin 8 is connected to ISO1540 EN pin
digitalWrite(8, HIGH); // Enable the ISO1540 regulator
}
void loop() {
// Your main code here
Serial.println("ISO1540 is providing isolated power to the sensor.");
delay(1000);
}
No Output Voltage:
EN pin is pulled high. If left floating, the regulator will remain disabled.VCC1 and VCC2 is within the specified range.Output Voltage Instability:
VCC1 and VCC2 pins.Loss of Isolation:
GND1 and GND2) are not connected.Overheating:
Q: Can the ISO1540 be used for signal isolation?
A: No, the ISO1540 is designed for power isolation, not signal isolation. For signal isolation, consider using optocouplers or digital isolators.
Q: What happens if the EN pin is left floating?
A: The regulator will remain disabled. Always pull the EN pin high to enable the device.
Q: Can I use the ISO1540 with a 12V input?
A: No, the input voltage range is limited to 3.0 V to 5.5 V. Exceeding this range may damage the component.
Q: Is the ISO1540 suitable for high-current applications?
A: No, the ISO1540 is designed for low-current applications with a maximum output current of 50 mA.
By following these guidelines and best practices, the ISO1540 can be effectively integrated into your designs to provide reliable and isolated power.