Horje
arduino internal pull up resistor 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
}
arduino internal pull up resistor
pinMode(13, OUTPUT);
arduino internal pull up resistor
int sensorValue = digitalRead(2);
arduino internal pull up resistor
Serial.begin(9600);




C

Related
wpdb add temporary while drop table Code Example wpdb add temporary while drop table Code Example
text berjalan html Code Example text berjalan html Code Example
passing an array of unspecified number of variables to a function Code Example passing an array of unspecified number of variables to a function Code Example
string once declared Code Example string once declared Code Example
read file c Code Example read file c Code Example

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