获取BME280传感器数据并上传到云端-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3331|回复: 2

[分享] 获取BME280传感器数据并上传到云端

[复制链接]
发表于 2019-9-13 13:17 | 显示全部楼层 |阅读模式
这是在之前的示例基础上更近一步,添加历史数据存储:

效果如图:
QQ截图20190913131732.jpg

[mw_shl_code=cpp,true]#define BLINKER_WIFI
#include <Blinker.h>

char auth[] = "xxxxxxxxxxxx";
char ssid[] = "xxxxx";
char pswd[] = "xxxxxxxx";

BlinkerNumber TEMP("temp"); // Temperature
BlinkerNumber HUMI("humi"); // Humidity
BlinkerNumber PRES("pres"); // Pressure
BlinkerNumber ALTI("alti"); // Altitude

int tempValue;
int humiValue;
int presValue;
int altiValue;

// Download Adafruit-BMP085-Library library here:
// https://github.com/adafruit/Adafruit_BME280_Library
// https://github.com/adafruit/Adafruit_Sensor
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>

#define SEALEVELPRESSURE_HPA (1013.25)

Adafruit_BME280 bme;

void dataRead(const String &data)
{
    BLINKER_LOG("Blinker readString: ", data);

    Blinker.vibrate();

    uint32_t BlinkerTime = millis();

    Blinker.print("millis", BlinkerTime);
}

void dataStorage()
{
    readSensor();
    Blinker.dataStorage("temp", tempValue);
    Blinker.dataStorage("humi", humiValue);
    Blinker.dataStorage("pres", altiValue);
}

void heartbeat()
{
    readSensor();
    TEMP.print(tempValue);
    HUMI.print(humiValue);
    PRES.print(presValue);
    ALTI.print(altiValue);
}

void readSensor()
{
    tempValue = bme.readTemperature();
    humiValue = bme.readHumidity();
    presValue = bme.readPressure();
    altiValue = bme.readAltitude(SEALEVELPRESSURE_HPA);
}

void setup()
{
    Serial.begin(115200);
    BLINKER_DEBUG.stream(Serial);

    pinMode(LED_BUILTIN, OUTPUT);
    digitalWrite(LED_BUILTIN, LOW);

    Blinker.begin(auth, ssid, pswd);
    if (!bme.begin())
    {
        BLINKER_LOG("Could not find a valid BME280 sensor, check wiring!");
        while (1)
        {
            delay(100);
        }
    }
    readSensor();
    Blinker.attachData(dataRead);
    Blinker.attachHeartbeat(heartbeat);
    Blinker.attachDataStorage(dataStorage);

}

void loop()
{
    Blinker.run();
}[/mw_shl_code]
发表于 2019-11-25 00:33 | 显示全部楼层
学习了,受益匪浅
发表于 2020-3-9 19:40 | 显示全部楼层
本帖最后由 轻轻海风 于 2020-3-18 17:45 编辑

ESP8266 NodeMCU 连接3.3V的BME280连接图SCB引脚不需要接上拉10K电阻,因为片内已经有了上拉电阻了。
BME280 I2C连接图.jpg

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

本版积分规则

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

GMT+8, 2024-11-28 02:28 , Processed in 0.110892 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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