File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff 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
3541Well, the answer to this is in your arduino folder ( /usr/share/arduino on linux ).\
3642Let'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.
You can’t perform that action at this time.
0 commit comments