Pressure Temperature BMP280 (I2C): Difference between revisions
Jump to navigation
Jump to search
Created page with "Image:TArduinoBMP280I2C.png == Summary == The Pressure Temperature BMP280 component reads atmospheric pressure and temperature data from a Bosch BMP280 sensor. It communicates using the I2C interface and outputs the measured values. == Description == The BMP280 is a high-precision digital pressure and temperature sensor designed for atmospheric pressure measurement. It provides calibrated digital output and communicates through the I2C interface. The sensor offers..." |
(No difference)
|
Latest revision as of 04:59, 10 September 2025
Summary
The Pressure Temperature BMP280 component reads atmospheric pressure and temperature data from a Bosch BMP280 sensor. It communicates using the I2C interface and outputs the measured values.
Description
The BMP280 is a high-precision digital pressure and temperature sensor designed for atmospheric pressure measurement. It provides calibrated digital output and communicates through the I2C interface. The sensor offers configurable averaging and filtering options for both pressure and temperature readings. Typical applications include weather stations, altitude tracking, and environmental monitoring systems.
Diagram:
Properties
- Address – I2C device address (Default: 0x76).
- Averaging:
- Pressure – Number of samples to average for pressure readings.
- Temperature – Number of samples to average for temperature readings.
- Enabled – Enables or disables the component's functionality.
- IIRFilter Coefficient – IIR filter coefficient value.
- In Fahrenheit – When enabled, temperature is output in Fahrenheit; otherwise in Celsius.
- Inactive Duration – Duration of inactivity before sleep mode in seconds.
- Name – The user-defined name for the component (Default: PressureTemperature).
Pins
Input Pins
- Clock (digital) – Clock signal input for triggering measurements.
Output Pins
- Pressure(Pa) (analog) – Outputs the measured barometric pressure in Pascals.
- Temperature (analog) – Outputs the measured ambient temperature.
- Out (i2c) – I2C communication interface.
Categories
- File:I2C.png – Components that use I2C communication protocol.
- File:Sensors.png – Components used for sensing environmental data.
- File:Temperature.png – Temperature sensing components.
- File:Pressure.png – Pressure sensing components.
- File:Analog.png – Components with analog outputs.