From 3667b50a66601109e09a917e650084365f692bb9 Mon Sep 17 00:00:00 2001 From: Peter Lawler Date: Wed, 25 Oct 2017 08:10:14 +1100 Subject: [PATCH] Missing CR/LF --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 6ff9ee6..825c9f6 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,8 @@ You can also refer to the pin names:: Setup the pin for output, and write GPIO.HIGH or GPIO.LOW. Or you can use 1 or 0.:: import Adafruit_BBIO.GPIO as GPIO - GPIO.setup("P8_14", GPIO.OUT) GPIO.output("P8_14", GPIO.HIGH) + GPIO.setup("P8_14", GPIO.OUT) + GPIO.output("P8_14", GPIO.HIGH) **On-Board LEDs**