Now you have learned a little about the arduino environment, check your knowledge using the quick quiz below.
0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0) 0 Essay(s) Pending (Possible Point(s): 0)
This is the code of blink
void setup() { pinMode(10, OUTPUT); } void loop() { digitalWrite(10, HIGH); delay(1000); digitalWrite(10, LOW); delay(1000); }
Modify this code so that an LED on pin 13 will flash on for 0.5 seconds then stay off 1.5 seconds
void setup() { pinMode( , OUTPUT); } void loop() { digitalWrite( , HIGH); delay( ); digitalWrite( , LOW); delay( ); }
Remember that delays are in milliseconds
Username or Email Address
Password
Remember Me