Skip to content

Commit 28b9ca5

Browse files
authored
Update README.md
completed *.ino to C/CPP
1 parent 753e824 commit 28b9ca5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

UsingArduino/README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Arduino.h // main header file
4343
main.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

0 commit comments

Comments
 (0)