1/*
2 * Copyright (c) 2019 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	aliases {
9		magn0 = &lis2mdl_1e_x_nucleo_iks01a3;
10		accel0 = &lis2dw12_19_x_nucleo_iks01a3;
11		accel1 = &lsm6dso_6b_x_nucleo_iks01a3;
12	};
13};
14
15&arduino_i2c {
16
17	hts221_x_nucleo_iks01a3: hts221@5f {
18		compatible = "st,hts221";
19		reg = <0x5f>;
20	};
21
22	lps22hh_x_nucleo_iks01a3: lps22hh@5d {
23		compatible = "st,lps22hh";
24		reg = <0x5d>;
25		drdy-gpios =  <&arduino_header 12 GPIO_ACTIVE_HIGH>; /* D6 */
26	};
27
28	stts751_x_nucleo_iks01a3: stts751@4a {
29		compatible = "st,stts751";
30		reg = <0x4a>;
31		drdy-gpios =  <&arduino_header 4 GPIO_ACTIVE_LOW>; /* A4 */
32	};
33
34	lis2mdl_1e_x_nucleo_iks01a3: lis2mdl@1e {
35		compatible = "st,lis2mdl";
36		reg = <0x1e>;
37		irq-gpios =  <&arduino_header 2 GPIO_ACTIVE_HIGH>; /* A2 */
38	};
39
40	lis2dw12_19_x_nucleo_iks01a3: lis2dw12@19 {
41		compatible = "st,lis2dw12";
42		reg = <0x19>;
43		irq-gpios =  <&arduino_header 3 GPIO_ACTIVE_HIGH>; /* A3 */
44	};
45
46	lsm6dso_6b_x_nucleo_iks01a3: lsm6dso@6b {
47		compatible = "st,lsm6dso";
48		reg = <0x6b>;
49		irq-gpios =  <&arduino_header 11 GPIO_ACTIVE_HIGH>; /* D5 */
50		int-pin = <2>;
51	};
52};
53