“Arduino interner Pull -Up -Widerstand” Code-Antworten

Arduino Digitale Eingangsstifte

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
}
Flyhouse_Squarewheel

Arduino interner Pull -Up -Widerstand

Serial.begin(9600);
thefishermen88

Arduino interner Pull -Up -Widerstand

int sensorValue = digitalRead(2);
thefishermen88

Arduino interner Pull -Up -Widerstand

pinMode(13, OUTPUT);
thefishermen88

Ähnliche Antworten wie “Arduino interner Pull -Up -Widerstand”

Fragen ähnlich wie “Arduino interner Pull -Up -Widerstand”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen