Arduino Uno Parts Flashcards

1
Q

this is how you power your Arduino when it’s not
plugged into a USB port for power. Can accept
voltages between 7 - 12V.

A

Power Connector

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

used for powering your Arduino Uno, uploading
your sketches to your Arduino, and for
communicating with your Arduino
sketch.

A

USB Port

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

use these pins to provide +5V power and ground to
your circuits.

A

GND and 5V pins

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

use these pins with analogRead()

A

Analog In

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

resets the ATmega microcontroller

A

Reset Button

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

these LEDs indicate communication between your
Arduino and your computer. Expect them to flicker
rapidly during skethc upload as well as during
serial communication. Useful for debugging.

A

TX and RX LEDs

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

use these pinswith digitalRead(), digitalWrite(),
and analogWrite(). analogWrite() works only on the
pins with the PWM symbol.

A

Digital pins

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

the only actuator built-in to your Arduino Uno.
Besides being a handy target for your first blink
sketch, this LED is very useful for
debugging.

A

Pin 13 LED

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

the heart of your Arduino.

A

ATmega microcontroller

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

indicates that your Arduino is receiving power.
Useful for debugging.

A

Power LED

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

These pins can be either inputs or outputs. Inputs
are used to read information from sensors, while
outputs are used to control actuators. You will
specify the directions (in or out) in the sketch you
create in the IDE. Digital inputs can only output
one of two values (HIGH and LOW)

A

14 Digital I/O pins (0-13)

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

The analogue input pins are used for reading
voltage measurements from analogue sensors. In
contrast to digital inputs, which can distinguish
between only two different levels (HIGH and LOW),
analogue inputs can measure 1,024 different levels
of voltage.

A

6 Analogue in pins (pins 0-5)

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

These are actually six of the digital pins that can
perform a third function: they can provide
analogue output. As with the digital I/O pins, you
specify what the pin should do in your sketch

A

6 Analogue out pins

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