L5 Flashcards

1
Q

provide an easy access from your computer to your Arduino board. It allows them to interact with one another, receiving and transmitting
information using this capability.

A

Serial communication

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

Information is transferring back and forth between computer and Arduino platform, data one byte at a time, one right after the other.

A

Serial communication

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

has a separate pop-up window that visualizes the incoming data from the Arduino board.

A

Arduino IDE

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

With ______ , you can transmit and receive data via serial port or the USB A to B cable.

A

Serial library

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

sent over the USB cable and consist a series of HIGHs and LOWs sent over the cable. Data can be sent in both directions.

A

Serial data

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

you can type characters when you click on the Send Button, commands is send to your Arduino
board.

A

Outbound area

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

The characters sent by your Arduino board are displayed in the

A

Inbound area

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

specifies how the command is terminated.

A

Line end settings

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

settings specifies the transmission speed that your board will be using. This setting must match the setting your sketch uses in the Serial Library.

A

Baud rate

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

collection of codes and procedures, In each library codes and procedures are related.

A

Serial library

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

conducts a series of test to compare the typed
value to the values specified in each statements.

A

Switch/case statements

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

When a match is found, the commands in that case statement executes. If there is no match found, the
_______ is executed.

A

optional default case

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

A _____ is used in every end of each cases to prevent upsurge from one case to another.

A

break

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