Arduino uno Quiz Flashcards

1
Q

Arduino Power Ports

A
  • 3.3V and 5V Ports: Provide power to your circuit.
  • GND Ports: Provide ground to your circuit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Data Transmission Ports

A
  • Numbered Ports (Top): Used for transmitting/receiving data.
  • Ports with ‘A’ (Bottom): Also used for transmitting/receiving data.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Digital vs. Analog Signals

A

Digital Ports (PWM-): Provide on/off (high/low) signals.
Analog Ports (‘A’): Provide a range of values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Breadboard Power Setup

A

Vertical Areas (Red +, Black -): For connecting power from the Arduino board to the breadboard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Building Circuits on Breadboard

A

Center Section: Divided into columns (a-e on left, f-j on right) for building circuits with LEDs, resistors, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Resistors

A

Function: Restrict electrical flow.
Color Bands: Show resistance value and tolerance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

LED Basics

A

LED: Stands for Light-Emitting Diode.
Cathode (Shorter Leg): Negative.
Anode (Longer Leg): Positive.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

RGB LED

A

4 Legs: One for each color (Red, Green, Blue) and one for the negative feed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Potentiometer

A

Also Known As: Variable resistor.
Analog Output: Provides a range of values based on rotation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Photoresistor

A

Function: Adjusts resistance based on the amount of light it senses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Arduino Sketch

A
  • Sketch: File where Arduino code is written.
  • Verification Button: Click to check for errors before uploading.
  • Upload Button: Upload code to the circuit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Digital Pins (0-13)

A

Purpose: Used for sending or receiving digital signals (HIGH or LOW).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Analog Pins (A0-A5)

A
  • Purpose: Used for reading analog signals (voltage levels) from sensors.
  • Functionality: Each analog pin can read values between 0 and 1023, corresponding to a voltage range from 0V to 5V.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Reset Pin

A

Purpose: Resets the Arduino board when connected to ground.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

delay Function:

A

Purpose: Pauses the program for a specified duration.
Example: delay(1000) keeps the LED on or off for 1 second (1000 milliseconds).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

digitalWrite Function:

A

Purpose: Used to set the state of a pin (HIGH or LOW).
HIGH: Turns the LED on.
LOW: Turns the LED off.