1/* 2 * Copyright (c) 2024 Jacob Winther 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8#include "adafruit_feather_nrf52840_common.dtsi" 9#include <nordic/nrf52840_partition.dtsi> 10 11/ { 12 model = "Adafruit Feather nRF52840 Sense"; 13 compatible = "adafruit,feather-nrf52840-sense-uf2"; 14 15 chosen { 16 zephyr,console = &uart0; 17 zephyr,shell-uart = &uart0; 18 zephyr,uart-mcumgr = &uart0; 19 zephyr,bt-mon-uart = &uart0; 20 zephyr,bt-c2h-uart = &uart0; 21 }; 22 23 leds { 24 led0: led_0 { 25 gpios = <&gpio1 9 0>; 26 }; 27 }; 28}; 29 30&i2c0 { 31 SHT3XD: sht3xd@44 { 32 compatible = "sensirion,sht3xd"; 33 reg = <0x44>; 34 }; 35}; 36