nanoFramework.Iot.Device.Bmxx80 1.2.931

Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Bmxx80 --version 1.2.931
                    
NuGet\Install-Package nanoFramework.Iot.Device.Bmxx80 -Version 1.2.931
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Bmxx80" Version="1.2.931" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.Iot.Device.Bmxx80" Version="1.2.931" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.Iot.Device.Bmxx80" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.Iot.Device.Bmxx80 --version 1.2.931
                    
#r "nuget: nanoFramework.Iot.Device.Bmxx80, 1.2.931"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package nanoFramework.Iot.Device.Bmxx80@1.2.931
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.Iot.Device.Bmxx80&version=1.2.931
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.Iot.Device.Bmxx80&version=1.2.931
                    
Install as a Cake Tool

BMP280/BME280/BME680 Device Family

BMxx80 is a device family that senses temperature, barometric pressure, altitude, humidity and VOC gas.

SPI and I2C can be used to communicate with the device (only I2C implemented so far).

Documentation

The implementation supports the following devices:

  • BMP280 temperature and barometric pressure sensor (Datasheet)
  • BME280 temperature, barometric pressure and humidity sensor (Datasheet)
  • BME680 temperature, barometric pressure, humidity and VOC gas sensor (Datasheet)

Usage

BME280

Important: make sure you properly setup the I2C pins especially for ESP32 before creating the I2cDevice, make sure you install the nanoFramework.Hardware.ESP32 nuget:

//////////////////////////////////////////////////////////////////////
// when connecting to an ESP32 device, need to configure the I2C GPIOs
// used for the bus
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);

For other devices like STM32, please make sure you're using the preset pins for the I2C bus you want to use.

// bus id on the MCU
const int busId = 1;
I2cConnectionSettings i2cSettings = new(busId, Bme280.DefaultI2cAddress);
using I2cDevice i2cDevice = I2cDevice.Create(i2cSettings);
using Bme280 bme80 = new Bme280(i2cDevice)
{
    // set higher sampling
    TemperatureSampling = Sampling.LowPower,
    PressureSampling = Sampling.UltraHighResolution,
    HumiditySampling = Sampling.Standard,

};

// Perform a synchronous measurement
var readResult = bme80.Read();

// Note that if you already have the pressure value and the temperature, you could also calculate altitude by using
// var altValue = WeatherHelper.CalculateAltitude(preValue, defaultSeaLevelPressure, tempValue) which would be more performant.
bme80.TryReadAltitude(defaultSeaLevelPressure, out var altValue);

Debug.WriteLine($"Temperature: {readResult.Temperature?.DegreesCelsius:0.#}\u00B0C");
Debug.WriteLine($"Pressure: {readResult.Pressure?.Hectopascals:0.##}hPa");
Debug.WriteLine($"Altitude: {altValue.Meters:0.##}m");
Debug.WriteLine($"Relative humidity: {readResult.Humidity?.Percent:0.#}%");

BMP680

// The I2C bus ID on the MCU
const int busId = 1;

I2cConnectionSettings i2cSettings = new(busId, Bme680.DefaultI2cAddress);
I2cDevice i2cDevice = I2cDevice.Create(i2cSettings);

using Bme680 bme680 = new Bme680(i2cDevice, Temperature.FromDegreesCelsius(20.0));

// reset will change settings back to default
bme680.Reset();

// Perform a synchronous measurement
var readResult = bme680.Read();

// Print out the measured data
Debug.WriteLine($"Gas resistance: {readResult.GasResistance?.Ohms:0.##}Ohm");
Debug.WriteLine($"Temperature: {readResult.Temperature?.DegreesCelsius:0.#}\u00B0C");
Debug.WriteLine($"Pressure: {readResult.Pressure?.Hectopascals:0.##}hPa");
Debug.WriteLine($"Relative humidity: {readResult.Humidity?.Percent:0.#}%");

BMP280

// bus id on the MCU
const int busId = 1;

I2cConnectionSettings i2cSettings = new(busId, Bmp280.DefaultI2cAddress);
I2cDevice i2cDevice = I2cDevice.Create(i2cSettings);
using var i2CBmp280 = new Bmp280(i2cDevice);

