Arduino Flashcards

1
Q

Befehle:
Include

A

Einbindung von Bibliotheken

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Befehle:
voidSetup()

A

Wird beim ersten Start des Programms ausgeführt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Befehle:
voidLoop();

A

Wird nach dem Starten des Programms kontinuierlich als Schleife ausgeführt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Befehle:
PinMode

A

Deklaration eines Pins als Variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Befehle:
digitalWrite(Pin, High/Low);

A

Deklaration eines Ausgangs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Befehle:
digitalRead(Pin);

A

Lesen eines digitalen Eingangssignals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Befehle:
analogRead(Pin);

A

Lesen eines analogen Eingangs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Befehle:
delay(t);

A

Zeitverzögerung t in Millisekunden

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Befehle:
pulseIn(PIN_ECHO,HIGH);

A

Befehl für den Ultraschallsensor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Kommentar einfügen

A

Entweder:
/* xxx */
Alles was zwischen den Sternen steht wird ignoriert - auch über mehrere Zeilen

Oder:
//
Bis zum Ende der Zeile ignoriert das Programm den Code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Was ist eine Variable?

A

Ein „Behälter“ der einen Wert speichern kann

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Variablentypen:
Int (integer):

A

16 bit, speichert ganze Zahlen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Variablentypen:
Float:

A

32 bit, Fließkommazahlen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Variablentypen:
boolean:

A

1 Byte, true (1) oder false (0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Variablentypen:
char:

A

Charakter, 1 Byte, -128 bis 127, Alphanummerisch (Zahlen, Buchstaben und Sonderzeichen)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Variablentypen:
byte

A

1 Byte, 0 bis 255, Zahlen ohne Vorzeichen

17
Q

Definition digitales Signal:

A

Abzählbar, zeitlich diskontinuierlich, diskret
Logikpegel High / 1 oder Low / 0
Z.B. Bewegungsmeldern

18
Q

Definition Analoges Signal

A

Arduino misst Spannung (proportional zum Widerstand)