16 lines
228 B
Python
16 lines
228 B
Python
import RPi.GPIO as GPIO
|
|
import time
|
|
|
|
BUTTON = 17
|
|
|
|
GPIO.setmode(GPIO.BCM)
|
|
GPIO.setup(BUTTON, GPIO.IN)
|
|
|
|
while True:
|
|
state = GPIO.input(BUTTON)
|
|
if state:
|
|
print("off")
|
|
else:
|
|
print("on")
|
|
time.sleep(1)
|