L5 Flashcards
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.
Serial communication
Information is transferring back and forth between computer and Arduino platform, data one byte at a time, one right after the other.
Serial communication
has a separate pop-up window that visualizes the incoming data from the Arduino board.
Arduino IDE
With ______ , you can transmit and receive data via serial port or the USB A to B cable.
Serial library
sent over the USB cable and consist a series of HIGHs and LOWs sent over the cable. Data can be sent in both directions.
Serial data
you can type characters when you click on the Send Button, commands is send to your Arduino
board.
Outbound area
The characters sent by your Arduino board are displayed in the
Inbound area
specifies how the command is terminated.
Line end settings
settings specifies the transmission speed that your board will be using. This setting must match the setting your sketch uses in the Serial Library.
Baud rate
collection of codes and procedures, In each library codes and procedures are related.
Serial library
conducts a series of test to compare the typed
value to the values specified in each statements.
Switch/case statements
When a match is found, the commands in that case statement executes. If there is no match found, the
_______ is executed.
optional default case
A _____ is used in every end of each cases to prevent upsurge from one case to another.
break