The Atlas Scientific Analog Isolator (SRV-ISO) is an essential component designed to provide electrical isolation between a sensor and the host circuit. This isolation helps to prevent signal distortion and ensures accurate and reliable data transmission, which is crucial in sensitive electronic measurements. Common applications include water quality monitoring, laboratory equipment, and any system where sensor data integrity is paramount.
Pin Number | Name | Description |
---|---|---|
1 | V+ | Input voltage (3.3V - 5V) |
2 | GND | Ground reference for input |
3 | VOUT | Isolated output voltage |
4 | GND | Ground reference for output |
// Analog input pin connected to the isolator output
const int analogInPin = A0;
void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}
void loop() {
// read the analog value from the isolator output
int sensorValue = analogRead(analogInPin);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = sensorValue * (5.0 / 1023.0);
// print the voltage to the Serial Monitor
Serial.println(voltage);
// wait 2 milliseconds before the next loop
delay(2);
}
Q: Can the isolator be used with both analog and digital signals? A: The SRV-ISO is designed for analog signals. For digital signal isolation, a different type of isolator is required.
Q: Is calibration required for the isolator? A: No, the isolator does not require calibration as it does not affect the scale of the analog signal.
Q: How do I know if the isolator is functioning properly? A: You can test the isolator by measuring the output voltage while providing a known input voltage. The output should closely match the input if the isolator is working correctly.
For further assistance, please contact Atlas Scientific's technical support.