Skip to content

Commit eb12557

Browse files
Update README.md
1 parent e7e3933 commit eb12557

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
1-
# blinking-led-arduino
2-
a blinking LED activity as the intro for Arduino Code programming
1+
# Blinking LED Arduino
2+
This is a blinking LED activity as the intro for
3+
Arduino Code programming.
4+
5+
## The Arduino Code
6+
Arduino is both software and hardware. Right there,
7+
you can control the design.
8+
9+
There are two built-in functions in Arduino Code:
10+
`void setup` and `void loop`.
11+
12+
`void setup` is where you tell the computer whether
13+
an electronic component being programmed is an
14+
output device. Other initial setup can be
15+
done here, like, the initial mode of an LED
16+
is turned on.
17+
18+
`void loop` is where the execution of programs
19+
happen.
20+
21+
Take note of the word `void`. A `void` type
22+
of function will simply execute all the commands
23+
and will not return any value. Other functions
24+
which are not void can return values.
25+
26+
## The Setup
27+

0 commit comments

Comments
 (0)