KY-019 - 5V Relais Modul
KY-019 - 5V Relais Modul
Das Relaismodul kann an 240V Wechselstrom (AC) oder 28V Gleichstrom (DC) angeschlossen werden. mit einer kleinen Schaltspannung kann die Arbeitsspannung geschaltet werden. Eine LED zeigt den Schaltzustand an.
Anschluss
Wichtig: Vor Inbetriebnahme muss geprüft werden, ob zum Schutz der LED ein 330 Ohm Widerstand vorgeschaltet werden muss!
Arduino | Modul |
---|---|
GND | Pin - |
+5V | Pin Mitte |
Pin 10 | Pin S |
Beispielcode
//KY019 5V relay module
int relay = 10;
// relay turns trigger signal - active high;
void setup ()
{
pinMode (relay, OUTPUT); // Define port attribute is output;
}
void loop ()
{
digitalWrite (relay, HIGH); // relay conduction;
delay (1000);
digitalWrite (relay, LOW); // relay switch is turned off;
delay (1000);
}
// relay turns trigger signal - active high;
void setup () {
pinMode (relay, OUTPUT); // Define port attribute is output;
}
void loop () {
digitalWrite (relay, HIGH); // relay conduction;
delay (1000);
digitalWrite (relay, LOW); // relay switch is turned off;
delay (1000);
}
- Zugriffe: 194