Beschrijving
Button Wemos shield. Simpel shield met 1 button. Output naar pin D3.
Wemos D1 mini beginnen:
– Wemos D1 mini handleiding Arduino IDE
– Wemos D1 mini handleiding NodeMCU
– Drivers
€2,45
4 op voorraad
Button Wemos shield. Simpel shield met 1 button. Output naar pin D3.
Wemos D1 mini beginnen:
– Wemos D1 mini handleiding Arduino IDE
– Wemos D1 mini handleiding NodeMCU
– Drivers
/*
* 1 Button Shield - Simple Push
* Press the pushbutton to switch on the LED
*
* 1 Button Shield pushbutton connects pin D3 to GND
*/
const int buttonPin = D3;
const int ledPin = BUILTIN_LED;
int buttonState = 0;
void setup() {
pinMode(buttonPin, INPUT);
pinMode(ledPin, OUTPUT);
// set initial state, LED off
digitalWrite(ledPin, buttonState);
}
void loop() {
// read button state, HIGH when pressed, LOW when not
buttonState = digitalRead(buttonPin);
// if the push button pressed, switch on the LED
if (buttonState == HIGH) {
digitalWrite(ledPin, HIGH); // LED on
} else {
digitalWrite(ledPin, LOW); // LED off
}
}
Enkel ingelogde klanten die dit product gekocht hebben, mogen een beoordeling schrijven.
Reviews
Er zijn nog geen beoordelingen.