Update CircuitPlaygroundExpress_Blinky.py

This commit is contained in:
John Edgar Park 2017-10-06 08:42:12 -07:00 committed by GitHub
parent 301b9c3965
commit 1b9593bb41

View file

@ -4,7 +4,7 @@ import digitalio
import board import board
import time import time
led = digitalio.DigitalInOut(board.D13) #define the variable 'led' led = digitalio.DigitalInOut(board.D13) #defines the variable 'led'
led.direction = digitalio.Direction.OUTPUT #set the pin as output led.direction = digitalio.Direction.OUTPUT #set the pin as output
while True: #code below this point loops over and over while True: #code below this point loops over and over