Horje
arduino digital read Code Example
arduino digital read
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
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
create cron task Code Example create cron task Code Example
how to remove \n from a string c Code Example how to remove \n from a string c Code Example

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