【Arduino 连接BMP280:测量温度、压力和高度】

本教程介绍了如何使用Arduino UNO和BMP280传感器测量温度、压力和高度。通过OLED显示屏展示公制和英制单位的数据,并提供了电路图、代码以及解决模块检测和地址配置的问题。
摘要由CSDN通过智能技术生成

Arduino 连接BMP280:测量温度、压力和高度

介绍

BMP280:测量温度、压力和高度

  • OLED 显示屏,英制和公制单位。
    在这里插入图片描述

组件耗材

元件名 数量
OLED 128x32 i2c 1
Arduino 1
BMP280 1

项目描述

您好,欢迎来到本教程,我在 Arduino UNO 板和 OLED 显示器的帮助下使用 BMP280 测量温度、压力和高度。以下是其数据表中的一些 BMP280 关键参数:
在这里插入图片描述所以对于这个项目,我们将像往常一样使用该模块在公制和英制系统中测量所有这些东西,我不太确定这些单位,但你总是可以通过代码转换它们,这是我们要的组件使用:
Arduino UNO 开发板
在这里插入图片描述
BMP280
在这里插入图片描述128x32 OLED 显示屏(可选)
在这里插入图片描述
测试和故障排除:
连接模块后,最好测试库示例中的代码,其名称为“BMP280test”,如果未检测到模块,如下图所示:
在这里插入图片描述您可以运行 i²c 扫描仪代码(但拔下任何其他 i²c 设备,如 LCD 或 OLED),如果您的模块没有损坏,或者没有焊接问题,您会看到扫描仪检测到该设备:

在这里插入图片描述现在注意地址并转到您的库 c++ 文件,库通常安装在“Documents/Arduino/Libraries”中:
在这里插入图片描述
并用合适的编辑器打开它,我使用的是 Dev c++
在这里插入图片描述然后转到“41”行,_i2caddr 将“a”更改为您在串行监视器上找到的地址:
在这里插入图片描述全部保存并关闭,该库旨在使用具有 0x77 作为 i²c 地址的模块,但我使用的模块具有 0x76。

再次运行测试代码:
在这里插入图片描述
测试图片:
在这里插入图片描述在这里插入图片描述
我希望它对你有用,如果你有任何问题,请在评论中留言。

电路图

在这里插入图片描述

代码

1.测量温度和压力,并将它们与高度一起显示在串行监视器上

/* This code is to use with Adafruit BMP280   (Imperial)
 * It measures   both temperature and pressure and it displays them on the Serial monitor with the   altitude
 * It's a modified version of the Adafruit example code
 */

#include <Adafruit_BMP280.h>

Adafruit_BMP280   bmp; // I2C

void setup() {
   
  Serial.begin(9600);
  Serial.println(F("BMP280   test"));

  if (!bmp.begin()) {
   
    Serial.println(F("Could not find   a valid BMP280 sensor, check wiring!"));
    while (1);
  }

  /* Default   settings from datasheet. */
  bmp.setSampling(Adafruit_BMP280::MODE_NORMAL,     /*   Operating Mode. */
                  Adafruit_BMP280::SAMPLING_X2,     /* Temp.   oversampling */
                  Adafruit_BMP280::SAMPLING_X16,    /* Pressure   oversampling */
                  Adafruit_BMP280::FILTER_X16,      /* Filtering.   */
                  Adafruit_BMP280::STANDBY_MS_500); /* Standby time. */
}

void   loop() {
   
    
    float f = bmp.readTemperature()*9/5 + 32 ; //Conversion   from C to F
    Serial.print(F("Temperature = "));    
    Serial.print(f);
     Serial.println(" *F");
    
    float P = bmp
BMP280是一种常用的数字温度和气压传感器,可以通过I2C或SPI接口与Arduino通信。使用BMP280传感器,你可以轻松地测量大气压力温度和海拔高度。而OLEDD显示器则可以用于显示这些测量数据。 下面是基本的步骤: 1. 连接BMP280传感器到Arduino板上的I2C或SPI接口。 2. 下载并安装BMP280库。 3. 使用库中的函数读取BMP280传感器数据,并将其存储在变量中。 4. 连接OLEDD显示器,并使用库中的函数将数据显示在屏幕上。 这里是一个简单的代码示例: ``` #include <Wire.h> #include <Adafruit_BMP280.h> #include <Adafruit_SSD1306.h> #define BMP_SCK 13 #define BMP_MISO 12 #define BMP_MOSI 11 #define BMP_CS 10 #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 32 Adafruit_BMP280 bmp(BMP_CS); // 初始化BMP280传感器 Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1); // 初始化OLEDD显示屏 void setup() { Serial.begin(9600); if (!bmp.begin()) { Serial.println("Could not find a valid BMP280 sensor, check wiring!"); while (1); } display.begin(SSD1306_SWITCHCAPVCC, 0x3C); } void loop() { float temperature = bmp.readTemperature(); // 读取温度 float pressure = bmp.readPressure() / 100.0F; // 读取气压 float altitude = bmp.readAltitude(1013.25); // 读取海拔高度 display.clearDisplay(); display.setTextSize(2); display.setTextColor(WHITE); display.setCursor(0,0); display.print("Temp: "); display.print(temperature); display.println("C"); display.print("Pressure: "); display.print(pressure); display.println("hPa"); display.print("Altitude: "); display.print(altitude); display.println("m"); display.display(); delay(2000); } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值