Skip to content

Commit 72ed34b

Browse files
authored
Update README.md
Arduino.mk
1 parent 28b9ca5 commit 72ed34b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

UsingArduino/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,13 @@ void loop() {
3030
delay(1000); // wait for a second
3131
}
3232
```
33-
### How can it even work?
33+
>[!NOTE]
34+
> this sketch use :
35+
> - pinMode()
36+
> - digitalWrite()
37+
> - delay()
38+
> - LED_BUILTIN / HIGH / LOW
39+
## How can it even work?
3440

3541
Well, the answer to this is in your arduino folder ( /usr/share/arduino on linux ).\
3642
Let's say we give a generic name to this forlder for thurther use:\
@@ -130,3 +136,7 @@ And ***Arduino.h*** contains all the magically coloured commands ( just some exa
130136
>[!NOTE]
131137
> so here we have the ***declarations*** of the **setup** and **loop** [functions](../LearningC/C_Language_Shorts/C_syntax.md#functions) \
132138
> you ***define*** them in your sketch
139+
140+
## ArduinoMk
141+
This a beautifull package based on make-files which allows you to use Arduino code without the "heavyweight" IDE.\
142+
We'll use it for some examples.

0 commit comments

Comments
 (0)