Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- itbusch
- Date:
- 2022-02-23
- Revision:
- 2:c6442e972e68
- Parent:
- 1:6dd878905b5c
File content as of revision 2:c6442e972e68:
#include "mbed.h" #include "mbed_bme680.h" I2C i2c(I2C_SDA, I2C_SCL); // Used inside the BME680 Mbed Lib. BME680 bme680(0x76 << 1); int main() { int count = 10; if (!bme680.begin()) { printf("BME680 Begin failed \r\n"); return 1; } while (true) { if (++count >= 10) { count = 0; printf("\r\nTemperature Humidity Pressure VOC\r\n" " degC %% hPa KOhms\r\n" "------------------------------------------\r\n"); } if (bme680.performReading()) { printf(" %.2f ", bme680.getTemperature()); printf("%.2f ", bme680.getHumidity()); printf("%.2f ", bme680.getPressure() / 100.0); printf("%0.2f\r\n", bme680.getGasResistance() / 1000.0); } thread_sleep_for(1000); } }