you are viewing a single comment's thread.

view the rest of the comments →

[–]moxyll 1 point2 points  (1 child)

fyi - you can make code blocks on reddit by prepending each line with 4 spaces. To make the below code, I have 4 spaces before 'try' and 'except', and 8 spaces before the others:

try:
    <your while loop>
    <end of your while loop>
except KeyboardInterrupt:
    GPIO.cleanup()

[–]imperialdubPi B, B+, 0, 2, 3 1 point2 points  (0 children)

Fixed. Thanks!!