1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * This is used multiple times in the documentation.
7 * If you change it for one example, you could break others, so be careful.
8 */
9
10/* start-after-here */
11
12/dts-v1/;
13
14/ {
15	aliases {
16		sensor-controller = &i2c1;
17	};
18
19	soc {
20		i2c1: i2c@40002000 {
21			compatible = "vnd,soc-i2c";
22			label = "I2C_1";
23			reg = <0x40002000 0x1000>;
24			status = "okay";
25			clock-frequency = <100000>;
26		};
27	};
28};
29