Arduino Microcontroller and Basic Arduino Codes and Syntax Flashcards
Difference of Microcontroller and Microprocessor?
Microcontroller: Single Chip
Microprocessor: Multiple Chip
Describe the Arduino Microcontroller.
- open-source, microcontroller board
- prototyping, tool
- powerful chip, ATmega328P
- electronics, programming
It is used to write Arduino codes.
Arduino IDE
TRUE OR FALSE: Arduino codes are case-sensitive.
TRUE
What is the file generated or save in Arduino IDE called?
sketch
Code that sets up program by initializing the variables and values, pin modes, etc.
void setup()
Code that consecutively loops a certain line of codes.
void loop()
Code that is used to set up a specific pin as either digital input or output.
pinMode()
Code that writes HIGH or LOW value to a digital pin.
digitalWrite()
Code that causes the program to pause for a specific period of time in milliseconds.
delay()