mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[ES] Blatt 1 und 2 hinzugefügt
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
15
es/blatt1/uebung1-11/uebung1-11.ino
Normal file
15
es/blatt1/uebung1-11/uebung1-11.ino
Normal file
@ -0,0 +1,15 @@
|
||||
int ledPin = 7;
|
||||
|
||||
void setup() {
|
||||
// put your setup code here, to run once:
|
||||
pinMode(ledPin, OUTPUT);
|
||||
digitalWrite(ledPin, LOW);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// put your main code here, to run repeatedly:
|
||||
digitalWrite(ledPin, HIGH);
|
||||
delay(2000);
|
||||
digitalWrite(ledPin, LOW);
|
||||
delay(500);
|
||||
}
|
||||
Reference in New Issue
Block a user