Browse Source

Nahrát soubory do „05“

master
Nela Achillesová 5 years ago
parent
commit
678f28b320
2 changed files with 22 additions and 0 deletions
  1. +22
    -0
      05/source.txt
  2. BIN
      05/video.mp4

+ 22
- 0
05/source.txt View File

@@ -0,0 +1,22 @@
#include <Servo.h>
Servo servo;
int tlacitko = D6;
void setup() {
pinMode(tlacitko, INPUT_PULLUP);
servo.attach(2); //D4
servo.write(0);
delay(2000);
}
void loop() {
int energie = digitalRead(tlacitko);
if(energie == false)
{
delay(1000);
servo.write(90);
delay(10000);
servo.write(0);
}
}

BIN
05/video.mp4 View File


Loading…
Cancel
Save