File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 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+ 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments