Arduino Code and Video Fotek SSR-40 Solid State Relay
This is the Arduino code Solid State Relay SSR-40
This video shows you how to control Fotek Solid State realy with Arduino and without Arduino.Resources for this sketch and video
- Fotek SSR-40 Datasheet (pdf)
- How to use Breadboard(video)
- Leran Arduino in 30 Minuetes (video)
- My Arduino Course on Udemy
- Get Early Acess to my videos via Patreon
/*
* This is the Arduino code for Solid State Relay
* manufactured by FOTEK
* to control turn ON or OFF AC or DC load
* This code will work with:
* SSR-25DA
* SSr-40DA
* SSR-25DA-H
* SSR-40DA-H
* * Watch the instruction video https://youtu.be/DZrOOhRCtZM
* *
* Written by Ahmad Shamshiri for Robojax Video
* Date: May 03, 2018, at 06:57 in Ajax, Ontario, Canada
* Permission granted to share this code given that this
* note is kept with the code.
* Disclaimer: this code is "AS IS" and for educational purpose only.
*
*/
// SSR relay
int relayPin = 8;// set pin 8 for relay output
// setup code for Robojax Solid State Relay
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
Serial.println("Robojax Solid State Relay ");
pinMode(relayPin, OUTPUT);
}
// loop code for Robojax Solid State Relay
void loop() {
// Turn the relay switch ON (Robojax.com/learn/arduino)
digitalWrite(relayPin, HIGH);// set relay pin to HIGH
Serial.println("Relay ON ");
delay(2000);
// Turn the relay switch OFF (Robojax.com/learn/arduino)
digitalWrite(relayPin, LOW);// set relay pin to LOW
Serial.println("Relay OFF ");
delay(2000);
}