Horje
arduino digital input pins Code Example
arduino digital input pins
int ledPin = 13;  // LED connected to digital pin 13
int inPin = 7;    // 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
}




C

Related
swap without using third variable Code Example swap without using third variable Code Example
arduino digital read Code Example arduino digital read Code Example
differnce between spooling and buffering Code Example differnce between spooling and buffering Code Example
C number of digits in integer Code Example C number of digits in integer Code Example
How to make a multiline string in C Code Example How to make a multiline string in C Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10