Stap 5: CODE
CODE
OPEN HET BESTAND MET ARDUINO IDE.
OR
//led blink tutorial!<br>//Get more tutorials on --> --> --> // "MIYMAKERS" https://miymakers.wordpress.com void setup() { // '13' pin is set to be the output pinMode(13, OUTPUT); } // 'loop' makes the function run forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }