Arduino Programmieren
Aus Wikizone
Version vom 12. Januar 2014, 10:30 Uhr von 149.172.152.210 (Diskussion) (Die Seite wurde neu angelegt: „Beispiele http://arduino.cc/en/Tutorial/HomePage ===Basic Structure=== <pre> void setup() { // put your setup code here, to run once: } void loop() { // …“)
Beispiele http://arduino.cc/en/Tutorial/HomePage
Basic Structure
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}