Adresářová struktura pro odevzdání soutěžních úloh.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

298B

NAG-IoT

N.A.P

import Rpi.GPIO as GPIO import time

GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) GPIO.setup(17, GPIO.OUT) GPIO.setup(22, GPIO.IN, pull_up_down=GPIO.PUD_UP)

while True:

if GPIO.input(22) == GPIO.LOW:
    GPIO.output(17, GPIO.HIGH)
    time.sleep(10)
    GPIO.output(17, GPIO.HIGH)