Wish List 0

Bmp280 Barometric Pressure And Altitude Sensor I2C Spi Module

Rs. 24.00 Rs. 28.00

-BMP280 Barometric Pressure and Altitude Sensor I2C/SPI Module is a most inexpensive and tiny Atmospheric Sensor Breakout to measure barometric strain, and temperature readings all without taking on an excessive amount of space.
-Basically, whatever you want to realize approximately atmospheric situations you can discover from this tiny breakout.
-The BMP280 Breakout has been designed to be used in indoor/out of doors navigation, weather forecasting, domestic automation, or even personal health and health monitoring.

-BMP280 Barometric Pressure and Altitude Sensor I2C/SPI Module
-This module uses an environmental sensor manufactured through Bosch with temperature, a barometric stress sensor this is the next generation upgrade to the popular BMP085/BMP180/BMP183 Sensor. -This sensor is exceptional for all sorts of climate sensing and may even be used in both I2C and SPI; This precision sensor from Bosch is the fine low-fee, precision sensing solution for measuring barometric strain with ±1 hPa absolute accuracy, and temperature with ±1.0°C accuracy.
-Because strain changes with altitude and the strain measurements are so correct; you can also use it as an altimeter with ±1 meter accuracy.

-The BMP280 is the subsequent-era of sensors and is the improve to the BMP085/BMP180/BMP183 – with a low altitude noise of zero.25m and the equal rapid conversion time.
-It has the identical specs however can use both I2C or SPI. For simple easy wiring, go with I2C. If you want to connect a group of sensors without disturbing about I2C deal with collisions, go together with SPI.

Features :
1. Get more precise temperature, atmospheric pressure values, and approximate altitude data
2. Enhancement of GPS navigation (e.g. time-to first-fix improvement, dead-reckoning, slope detection)
3. Indoor navigation (floor detection, elevator detection)
4. Outdoor navigation, leisure and sports applications
5. Weather forecast
6. Health care applications (e.g. spirometry)
7. Vertical velocity indication (e.g. rise/sink speed)
8. Libraries and tutorials available for Arduino and other microcontrollers
9. Operating Voltage: 1.71V to 3.6V – would typically be operated from 3.3V
10. Operating Temperature: -40 to +85 deg. Celsius (full accuracy between 0 and +65 deg. C)
11. Peak current: 1.12mA
12. Operating Pressure: 300 hPa to 1100 hPa
13. Accuracy between 700 to 900hPa and 25 to 40 deg. C: ±0.12hPa and ±1.0m

SPECIFICATIONS:
Operating voltage (v)    1.71 ~ 3.6
Peak current             1.12mA
Operating Pressure       300 hPa ~ 1100 hPa.
Operating Temperature    -40 ~ +85 °C
OVERVIEW:
Operating Voltage                                     1.71V to 3.6V – would typically be operated from 3.3V.
Operating Temperature                                 -40 to +85 deg. Celsius (full accuracy between 0 and +65 deg. C).
Peak current                                          1.12mA.
Operating Pressure                                    300 hPa to 1100 hPa.
Accuracy between 700 to 900hPa and 25 to 40 deg. C    ±0.12hPa and ±1.0m.

PACKAGE INCLUDES:

1 PCS x Bmp280 Barometric Pressure And Altitude Sensor I2C Spi Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/SurtrTech/bmp280-measure-temperature-pressure-and-altitude-e1c857


/* This code is to use with Adafruit BMP280           (Metric)

 * 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

 * Refer to www.surtrtech.com or SurtrTech Youtube channel

 */


#include <Adafruit_BMP280.h>


Adafruit_BMP280 bmp; // I2C Interface


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() {

    Serial.print(F("Temperature = "));

    Serial.print(bmp.readTemperature());

    Serial.println(" *C");


    Serial.print(F("Pressure = "));

    Serial.print(bmp.readPressure()/100); //displaying the Pressure in hPa, you can change the unit

    Serial.println(" hPa");


    Serial.print(F("Approx altitude = "));

    Serial.print(bmp.readAltitude(1019.66)); //The "1019.66" is the pressure(hPa) at sea level in day in your region

    Serial.println(" m");                    //If you don't know it, modify it until you get your current altitude


    Serial.println();

    delay(2000);

}

15 days

Write a review

Please login or register to review