From 26337bedd7f3df3d12c64ea1d318b8b9b40ea9d3 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Mon, 1 Feb 2016 12:00:22 +0000 Subject: [PATCH] Move LED example from GPIO2 to GPIO17 See #116 and #153 --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index f5d39cd..6f6d3d7 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ with physical computing:: from gpiozero import LED from time import sleep - led = LED(2) + led = LED(17) while True: led.on() @@ -34,7 +34,7 @@ together:: from gpiozero import LED, Button from signal import pause - led = LED(2) + led = LED(17) button = Button(3) button.when_pressed = led.on