1/* 2 * Copyright (c) 2025 Pierrick Curt 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6#include <zephyr/dt-bindings/sensor/lis2dw12.h> 7 8&lis2dw12_19_x_nucleo_iks01a3 { 9 status = "okay"; 10 compatible = "st,lis2dw12"; 11 reg = <0x19>; 12 odr = <400>; 13 tap-mode = <LIS2DW12_DT_SINGLE_DOUBLE_TAP>; 14 tap-threshold = <12>, <12>, <12>; 15 power-mode = <LIS2DW12_DT_HP_MODE>; 16 tap-shock = <0x03>; 17 tap-quiet = <0x03>; 18 tap-latency = <0x03>; 19 irq-gpios = <&arduino_header 3 GPIO_ACTIVE_HIGH>; /* A3 */ 20}; 21