, ,

Módulo Push Button digital para Arduino Keyestudio

REF: KS0029


Este é um módulo básico de aplicação. Para ter uma primeira experiência de Arduino, basta encaixá-lo numa porta IO.

2,10 IVA INCL.

Módulo Push Button digital para Arduino Keyestudio

Wide voltage range from 3.3V to 5V
Standard assembling structure (two 3mm diameter holes with multiple of 5mm as distance from center)
Easily recognizable interfaces of sensors (“A” for Analog and “D” for Digital)
Icons illustrate sensor function clearly
High quality connector
Immersion gold surface.

REF: KS0029 Categorias: , , Etiquetas: , , ,
Marca

/* # When you push the digital button, the Led 13 on the board will turn on. Otherwise,the led turns off.
*/
int ledPin = 13;                // choose the pin for the LED
int inputPin = 3;               // Connect sensor to input pin 3 
void setup() {
  pinMode(ledPin, OUTPUT);      // declare LED as output
  pinMode(inputPin, INPUT);     // declare pushbutton as input
}
void loop(){
  int val = digitalRead(inputPin);  // read input value
  if (val == HIGH) {            // check if the input is HIGH
    digitalWrite(ledPin, LOW);  // turn LED OFF
  } else {
    digitalWrite(ledPin, HIGH); // turn LED ON

 

Também pode gostar…