User Tools

Site Tools


arduino:arduino_crash_course:program_structure

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
arduino:arduino_crash_course:program_structure [2015/03/12 21:06] – [Main loop] mithatarduino:arduino_crash_course:program_structure [2017/12/06 01:01] (current) mithat
Line 30: Line 30:
  
 void setup() {                 void setup() {                
-  // make pin 13 an output +  pinMode(13, OUTPUT);       // make pin 13 an output
-  pinMode(13, OUTPUT);     +
 } }
  
Line 54: Line 53:
  
 void setup() {                 void setup() {                
-  // make ledPin an output +  pinMode(ledPin, OUTPUT);      // make ledPin an output 
-  pinMode(ledPin, OUTPUT);     +
 } }
  
Line 78: Line 76:
 // use variable ledPin to store the pin number that drives the LED // use variable ledPin to store the pin number that drives the LED
 int ledPin = 13; int ledPin = 13;
 +
 // define the LED's on and off times in milliseconds // define the LED's on and off times in milliseconds
 int onTime = 1000; int onTime = 1000;
Line 83: Line 82:
  
 void setup() {                 void setup() {                
-  // make ledPin an output +  pinMode(ledPin, OUTPUT);      // make ledPin an output
-  pinMode(ledPin, OUTPUT);     +
 } }
  
arduino/arduino_crash_course/program_structure.1426194387.txt.gz · Last modified: 2015/03/12 21:06 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki