File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Arduino.h // main header file
4343main.cpp // main source file
4444```
4545### Do the Magic
46- *** main.cpp*** says (I took out a few lines for clarity):\
46+ *** main.cpp*** says (I took out a few lines for clarity):
4747```
4848#include <Arduino.h>
4949...
@@ -75,7 +75,7 @@ int main(void)
7575 return 0;
7676}
7777```
78- And *** Arduino.h*** contains all the magically coloured commands ( just some example lines here ) :\
78+ And *** Arduino.h*** contains all the magically coloured commands ( just some example lines here ) :
7979> ```
8080> #ifndef Arduino_h
8181> #define Arduino_h
@@ -125,4 +125,8 @@ And ***Arduino.h*** contains all the magically coloured commands ( just some exa
125125>
126126> ...
127127>
128- ```
128+ > ```
129+
130+ >[!NOTE]
131+ > so here we have the ***declarations*** of the **setup** and **loop** [functions](../LearningC/C_Language_Shorts/C_syntax.md#functions) \
132+ > you ***define*** them in your sketch
You can’t perform that action at this time.
0 commit comments