gpt4 book ai didi

arduino-uno - 如何使用带 Arduino 的 MQ135 查找二氧化碳和氧气水平

转载 作者:行者123 更新时间:2023-12-01 11:32:22 26 4
gpt4 key购买 nike

如何使用带 Arduino 的 MQ135 查找 Co2 和 O2 水平或任何其他参数,我只是感应 ppm 数据并将其显示在屏幕上。

int sensorValue;
int pin8 = 8;
void setup()
{
Serial.begin(9600); // sets the serial port to 9600
pinMode(pin8, OUTPUT);
}

void loop()
{
sensorValue = analogRead(0); // read analog input pin 0
Serial.print(sensorValue, DEC); // prints the value read
Serial.println("ppm");
if (sensorValue > 500) {
// Activate digital output pin 8 - the LED will light up
digitalWrite(pin8, HIGH);
}
else {
// Deactivate digital output pin 8 - the LED will not light up
digitalWrite(pin8, LOW);
}

delay(5000); // wait 100ms for next reading
}

最佳答案

我发现,如果您是第一次使用传感器,最好先将其开机约 24 小时,然后再进行良好读取。不要跳过这一步。

然后是校准过程。只需校准它,在良好的空气条件下从 analogRead 获得大约 100-150。

正常回风~100-150
酒精返回 ~700
打火机气体返回 ~750+

编辑:
刚注意到这个Arduino library for the MQ135这可能会有帮助。

edit2:
我决定也更新我的代码并找到 this great source .你可以找到所有代码 here .

关于arduino-uno - 如何使用带 Arduino 的 MQ135 查找二氧化碳和氧气水平,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31109021/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com