// set higher sampling
i2CBmp280.TemperatureSampling = Sampling.LowPower;
i2CBmp280.PressureSampling = Sampling.UltraHighResolution;

// Perform a synchronous measurement
var readResult = i2CBmp280.Read();

// Print out the measured data
Debug.WriteLine($"Temperature: {readResult.Temperature?.DegreesCelsius:0.#}\u00B0C");
Debug.WriteLine($"Pressure: {readResult.Pressure?.Hectopascals:0.##}hPa");

You also have 3 examples on how to use this device binding are available in the samples folder.

The following fritzing diagram illustrates one way to wire up the BMP280 with an MCU like ESP32 using I2C:

ESP32 Breadboard diagram

General:

Bmp280 MCU
Vin Power pin
GND Ground

I2C:

Bmp280 MCU
SCK I2C clock pin
SDI I2C data pin

Connection Type

The following connection types are supported by this binding.

  • I2C
  • SPI
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on nanoFramework.Iot.Device.Bmxx80:

Repository Stars
dotnet/samples
Sample code referenced by the .NET documentation
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last Updated
1.2.931 267 11/10/2025
1.2.907 212 10/2/2025
1.2.892 208 7/30/2025
1.2.889 173 7/28/2025
1.2.869 433 4/2/2025
1.2.864 250 4/2/2025
1.2.852 332 3/11/2025
1.2.846 277 3/10/2025
1.2.822 276 2/26/2025
1.2.775 322 2/4/2025
1.2.772 219 2/4/2025
1.2.755 210 1/31/2025
1.2.743 278 1/20/2025
1.2.737 212 1/13/2025
1.2.718 257 12/30/2024
1.2.704 280 12/18/2024
1.2.696 218 12/16/2024
1.2.673 422 10/23/2024
1.2.656 269 10/3/2024
1.2.639 288 9/6/2024
1.2.631 252 8/28/2024
1.2.613 268 8/9/2024
1.2.601 210 7/26/2024
1.2.590 278 7/17/2024
1.2.573 277 6/19/2024
1.2.570 215 6/14/2024
1.2.560 254 5/29/2024
1.2.552 269 5/17/2024
1.2.536 366 4/15/2024
1.2.514 310 3/22/2024
1.2.494 316 2/28/2024
1.2.474 313 1/24/2024
1.2.462 318 1/5/2024
1.2.458 306 12/20/2023
1.2.456 237 12/13/2023
1.2.442 329 11/15/2023
1.2.436 227 11/10/2023
1.2.416 232 11/8/2023
1.2.403 311 10/6/2023
1.2.396 286 9/27/2023
1.2.384 306 9/6/2023
1.2.378 276 8/16/2023
1.2.369 373 8/2/2023
1.2.363 256 7/28/2023
1.2.357 242 7/19/2023
1.2.354 338 7/14/2023
1.2.345 284 6/21/2023
1.2.341 289 6/14/2023
1.2.337 300 6/7/2023
1.2.335 249 6/2/2023
1.2.329 252 5/26/2023
1.2.316 304 5/16/2023
1.2.313 297 5/12/2023
1.2.308 308 5/11/2023
1.2.302 259 5/10/2023
1.2.297 313 5/3/2023
1.2.273 460 3/17/2023
1.2.267 429 3/10/2023
1.2.263 401 3/8/2023
1.2.259 437 2/27/2023
1.2.256 370 2/24/2023
1.2.253 391 2/22/2023
1.2.222 514 1/9/2023
1.2.217 500 1/6/2023
1.2.215 418 1/6/2023
1.2.212 454 1/5/2023
1.2.210 489 1/4/2023
1.2.208 430 1/3/2023
1.2.203 483 12/28/2022
1.2.159 537 11/14/2022
1.2.157 502 11/9/2022
1.2.155 497 11/6/2022
1.2.153 503 11/5/2022
1.2.141 584 10/25/2022
1.2.128 561 10/22/2022
1.2.125 543 10/12/2022
1.2.87 683 9/15/2022
1.2.66 577 9/4/2022
1.2.63 572 9/3/2022
1.2.47 621 8/15/2022
1.2.40 617 8/6/2022
1.2.38 591 8/5/2022
1.2.28 632 8/1/2022
1.2.13 631 7/24/2022
1.2.10 582 7/23/2022
1.1.147.4251 714 7/8/2022
1.1.145.58726 578 7/7/2022
1.1.135.7416 632 7/1/2022
1.1.133.52556 608 6/30/2022
1.1.123.24311 634 6/27/2022
1.1.121.35854 600 6/26/2022
1.1.116.8772 640 6/24/2022
1.1.113.2032 616 6/23/2022
1.1.109.32999 647 6/16/2022
1.1.102.51394 601 6/15/2022
1.1.99.36719 578 6/14/2022
1.1.97.17326 603 6/13/2022
1.1.92.53000 640 6/8/2022
1.1.75.16702 634 6/1/2022
1.1.72.29765 624 5/31/2022
1.1.67.25390 631 5/27/2022
1.1.64.21380 615 5/26/2022
1.1.59.7661 622 5/24/2022
1.1.58.10097 628 5/23/2022
1.1.54.28879 593 5/23/2022
1.1.44.45306 652 5/6/2022
1.1.40 618 5/5/2022
1.1.11 647 4/19/2022
1.1.3 653 4/15/2022
1.1.1 595 4/14/2022
1.0.300 682 3/31/2022
1.0.288-preview.114 269 3/25/2022
1.0.288-preview.113 255 3/25/2022
1.0.288-preview.104 254 3/22/2022
1.0.288-preview.103 244 3/21/2022
1.0.288-preview.100 254 3/19/2022
1.0.288-preview.99 278 3/18/2022
1.0.288-preview.98 260 3/18/2022
1.0.288-preview.95 280 3/15/2022
1.0.288-preview.93 231 3/15/2022
1.0.288-preview.87 247 3/10/2022
1.0.288-preview.86 259 3/8/2022
1.0.288-preview.77 260 2/27/2022
1.0.288-preview.75 271 2/26/2022
1.0.288-preview.65 319 2/18/2022
1.0.288-preview.63 272 2/16/2022
1.0.288-preview.61 278 2/12/2022
1.0.288-preview.58 280 2/10/2022
1.0.288-preview.53 267 2/9/2022
1.0.288-preview.48 282 2/4/2022
1.0.288-preview.41 281 1/31/2022
1.0.288-preview.29 293 1/28/2022
1.0.288-preview.20 290 1/27/2022
1.0.288-preview.19 280 1/27/2022
1.0.288-preview.18 286 1/27/2022
1.0.288-preview.5 285 1/24/2022
1.0.288-preview.1 276 1/21/2022
1.0.272 673 1/10/2022
1.0.259 688 12/9/2021
1.0.258 520 12/7/2021
1.0.164 1,371 9/9/2021
1.0.157 530 9/4/2021
1.0.154 504 8/30/2021
1.0.153 532 8/14/2021
1.0.151 527 8/6/2021
1.0.146 541 7/22/2021
1.0.138 539 7/18/2021
1.0.136 587 7/17/2021
1.0.135 300 7/16/2021
1.0.134 325 7/15/2021
1.0.133 340 7/14/2021
1.0.131 322 7/8/2021
1.0.130 640 7/6/2021
1.0.129 327 7/6/2021
1.0.127 345 7/5/2021
1.0.126 333 7/5/2021
1.0.125 360 7/5/2021
1.0.122 382 6/30/2021
1.0.121 337 6/29/2021
1.0.120 342 6/29/2021
1.0.119 370 6/28/2021
1.0.118 387 6/20/2021
1.0.111 360 6/14/2021
1.0.110 398 6/9/2021
1.0.109 296 6/8/2021
1.0.106 354 6/1/2021
1.0.104 403 5/29/2021
1.0.103 344 5/28/2021
1.0.97 316 5/28/2021
1.0.90 321 5/27/2021
1.0.64 332 5/26/2021
1.0.19 361 5/21/2021