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()