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
16	aliases {
17		sensor-controller = &i2c1;
18	};
19
20	soc {
21		i2c1: i2c@40002000 {
22			compatible = "vnd,soc-i2c";
23			label = "I2C_1";
24			reg = <0x40002000 0x1000>;
25			status = "okay";
26			clock-frequency = < 100000 >;
27		};
28	};
29};
30