Add to cart
Sale!

Wemos D1 Mini BMP180 Temperature & Pressure Shield

Original price was: $8.99.Current price is: $4.75.

-47%

The BMP180 shield stands out for its high precision and low power consumption. With inbuilt digital temperature and pressure sensors, it is ideal for weather stations, altimeters, and smartphone enhancements. The shield communicates using I2C protocol, making it straightforward to interface with Wemos D1 Mini ESP8266 and Arduino platforms.

Wemos D1 Mini Bmp180 Temperature & Pressure Shield 2
Wemos D1 Mini BMP180 Temperature & Pressure Shield $8.99 Original price was: $8.99.$4.75Current price is: $4.75.

Free shipping on all orders over $10

  • 30 days easy returns
Guaranteed Safe Checkout

Trust Symbols B 1024x108 1 441x47

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.

Be the first to review “Wemos D1 Mini BMP180 Temperature & Pressure Shield”

Your email address will not be published. Required fields are marked *