Fc-22 Gas sensor Arduino: Difference between revisions
From wikiluntti
(→Theory) |
(→Theory) |
||
Line 24: | Line 24: | ||
} | } | ||
</syntaxhighlight > | </syntaxhighlight > | ||
See https://github.com/Ravenneo/CO2-sensor | |||
== Exercises == | == Exercises == |
Revision as of 18:00, 18 November 2024
Introduction
MQ-2
Theory
#include "MQ135.h"
MQ135 gasSensor = MQ135(A5);
int ppm = gasSensor.getPPM();
void setup() {
Serial.begin(9600);
}
void loop() {
float rzero = gasSensor.getRZero();
float ppm = gasSensor.getPPM();
Serial.println(ppm);
delay(1000);
}
See https://github.com/Ravenneo/CO2-sensor