From 7ea312acb94958efeb8fdb454b23d8b6f613a92d Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Sun, 31 Jan 2016 15:54:57 +0000 Subject: [PATCH] Move LED example from GPIO2 to GPIO17 --- docs/notes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/notes.rst b/docs/notes.rst index 5bae981..3dc6250 100644 --- a/docs/notes.rst +++ b/docs/notes.rst @@ -13,7 +13,7 @@ The following script looks like it should turn an LED on:: from gpiozero import led - led = LED(2) + led = LED(17) led.on() And it does, if you're using the Python (or IPython or IDLE) shell. However, @@ -26,7 +26,7 @@ script alive:: from gpiozero import led from signal import pause - led = LED(2) + led = LED(17) led.on() pause()