diff --git a/draft/overlay/iface-1wire.md b/draft/overlay/iface-1wire.md new file mode 100644 index 0000000..20a6437 --- /dev/null +++ b/draft/overlay/iface-1wire.md @@ -0,0 +1,30 @@ + +# W1-GPIO - One-Wire Interface + +To enable the one-wire interface you need to add the following line to /boot/config.txt, beofre rebooting your Pi: + +``` +dtoverlay=w1-gpio +``` + +Alternatively you can enable the one-wire interface on demand using: + +``` +sudo modprobe w1-gpio +``` + +once either of the steps above has been performed, you can list the devices your Raspberry Pi can probe via (by default) GPIO4, like so: + +``` +ls /sys/bus/w1/devices/ +```