int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
int wachttijd = 1000;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(wachttijd); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(wachttijd); // wait for a second
}
Er zijn nu nog deeltjes van de code waarvan we niet weten waarvoor ze dienen.
Lees hieronder over hun functie door met je muis over de tekentjes te bewegen.
;
//
{}
Een puntkomma ; geeft aan dat de instructie daar eindigt.
Bijna elke lijn eindigt met ;
Met twee schuine streepjes // kan je opmerkingen schrijven.
Alles wat achter // geschreven wordt, wordt niet als code,
maar als commentaar gerekend.
Zo kan je bijvoorbeeld wat uitleg bij je code schrijven.
Wil je een groot stuk commentaar schrijven, dat meerdere lijntjes in neemt, dan werk je met een schuine streep en een sterretje als volgt:
/* Hier komt je extra info. */
Alles wat tussen de accolades {} staat,
hoort bij de void loop() of void setup().
Int staat voor integer.
Met int declareer je een geheel getal,
zoals je wachttijd in milliseconden.
Void is het Engelse woord voor leegte. Werk je met void, dan zal de instructie (zoals setup en loop) enkel instructies uitvoeren. In tegenstelling tot int, geeft het bijvoorbeeld geen getal weer.