From d401a726828a9868c6ebc913508121af481faaf9 Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Sun, 14 Aug 2016 13:13:54 +0100 Subject: [PATCH] Annotate recipe with LED sys/class names --- docs/recipes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/recipes.rst b/docs/recipes.rst index 3a6cf02..3ec224f 100644 --- a/docs/recipes.rst +++ b/docs/recipes.rst @@ -1002,8 +1002,8 @@ Now you can control the LEDs with gpiozero like so:: from gpiozero import LED from signal import pause - power = LED(35) - activity = LED(47) + power = LED(35) # /sys/class/leds/led1 + activity = LED(47) # /sys/class/leds/led0 activity.blink() power.blink()