求大神如何将mq135数据上传到点灯的数据里-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1811|回复: 0

求大神如何将mq135数据上传到点灯的数据里

[复制链接]
发表于 2020-4-1 10:41 | 显示全部楼层 |阅读模式
#define BLINKER_WIFI
#define BLINKER_ESP_SMARTCONFIG
#include <Blinker.h>                    //官方库
#include "MQ135.h"



char auth[] = "********";


int motor = D2;
int ANALOGPIN = A0;
MQ135 gasSensor = MQ135(ANALOGPIN);





void setup() {
  Serial.begin(250000);      // sets the serial port to 115200
  BLINKER_DEBUG.stream(Serial);
  Blinker.begin(auth);
  pinMode(motor, OUTPUT); //设置IO脚模式,OUTPUT为输出



    Blinker.begin(auth, ssid, pswd);
    Blinker.attachData(dataRead);
    Blinker.attachAQI(aqiData);


}

void loop()
{
  float ppm = gasSensor.getPPM();
  Serial.println(ppm);
  if (ppm > 50)

    digitalWrite(motor, HIGH); //发声音

  else

    digitalWrite(motor, LOW); //关闭声音
  delay(1000);
}




您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 07:41 , Processed in 0.069616 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表