LESSON 1 Flashcards

1
Q

What is an Arduino board?

A

An Arduino Board is a programmable circuit board that can be used to program lots of electrical projects.

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

What is the most important component of an Arduino Board, what does it do?

A

The board contains a microcontroller ( the brains of the board) which controls the board and senses physical objects around it.

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

How does the Arduino board work?

A

By sensing INPUTS an Arduino can interact with OUTPUTS such as LEDs, motors and displays.

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

How do you connect the breadboard to the Arduino Board? What are the different types of power transfers?

A

Connect the ground pin beside the digital pins on the Arduino Board to the negative control strip on the breadboard.

Multi-pin Power Transfer
Connect two or more control/digital pins from the Arduino Board to separate middle control strips on the breadboard.

Single-pin Power Transfer
Connect a control/digital pin from the Arduino Board to the positive control strip.

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

What is a breadboard? How do you connect it to a device?

A

The breadboard has more spots than Arduino board to connect things. In order for it to work, power must be transferred over to breadboard from Arduino.

Components:
Negative and Positive Control strips (Connect Horizontally)
In between, the negative and positive control strips on the top and bottom of the board, you connect input and output devices in the middle control strips. (Connect vertically). In order to do this, you need to connect the object to the negative control strip and either connect the object straight to a digital pin on the Arduino board (Typically in a multi-pin power transfer) or connect a control pin from the Arduino board to the positive control strip then connect it to the object on the breadboard. (Using wires)

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

How does Arduino Work?

A

Code is written using an IDE (integrated development environment) or using a website.
Code (also called sketches) is then uploaded to the board.
The board then carries out the instructions.

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

What language is Arduino coded in?

A

The language it is coded in is C++.

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

What are the components of IDE

A

Menu Bar - File, Edit, Sketch, Tools (Can select serial port and board here), Help.
Button Bar - Verify Button, Upload Button, Debug Button, Select Board Button.
Input/Edit Area - Where you do your code.
Status Bar
Program Notification Area

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

What is an LED?

A

A Light Emitting Diode - releases light when activated.
Has a negative (short) end and a positive (long) end.

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

What are the components of a code/sketch?

A

Variable declaration - Give integers a name to make things easier to identify.
const int (constant integer) - variable cannot change
int (integer) - want the variable to be able to change. ex: speed

Void setup - Initializes. Activates each variable as either an input and output pin.

Void loop - repeats as long as the board has power. What you want to happen/Statements and Commands

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