Toggle Navigation
Games
Blog
Class PIN
Join for Free
Sign in
Toggle Navigation
Games
PIN
Join for Free
Blog
Pricing
Contact us
Help center
Sign in
Study
ELC805: Arduino beginner codding
0
%
0
0
0
Back
Restart
What is the correct word that matches correctly with the comments void _____(){ // put your main code here to run repeatedly }
digitalWrite
setup
loop
INPUT
Oops!
Okay!
What is the correct instruction that can satisfy with the comments _______________(3 HIGH) //turn LED ON ?
digitalWrite
INPUT
pinMode
analogRead
Oops!
Okay!
What is the correct word that matches correctly with the comment digitalWrite(13_____) //turn LED ON?
OUTPUT
HIGH
INPUT
LOW
Oops!
Okay!
The component labeled #1 is the
PORT B
PORT D
PORT C
PORT A
Oops!
Okay!
What is the correct word that matches correctly with the comment pinMode(13________) //declare LED as outputs ?
INPUT
LOW
OUTPUT
HIGH
Oops!
Okay!
The component labeled #2 is the
PORT A
PORT C
PORT D
PORT B
Oops!
Okay!
A sketch representation that specifies a 5V signal to an Arduino pin is
Pin
Sketch
LOW
HIGH
Oops!
Okay!
What is the correct instruction that matches correctly with the comment _________________ // sets pin 3 as output pin ?
digitalWrite(3 HIGH)
pinMode(3 INPUT)
pinMode(3 OUTPUT)
digitalWrite(3 LOW)
Oops!
Okay!
To set PORT D as input
PORTD = B01010101;
PORTD = B11111111;
DDRD = B11111111;
DDRD = B00000000;
Oops!
Okay!
A sketch representation that specifies a 0V signal to an Arduino pin is
HIGH
LOW
Pin
Sketch
Oops!
Okay!
What is the correct word that matches correctly with the comment pinMode(2________) //declare Switch as inputs ?
INPUT
LOW
OUTPUT
HIGH
Oops!
Okay!
What is the correct instruction that matches correctly with the comment ____________________ // Makes the output voltage ( 3 5V) ?
digitalWrite(3 HIGH)
digitalWrite(3 LOW)
pinMode(3 OUTPUT)
pinMode(3 INPUT)
Oops!
Okay!
What is the correct instruction that matches correctly with the comment ____________________ // Makes the output voltage ( 5, 0V) ?
pinMode(2 OUTPUT)
digitalWrite(2 HIGH)
pinMode(2 INPUT)
digitalWrite(2 LOW)
Oops!
Okay!
What is the correct word that matches correctly with the comment void ______(){ //put your setup code here to run once }
loop
INPUT
digitalWrite
setup
Oops!
Okay!
The component labeled #3 is the
PORT D
PORT A
PORT B
PORT C
Oops!
Okay!
To Turn ON all PORTD
DDRD = B00000000;
PORTD = B01010101;
DDRD = B11111111;
PORTD = B11111111;
Oops!
Okay!
To Turn OFF all PORTD
PORTD = B00000000;
DDRD = B11111111;
DDRD = B00000000;
PORTD = B01010101;
Oops!
Okay!
What is the correct instruction that matches correctly with the comment _________________ // sets pin 3 as INPUTpin ?
digitalWrite(3 LOW)
pinMode(3 OUTPUT)
digitalWrite(3 HIGH)
pinMode(3 INPUT)
Oops!
Okay!
What is the correct word that matches correctly with the comment digitalWrite(13_____) //turn LED OFF ?
OUTPUT
LOW
HIGH
INPUT
Oops!
Okay!
To make a delay of (1.5 Sec) use
delay(15)
delay(1.5)
delay(1500)
delay(150)
Oops!
Okay!
To set PORT D as output
DDRD = B00000000;
PORTD = B11111111;
PORTD = B01010101;
DDRD = B11111111;
Oops!
Okay!
Your experience on this site will be improved by allowing cookies.
Allow cookies