Interrupteur 2 Positions ON-OFF 2 Broches 3A 250VAC

Interrupteur 2 positions ON/OFF avec 2 broches, supporte 3A à 250V. Parfait pour vos montages électriques ou Arduino.

TND 4,20

10 in stock

Compare

Description

Interrupteur 2 Positions ON-OFF 2 Broches 3A 250VAC

Courte Description Produit :
Interrupteur à bascule compact ON-OFF avec 2 broches, supportant jusqu’à 3A à 250V AC. Idéal pour alimenter ou couper vos circuits manuellement.

Caractéristiques Techniques :
– Type : Interrupteur à bascule
– Positions : 2 (ON / OFF)
– Nombre de broches : 2
– Tension maximale : 250V AC
– Courant maximal : 3A
– Montage : à encastrer ou à souder
– Dimensions : env. 20mm x 15mm (selon modèle exact)

Connexion avec Arduino :
Ce type d’interrupteur fonctionne comme un contact mécanique :

  • Une broche connectée au GND
  • L’autre broche connectée à une entrée digitale Arduino (ex. D2) avec résistance pull-up interne ou externe

Code Exemple Arduino :

const int switchPin = 2;

void setup() {
  pinMode(switchPin, INPUT_PULLUP); // Utilise la résistance pull-up interne
  Serial.begin(9600);
}

void loop() {
  if (digitalRead(switchPin) == LOW) {
    Serial.println("Interrupteur ON");
  } else {
    Serial.println("Interrupteur OFF");
  }
  delay(200);
}

Reviews (0)

0.0
0
0
0
0
0

Be the first to review “Interrupteur 2 Positions ON-OFF 2 Broches 3A 250VAC”

There are no reviews yet.

Select at least 2 products
to compare