Kit relais FE_SRly pour arduino, composant:
Relais SRD-05VDC-SL-C (Relais de 5V DC pour la bobine)
Résistance 150 hom
Led Diode (Rouge pour indiquer présence de commande dans le pin S du Kit Relais)
Diode 1N4007 (protection courant généré par la bobine du relais u moment de arrêter de la commande)
Pour les Pin:
Pin + = 5V alimentation
Pin – = GND
Pin S = Commande provenant du arduino. (Dans le example pin 10 du arduino)
Examle code:
void setup() {
// initialize digital pin 10 as an output.
pinMode(10, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(10, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for 1 second
digitalWrite(10, LOW); // turn the LED off by making the voltage LOW
delay(10000); // wait for 10 second
}
Pour la vidéo je change le temps de arrêt du relais a 1 seg.