Searched full:bme680 (Results 1 – 25 of 31) sorted by relevance
12
/Zephyr-Core-3.5.0/drivers/sensor/bme680/ |
D | Kconfig | 1 # BME680 temperature, pressure, humidity and gas sensor configuration options 8 menuconfig BME680 config 9 bool "BME680 sensor" 15 Enable driver for BME680 I2C- or SPI- based temperature, pressure, humidity and gas sensor. 17 if BME680 20 prompt "BME680 temperature oversampling" 23 Select temperature oversampling for the BME680 sensor. Higher values 38 prompt "BME680 pressure oversampling" 41 Select pressure oversampling for the BME680 sensor. Higher values 56 prompt "BME680 humidity oversampling" [all …]
|
D | CMakeLists.txt | 9 zephyr_library_sources(bme680.c bme680_i2c.c bme680_spi.c)
|
D | bme680_spi.c | 15 #include "bme680.h" 19 LOG_MODULE_DECLARE(bme680, CONFIG_SENSOR_LOG_LEVEL);
|
D | bme680.c | 1 /* bme680.c - Driver for Bosch Sensortec's BME680 temperature, pressure, 4 * https://www.bosch-sensortec.com/bst/products/all_products/bme680 22 #include "bme680.h" 24 LOG_MODULE_REGISTER(bme680, CONFIG_SENSOR_LOG_LEVEL); 392 LOG_DBG("BME680 chip detected"); in bme680_init() 394 LOG_ERR("Bad BME680 chip id: 0x%x", data->chip_id); in bme680_init()
|
D | bme680_i2c.c | 14 #include "bme680.h"
|
/Zephyr-Core-3.5.0/samples/sensor/bme680/boards/ |
D | adafruit_feather_nrf52840.overlay | 7 * Adafruit BME680. 12 bme680: bme680@77 { 13 compatible = "bosch,bme680";
|
D | nrf52840dk_nrf52840.overlay | 8 bme680@76 { 9 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/samples/sensor/bme680/ |
D | README.rst | 3 BME680: Integrated environmental sensor 16 - BME680: https://www.bosch-sensortec.com/bst/products/all_products/bme680 21 This sample uses the BME680 sensor controlled using the I2C interface. 30 This project outputs sensor data to the console. It requires a BME680 37 :zephyr-app: samples/sensor/bme680 46 Device 0x20002b74 name is BME680
|
D | sample.yaml | 2 name: BME680 Sensor sample 4 sample.sensor.bme680:
|
D | CMakeLists.txt | 9 project(bme680) project
|
/Zephyr-Core-3.5.0/dts/bindings/sensor/ |
D | bosch,bme680-spi.yaml | 5 The BME680 is an integrated environmental sensor that measures 8 compatible: "bosch,bme680"
|
D | bosch,bme680-i2c.yaml | 5 The BME680 is an integrated environmental sensor that measures 8 compatible: "bosch,bme680"
|
/Zephyr-Core-3.5.0/boards/arm/thingy53_nrf5340/ |
D | board.c | 16 * could be accessed after power up. In particular bme680 and bmm150 sensors require, 67 * sensors could be accessed after power up. In particular bme680 and bmm150 in setup()
|
D | thingy53_nrf5340_common.dtsi | 193 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/boards/arm/nrf9160_innblue21/ |
D | nrf9160_innblue21_common.dtsi | 142 bme680@76 { 143 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/boards/arm/nrf9160_innblue22/ |
D | nrf9160_innblue22_common.dtsi | 145 bme680@76 { 146 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/boards/arm/pinnacle_100_dvk/doc/ |
D | index.rst | 49 * :abbr:`BME680 (Bosch Sensortec BME680 environmental sensor)` 103 | BME680 | I2C(M) | sensor/bme680 |
|
/Zephyr-Core-3.5.0/boards/arm/pinnacle_100_dvk/ |
D | pinnacle_100_dvk.dts | 145 bme680@76 { 146 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/tests/drivers/build_all/sensor/ |
D | spi.dtsi | 192 test_spi_bme680: bme680@19 { 193 compatible = "bosch,bme680";
|
D | i2c.dtsi | 77 test_i2c_bme680: bme680@b { 78 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/drivers/sensor/ |
D | CMakeLists.txt | 21 add_subdirectory_ifdef(CONFIG_BME680 bme680)
|
D | Kconfig | 77 source "drivers/sensor/bme680/Kconfig"
|
/Zephyr-Core-3.5.0/boards/arm/bl5340_dvk/ |
D | bl5340_dvk_cpuapp_common.dtsi | 156 bme680@76 { 157 compatible = "bosch,bme680";
|
/Zephyr-Core-3.5.0/boards/arm/bl5340_dvk/doc/ |
D | index.rst | 204 A Bosch BME680 Temperature, Pressure, Humidity & Air Quality sensor is 207 Refer to the `Bosch BME680 datasheet`_ for further details. 428 .. _Bosch BME680 datasheet: https://www.bosch-sensortec.com/media/boschsensortec/downloads/datashee…
|
/Zephyr-Core-3.5.0/boards/arm/96b_wistrio/doc/ |
D | 96b_wistrio.rst | 35 - Integrated Environmental sensor: Bosch BME680
|
12