Skip to content

Instantly share code, notes, and snippets.

@jdieg0
Created June 8, 2017 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdieg0/904b75eab0cef9fa107b347b511b5f6f to your computer and use it in GitHub Desktop.
Save jdieg0/904b75eab0cef9fa107b347b511b5f6f to your computer and use it in GitHub Desktop.
Aufbau eines Arduino-Sketches
// Die Setup-Funktion wird einmal zu Beginn des Programms ausgeführt
void setup() {
// Code für die Initialisierung
}
// Die Loop-Funktion wird immer und immer wieder ausgeführt
void loop() {
// Code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment