zephyr/samples/sensor/bme680/boards/adafruit_feather_nrf52840.overlay
Patrick K. Moffitt 2e0b86a01b samples: sensor: bme680: Add overlay for adafruit_feather_nrf52840
The overlay file defines an i2c interface for the
Feather nRF52840 Express and the Adafruit BME680.

Also adds the platform to the test build configuration.

Signed-off-by: Patrick K. Moffitt <patrick@moffitt.com>
2020-10-21 06:47:59 -05:00

18 lines
327 B
Plaintext

/*
* Copyright (c) 2020, Patrick Moffitt <patrick@moffitt.com>
*
* SPDX-License-Identifier: Apache-2.0
*
* i2c interface for the Feather nRF52840 Express and the
* Adafruit BME680.
*/
&i2c0 {
compatible = "nordic,nrf-twi";
bme680: bme680@77 {
compatible = "bosch,bme680";
reg = <0x77>;
label = "BME680";
};
};