Arduino IDE Flashcards

1
Q

What does IDE stand for?

A

Integrated Development Enviroment

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

What is Arduino IDE?

A

Is an open source software that is mainly used for writing and compiling code into the Arduino Module

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

Importance of Arduino IDE

A

It connects to the Arduino and Genuino hardware to upload programs and communicate with them.

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

What does the Verify button do?

A

Compiles and checks your code, as well as catches errors in syntax.

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

What does the upload button do?

A

It sends your code to the Arduino board. When you click it, you should see lights on your board blink rapidly.

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

What does the ‘New’ button do?

A

Opens a new code in another window tab.

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

What does the ‘Open’ button do?

A

Opens an existing sketch/code.

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

What does the ‘Save’ button do?

A

Saves currently active sketch.

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

What does the ‘Serial Monitor’ do?

A

It opens a window that displays any serial information your Arduino board is transmitting. This is useful for debugging.

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

Where will the code be written?

A

Code Area

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

Where the IDE tell you if there were any errors in your code.

A

Message Area

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

This shows complete error messages.

A

Text console

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

This shows what board and the serial part selections.

A

Board and Serial Port

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

The Arduino IDE is available to what operating systems?

A

MAC, Windows, Linux, and Java platforms

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

The Arduino IDE supports what languages?

A

C and C++ languages

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

What is a sketch?

A

It is a unit of code that is uploaded to and run on Arduino Board

17
Q

What language is a sketch written in?

A

C++

18
Q

Every sketch needs what type of functions?

A

void type functions

19
Q

This sketch method is run once just after the Arduino is powered up.

A

setup ()

20
Q

This sketch method is ran continuously afterwards.

A

loop ()