import time
import RPi.GPIO as GPIO
time.sleep(0.1) # Wait for USB to become ready
GPIO.setup(27, GPIO.OUT) #LED
GPIO.setup(26, GPIO.IN) #button
while True:
print("test")
sleep(1000)
# if GPIO.input(26):
# GPIO.output(27, 1)
# else:
# GPIO.output(27, 0)
# sleep(0.3)
print("End")