activate over autossh and tunnel influxdb port
[rpi-ds18b20] / w1-2.dts
1 /*
2
3 Example for additional w1 bus on different pin, it just needs to have unique name 
4
5 On Rasperry Pi, it also needs 4.7k pull up on DQ pin of DS18B20
6
7 */
8
9 /dts-v1/;
10 /plugin/;
11
12 / {
13         compatible = "brcm,bcm2835";
14
15         fragment@0 {
16                 target-path = "/";
17
18                 __overlay__ {
19                         ds18b20_temp@2 {
20                                 /* Documentation/devicetree/bindings/w1/w1-gpio.txt */
21                                 compatible = "w1-gpio";
22                                 gpios = <&gpio 17 0>;
23                         };
24                 };
25         };
26 };