13 lines
198 B
Python
13 lines
198 B
Python
import time
|
|
from grove.gpio import GPIO
|
|
|
|
led = GPIO(5, GPIO.OUT)
|
|
button = GPIO(6, GPIO.IN)
|
|
|
|
while True:
|
|
if button.read():
|
|
led.write(1)
|
|
else:
|
|
led.write(0)
|
|
time.sleep(0.1)
|