The ME3-H2S Module is a gas sensor designed to detect hydrogen sulfide (H2S) concentrations in the air. This module is widely used in various applications, including industrial safety, environmental monitoring, and gas detection systems. Its high sensitivity and reliability make it an essential component for ensuring safety and compliance in environments where H2S is a concern.
Parameter | Value |
---|---|
Detection Gas | Hydrogen Sulfide (H2S) |
Detection Range | 0 - 100 ppm |
Sensitivity | 0.05 - 0.5 µA/ppm |
Response Time | ≤ 30 seconds |
Operating Voltage | 5V DC |
Operating Current | ≤ 10 mA |
Operating Temperature | -20°C to 50°C |
Humidity Range | 15% - 90% RH (non-condensing) |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (5V DC) |
2 | GND | Ground |
3 | AOUT | Analog output signal |
4 | DOUT | Digital output signal (threshold) |
// ME3-H2S Module with Arduino UNO
const int analogPin = A0; // Analog input pin for AOUT
const int digitalPin = 2; // Digital input pin for DOUT
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(digitalPin, INPUT); // Set digital pin as input
}
void loop() {
int analogValue = analogRead(analogPin); // Read analog value from AOUT
int digitalValue = digitalRead(digitalPin); // Read digital value from DOUT
// Convert analog value to voltage (assuming 5V reference)
float voltage = analogValue * (5.0 / 1023.0);
// Print the values to the Serial Monitor
Serial.print("Analog Value: ");
Serial.print(analogValue);
Serial.print(" | Voltage: ");
Serial.print(voltage);
Serial.print("V | Digital Value: ");
Serial.println(digitalValue);
delay(1000); // Wait for 1 second before next reading
}
By following this documentation, users can effectively integrate the ME3-H2S Module into their projects, ensuring accurate and reliable detection of hydrogen sulfide gas.