

The Basic EZO Inline Voltage Isolator (#BE-IVI) by Atlas Scientific is a compact and reliable device designed to prevent electrical backflow in circuits. It ensures that voltage levels remain stable, protecting sensitive components from potential damage caused by electrical noise or ground loops. This isolator is particularly useful in applications where precise voltage regulation and circuit protection are critical.








The following table outlines the key technical details of the Basic EZO Inline Voltage Isolator:
| Parameter | Value |
|---|---|
| Manufacturer | Atlas Scientific |
| Part Number | #BE-IVI |
| Input Voltage Range | 3.3V to 5.5V |
| Output Voltage Range | 3.3V to 5.5V |
| Maximum Current | 100mA |
| Isolation Voltage | 2500V |
| Operating Temperature | -40°C to 85°C |
| Dimensions | 25mm x 15mm x 10mm |
| Weight | 5 grams |
The Basic EZO Inline Voltage Isolator has four pins, as described in the table below:
| Pin | Name | Description |
|---|---|---|
| 1 | VIN | Input voltage pin (3.3V to 5.5V). Connect to the power source. |
| 2 | GND | Ground pin. Connect to the ground of the input power source. |
| 3 | VOUT | Output voltage pin. Provides the isolated voltage to the connected circuit. |
| 4 | GND (Isolated) | Isolated ground pin. Connect to the ground of the isolated circuit. |
Connect the Input Side:
Connect the Output Side:
Verify Connections:
Power On:
Below is an example of how to use the Basic EZO Inline Voltage Isolator to protect an Arduino UNO from ground loops when interfacing with a sensor:
// Example code for reading sensor data with an Arduino UNO
// The Basic EZO Inline Voltage Isolator is used to prevent ground loops.
const int sensorPin = A0; // Analog pin connected to the sensor output
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the sensor value
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Sensor Voltage: ");
Serial.println(voltage); // Print the voltage to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Output Voltage Not Isolated:
Excessive Noise in Output Voltage:
Overheating:
Q1: Can the isolator be used with a 12V power supply?
A1: No, the input voltage range is limited to 3.3V to 5.5V. Using a 12V power supply will damage the isolator.
Q2: Is the isolator bidirectional?
A2: No, the isolator is designed for unidirectional voltage isolation. Ensure proper orientation of input and output connections.
Q3: Can I use the isolator with a Raspberry Pi?
A3: Yes, as long as the input and output voltages are within the specified range (3.3V to 5.5V).
Q4: What is the purpose of the isolated ground pin?
A4: The isolated ground pin ensures that the output circuit is electrically isolated from the input circuit, preventing ground loops and noise interference.