1-wire iface draft

This commit is contained in:
RogueM 2016-07-27 18:48:33 +01:00
parent 62d2c0fe86
commit 39c2937850
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<!--
---
name: 1-WIRE
class: interface
type: pinout
description: Raspberry Pi One-Wire pins
url: https://www.raspberrypi.org/documentation/hardware/raspberrypi/dpi/
pin:
'bcm0':
name: Data
-->
# 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/
```