1/* 2 * Copyright (c) 2022 Thomas Stranger 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&arduino_serial { 8 status = "okay"; 9 10 w1_0: w1-zephyr-serial-0 { 11 compatible = "zephyr,w1-serial"; 12 #address-cells = <1>; 13 #size-cells = <0>; 14 status = "okay"; 15 16 ds18b20 { 17 compatible = "maxim,ds18b20"; 18 family-code = <0x28>; 19 resolution = <12>; 20 status = "okay"; 21 }; 22 }; 23}; 24