Tle-Ct Feb 18, 2023
Tle-Ct Feb 18, 2023
Espino X-Einstein
February 18, 2023
TLE-CT
Discuss the principles and concepts of control interface, functions, status indicator
devices, actuator and locomotion SSP_TLE-CT10FEI-IIIa-1.1
3. What are you going to do if you want to write a multi-line comment in the Arduino
language?
-To write a multi-line comment, you will start the comment with /* and end it with */.
4. What is a baud?
- It is the measure of how many times a hardware can send 0s and 1s in one second.
5. Why is it necessary for the baud rate to be set properly for the board?
-It is important for the baud rate to be set properly for the board to convert incoming and outgoing
information to useful data.
6. Post a code on the Blink LED. You will find the code in the Arduino software, go to File –>
Examples -> Basics -> Blink.
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}