The BMP180 temperature and pressure shield is a highly accurate sensor for measuring atmospheric pressure and temperature. Specifically designed for Wemos D1 Mini ESP8266, Arduino, and NodeMCU IoT projects, this shield enables seamless integration into various smart applications.
Description
- BMP180 Temperature and Pressure sensor shield for Wemos D1 mini
Features
- Accurate temperature and pressure measurement
- Designed for Wemos D1 mini
Specification
- Operating voltage : 3.3v
- Interface : I2C
- Pins : D1 and D2
Package
- 1 x BMP180 Pressure and temperature sensor shield for Wemos D1 mini
Integration
Integrating the BMP180 shield into your IoT setup is simple. Start by connecting the shield to your Wemos D1 Mini or Arduino. Utilize the Adafruit BMP085 Unified library to read sensor data effortlessly. This setup will have you gathering temperature and pressure data and sending it to your IoT platform in no time.
#include <Wire.h> #include <Adafruit_BMP085.h> Adafruit_BMP085 bmp; void setup() { Serial.begin(9600); //Wire.begin (4, 5); if (!bmp.begin()) { Serial.println("Could not find BMP180 or BMP085 sensor at 0x77"); while (1) {} } } void loop() { Serial.print("Temperature = "); Serial.print(bmp.readTemperature()); Serial.println(" Celsius"); Serial.print("Pressure = "); Serial.print(bmp.readPressure()); Serial.println(" Pascal"); Serial.println(); delay(5000); }
Reviews
There are no reviews yet.