Difference between revisions of "Arduino: DigitalIn pin 12 Digital Out Pin 13"

From OnnoWiki
Jump to navigation Jump to search
(Created page with " int ledPin = 13; // LED connected to digital pin 13 int inPin = 12; // pushbutton connected to digital pin 7 int val = 0; // variable to store the read value v...")
 
 
Line 13: Line 13:
 
   digitalWrite(ledPin, val);  // sets the LED to the button's value
 
   digitalWrite(ledPin, val);  // sets the LED to the button's value
 
  }
 
  }
 +
 +
 +
==Pranala Menarik==
 +
 +
* [[Arduino]]

Latest revision as of 08:47, 10 February 2022

int ledPin = 13;  // LED connected to digital pin 13
int inPin = 12;    // pushbutton connected to digital pin 7
int val = 0;      // variable to store the read value

void setup() {
  pinMode(ledPin, OUTPUT);  // sets the digital pin 13 as output
  pinMode(inPin, INPUT);    // sets the digital pin 7 as input
}

void loop() {
  val = digitalRead(inPin);   // read the input pin
  digitalWrite(ledPin, val);  // sets the LED to the button's value
}


Pranala Menarik