Relaymodule 1 channel

Relaymodule 1 channel
Euro 3.50 *Prices include VAT
Article codePCB140
Relaymodule 1 channel. Switches10A 250VAC - 10A 30VDC. Suitable for Arduino or other microcontrollers.  
Op voorraad / on stock
Relaymodule 1 channel. Switches10A 250VAC - 10A 30VDC. Suitable for Arduino or other microcontrollers.  

Example code:

int Relay = 12;
void setup()
{
pinMode(Relay, OUTPUT);     //Set Pin12 as output
}
void loop()
{
        digitalWrite(Relay, HIGH);   //Turn off relay
        delay(2000);
        digitalWrite(Relay, LOW);    //Turn on relay
        delay(2000);
}