003 - Controlling LEDs in Arduino

003 - Controlling LEDs in Arduino

Assessment

Flashcard

Computers

12th Grade

Hard

Created by

Roy Nepomuceno

Used 1+ times

FREE Resource

Student preview

quiz-placeholder

11 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is digitalWrite?

Back

digitalWrite is an Arduino function used to set the voltage level on a digital pin, controlling whether a pin outputs a HIGH (ON) or LOW (OFF) signal.

2.

FLASHCARD QUESTION

Front

What are the parameters of the digitalWrite function?

Back

digitalWrite(pin, value); where 'pin' is the pin number and 'value' can be HIGH or LOW.

3.

FLASHCARD QUESTION

Front

What does LOW represent in digitalWrite?

Back

LOW represents 0 volts or a logic level 0, turning the connected device OFF.

4.

FLASHCARD QUESTION

Front

What does HIGH represent in digitalWrite?

Back

HIGH represents the operating voltage of the Arduino board, usually 5 volts, turning the connected device ON.

5.

FLASHCARD QUESTION

Front

How does digitalWrite work for an LED?

Back

digitalWrite(pin, HIGH) supplies voltage to the LED, turning it ON; digitalWrite(pin, LOW) cuts off the voltage supply, turning the LED OFF.

6.

FLASHCARD QUESTION

Front

What is a practical example of using digitalWrite with an LED?

Back

Connecting an LED to pin 5: Writing HIGH to pin 5 sends 5V to the LED, causing it to light up; writing LOW stops the voltage, turning the LED off.

7.

FLASHCARD QUESTION

Front

What must be done before using digitalWrite on a pin?

Back

The pin must be set as OUTPUT using pinMode(pin, OUTPUT).

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?