Bmp280 Barometric Pressure And Altitude Sensor I2C Spi Module
Rs. 24.00 Rs. 28.00
- Brand: https://www.bosch-sensortec.com/products/environmental-sensors/p
- Product Code: SEN-BAROMETRIC
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.bosch-sensortec.com/products/environmental-sensors/pressure-sensors/bmp280/
//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