1/*
2 * Copyright (c) 2020, Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/*
8 * Example configuration of a BME280 device on an Arduino I2C bus.
9 *
10 * Device address 0x77 is assumed. Your device may have a different
11 * address; check your device documentation if unsure.
12 */
13&arduino_i2c {
14	status = "okay";
15	bme280@77 {
16		compatible = "bosch,bme280";
17		reg = <0x77>;
18	};
19};
20