14. Übung: Auf Schalter reagieren, egal wo das Programm ist#

Zu tun

Füge Beschreibung hinzu. Siehe [1].

 1const int ledPin = 13;
 2
 3int interruptPin = 2;
 4volatile int licht = LOW;
 5
 6void setup() {
 7    pinMode(ledPin, OUTPUT);
 8    pinMode(interruptPin, INPUT_PULLUP);
 9    attachInterrupt(digitalPinToInterrupt(interruptPin), schalte, RISING);
10}
11
12void loop() {
13    digitalWrite(ledPin, licht);
14}
15
16void schalte() {
17    licht = !licht;
18}