GY-BMP280-3.3 Precision Altimeter Atmospheric Pressure BMP280 Sensor Module

  1. Comes with the BME280 sensor.
  2. Pressure accuracy of ±1 hPa.
  3. Temperature accuracy ±1.0°C.
  4. Altimeter accuracy ±1 meter.
  5. Humidity: +-3%

EGP70.00

In stock

In stock

18 People watching this product now!
  • Pick up from the Ekostra Store

To pick up today

Free

  • Courier delivery

Our courier will deliver to the specified address

1-3 Days

50 LE

  • Free 14-Day returns

Payment Methods:

Description

GY-BME280-3.3 BME280 Atmospheric Pressure Sensor Module is a Breakout Board featuring a Bosch Sensortec ME280 Temperature, Humidity & Pressure Sensor.

The board has selectable I2C address jumper (solder link GS2), I2C pull-up resistors, 7 pin header 2.54mm, and two mounting holes 3.5mm.
Default setting of the board; single power rail Vdd=Vdd_IO (solder link GS1), pull-ups resistors (R2, R3) 10k, protocol selector resistor 0ohm (R1), decoupling capacitors 0.1uF on both power supply pins Vdd & Vdd_IO.

If you connect board to both power rails VDD_IO 1.8V and VDD 3.3V be sure to remove the power rail jumper GS1!


Features:

  1. Package 2.5 mm x 2.5 mm x 0.93 mm metal lid LGA
  2. Digital interface I2C (up to 3.4 MHz) and SPI (3 and 4 wire, up to 10 MHz)
  3. Supply voltage VDD main supply voltage range: 1.71 V to 3.6 V
  4. VDDIO interface voltage range: 1.2 V to 3.6 V
  5. Current consumption 1.8 uA @ 1 Hz humidity and temperature
  6. 2.8 uA @ 1 Hz pressure and temperature
  7. 3.6 uA @ 1 Hz humidity, pressure and temperature
  8. 0.1 uA in sleep mode
  9. Operating range -40…+85 C, 0…100 % rel. humidity, 300…1100 hPa- Humidity sensor and pressure sensor can be independently enabled/disabled

Package Includes:

1 x GY-BME280-3.3 Precision Altimeter Atmospheric Pressure Sensor Module

1 x 6 pin Male Header

Specification

Overview

Model

GY-BME280-3.3

Chip

BME280

Power Supply

3.3-5VDC

Peak Current

1.12mA

Air Pressure Range

300-1100hPa (equi. to +9000…-500m above sea level)

Temperature Range

-40 to +85 °C

Digital Interfaces

I2C (up to 3.4 MHz)
SPI (3 and 4 wire, up to 10 MHz)

Shipping Info

Weight 0.8000 g
Dimensions 15.5 × 12 × 2.5 mm

Video

Circuit diagram

Code

#include <Wire.h>
#include <SPI.h>
#include <Adafruit_BMP280.h>

Adafruit_BMP280 bmp; 
Adafruit_Sensor *bmpTemp = bmp.getTemperatureSensor();
Adafruit_Sensor *bmpPressure = bmp.getPressureSensor();

void setup() {
  Serial.begin(9600);
  if (!bmp.begin()) {
    Serial.println(F("Problem with wiring"));
    while (1) delay(10);
  }

  bmp.setSampling(Adafruit_BMP280::MODE_NORMAL,     
                  Adafruit_BMP280::SAMPLING_X2,     
                  Adafruit_BMP280::SAMPLING_X16,    
                  Adafruit_BMP280::FILTER_X16,      
                  Adafruit_BMP280::STANDBY_MS_500); 
  bmpTemp->printSensorDetails();
}

void loop() {
  sensors_event_t tempEvent, pressureEvent;
  bmpTemp->getEvent(&tempEvent);
  bmpPressure->getEvent(&pressureEvent);
  
  Serial.print(F("Temperature:"));
  Serial.print(tempEvent.temperature);
  Serial.println(" *C");

  Serial.print(F("Pressure:"));
  Serial.print(pressureEvent.pressure);
  Serial.println(" hPa");

  Serial.println();
  delay(1000);
}