Senzor Alcohol Gas MQ-3 compatibil Arduino

20,00 RON.

Categorie: Etichete: , ,

Senzor Alcohol Gas MQ-3 compatibil Arduino

Compatibil Arduino
Senzor Alcohol Gas MQ-3

Detectează cantități de 100-10000ppm.
Are timp de răspuns scurt şi sensibilitate ridicată.
mq-3-gas-sensorc1ec44a25d-jpg-240x2409297e9f1-mq3-alcohol-sensor-pinout-300x242ba3f5db8-mq3-alcohol-sensor-circuit-with-arduino-284x300

Exemplu cod:

const int AOUTpin=0;  //the AOUT pin of the alcohol sensor goes into analog pin A0 of the arduino
const int DOUTpin=8;  //the DOUT pin of the alcohol sensor goes into digital pin D8 of the arduino
const int ledPin=13;      //the anode of the LED connects to digital pin D13 of the arduino

int limit;
int value;

void setup() {
Serial.begin(115200);   //sets the baud rate
pinMode(DOUTpin, INPUT);  //sets the pin as an input to the arduino
pinMode(ledPin, OUTPUT);   //sets the pin as an output of the arduino
}

void loop()
{
value= analogRead(AOUTpin);  //reads the analaog value from the alcohol sensor’s AOUT pin
limit= digitalRead(DOUTpin);  //reads the digital value from the alcohol sensor’s DOUT pin
Serial.print(“Alcohol value: “);
Serial.println(value);  //prints the alcohol value
Serial.print(“Limit: “);
Serial.print(limit);  //prints the limit reached as either LOW or HIGH (above or underneath)
delay(100);
if (limit == HIGH){
digitalWrite(ledPin, HIGH);  //if limit has been reached, LED turns on as status indicator
}
else{
digitalWrite(ledPin, LOW);   //if threshold not reached, LED remains off
}
}
Arduino projects.

Recenzii

Nu există recenzii până acum.

Fii primul care adaugi o recenzie la „Senzor Alcohol Gas MQ-3 compatibil Arduino”