GY-BMP280-3.3 Precision Altimeter Atmospheric Pressure BMP280 Sensor Module
- Comes with the BME280 sensor.
- Pressure accuracy of ±1 hPa.
- Temperature accuracy ±1.0°C.
- Altimeter accuracy ±1 meter.
- Humidity: +-3%
EGP70.00
In stock
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:
- Package 2.5 mm x 2.5 mm x 0.93 mm metal lid LGA
- Digital interface I2C (up to 3.4 MHz) and SPI (3 and 4 wire, up to 10 MHz)
- Supply voltage VDD main supply voltage range: 1.71 V to 3.6 V
- VDDIO interface voltage range: 1.2 V to 3.6 V
- Current consumption 1.8 uA @ 1 Hz humidity and temperature
- 2.8 uA @ 1 Hz pressure and temperature
- 3.6 uA @ 1 Hz humidity, pressure and temperature
- 0.1 uA in sleep mode
- 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
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); }
Get a discount when you buy more
Specification
Dimensions | 15.5 × 12 × 2.5 mm |
---|---|
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) |
Reviews
Clear filtersThere are no reviews yet.