Arduino -Skizzenstruktur
// actions are performed in the functions "setup" and "loop"
// but no information is reported to the larger program
void setup() {
// ...
}
void loop() {
// ...
}
Sleepy Shrike