1. Giới Thiệu
Hôm nay chúng ta cùng tìm hiểu về loại cảm biến đo áp suất BM180. Chuyên dùng trong các dự án về môi trường và nó cũng là một trong những giao tiếp I2C quen thuộc
vì nó rất là tiny và ngắn nên bài viết của mình cũng như vậy.
2. Kết Nối
BM180 Arduino Uno,Mega,.. Vin 5V GND GND SCL A5 SDA A4
3. Thư viện và link tải
Link tải thư viện BM180
Mở example và check kết quả qua serial
#include <Wire.h> #include <Adafruit_BMP085.h> /*************************************************** This is an example for the BMP085 Barometric Pressure & Temp Sensor Designed specifically to work with the Adafruit BMP085 Breakout -> mobitool.net/products/391 These displays use I2C to communicate, 2 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, all text above must be included in any redistribution ****************************************************/ // Connect VCC of the BMP085 sensor to 3.3V (NOT 5.0V!) // Connect GND to Ground // Connect SCL to i2c clock – on ‘168/’328 Arduino Uno/Duemilanove/etc thats Analog 5 // Connect SDA to i2c data – on ‘168/’328 Arduino Uno/Duemilanove/etc thats Analog 4 // EOC is not used, it signifies an end of conversion // XCLR is a reset pin, also not used here Adafruit_BMP085 bmp; void setup() { mobitool.netn(9600); if (!bmp.begin()) { mobitool.nettln(“Could not find a valid BMP085 sensor, check wiring!”); while (1) {} } } void loop() { mobitool.nett(“Temperature = “); mobitool.nett(bmp.readTemperature()); mobitool.nettln(” *C”); mobitool.nett(“Pressure = “); mobitool.nett(bmp.readPressure()); mobitool.nettln(” Pa”); // Calculate altitude assuming ‘standard’ barometric // pressure of 1013.25 millibar = 101325 Pascal mobitool.nett(“Altitude = “); mobitool.nett(bmp.readAltitude()); mobitool.nettln(” meters”); // you can get a more precise measurement of altitude // if you know the current sea level pressure which will // vary with weather and such. If it is 1015 millibars // that is equal to 101500 Pascals. mobitool.nett(“Real altitude = “); mobitool.nett(bmp.readAltitude(101500)); mobitool.nettln(” meters”); mobitool.nettln(); delay(500); }
Với Temperature hiển thị nhiệt độ
Pressure là P áp suất bên ngoài hay còn gọi là áp suất không khí
Altitude độ cao
Real Altitude độ cao thực so với mực nước biển
4. Lời Kết
Chúng ta có thể trang bị cho robot thám hiểm môi trường với BM180 hiển thị qua lcd. Bài sau mình sẽ kết hợp BM180 với DHT11 để làm trạm dự báo thời tiết
Chúc các bạn có những ngày đam mê, thú vị ,khám phá với Cộng đồng Arduino Việt Nam.