I am using this SSR connected to an Arudino.
I am running a very simple code similar to this one: (like the Blink example)
loop(){
digitalWrite(1, HIGH);
delay(1000);
digitalWrite(1, LOW);
delay(1000);
}
When I start with the Arduino pin LOW the SSR is off. But after setting the Arduino pin to high my problem is: the SSR stays always on. Even if I set the Arduino pin to LOW the SSR won't stop letting the current pass through. What do I have to do set the SSR to off again? (Or do you even think the SSR is broken?)
