Sketch − The first new terminology is the Arduino program called “sketch”.
Structure
Arduino programs can be divided in three main parts: Structure, Values (variables and constants), and Functions. In this tutorial, we will learn about the Arduino software program, step by step, and how we can write the program without any syntax or compilation error.Let us start with the Structure. Software structure consist of two main functions −
- Setup( ) function
- Loop( ) function
Void setup ( ) {
}
- PURPOSE − The setup() function is called when a sketch starts. Use it to initialize the variables, pin modes, start using libraries, etc. The setup function will only run once, after each power up or reset of the Arduino board.
- INPUT − -
- OUTPUT − -
- RETURN − -
Void Loop ( ) {
}
- PURPOSE − After creating a setup() function, which initializes and sets the initial values, the loop() function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond. Use it to actively control the Arduino board.
- INPUT − -
- OUTPUT − -
- RETURN − -
No comments:
Post a Comment