Arduino

SEQUENTIE of opeenvolging van code
Toekenning variabele: --> int deur;
Initialiseren variabele: --> deur=1;
KEUZE
ALS( digitalRead(4) == HIGH ){
...
}
HERHALING of ITERATIE
ZOLANG( deur==1 ){
...
}
Programmeerstructuren
SELECTION
IF( digitalRead(4) == HIGH ){
...
}
LOOP or ITERATION
WHILE( deur==1 ){
...
}
SEQUENTUIAL
Declaration variable --> int deur;
Initialize variabele --> deur=10;
1 / 3
next
Slide 1: Drag question
InformaticaSecundair onderwijs

This lesson contains 3 slides, with interactive quizzes and text slide.

time-iconLesson duration is: 50 min

Items in this lesson

SEQUENTIE of opeenvolging van code
Toekenning variabele: --> int deur;
Initialiseren variabele: --> deur=1;
KEUZE
ALS( digitalRead(4) == HIGH ){
...
}
HERHALING of ITERATIE
ZOLANG( deur==1 ){
...
}
Programmeerstructuren
SELECTION
IF( digitalRead(4) == HIGH ){
...
}
LOOP or ITERATION
WHILE( deur==1 ){
...
}
SEQUENTUIAL
Declaration variable --> int deur;
Initialize variabele --> deur=10;

Slide 1 - Drag question

Gelijk aan
Niet gelijk aan
Kleiner dan
Groter dan
Groter of gelijk aan
Kleiner of gelijk aan
Vergelijkingsoperatoren
!=
==
<
<=
>=
>

Slide 2 - Drag question

Slide 3 - Slide