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.

27 line
392B

  1. #include <Servo.h>
  2. Servo servo;
  3. int tlacitko = D6;
  4. int sensor = D8;
  5. void setup() {
  6. pinMode(tlacitko, INPUT_PULLUP);
  7. pinMode(sensor, INPUT);
  8. servo.attach(2);
  9. servo.write(0);
  10. delay(2000);
  11. }
  12. void loop() {
  13. long stav = digitalRead(sensor);
  14. if(stav == LOW)
  15. {
  16. servo.write(90);
  17. delay(10000);
  18. servo.write(0);
  19. delay(500);
  20. }
  21. }