I am testing the 4 way solid state relay HY-M283 and I can't see it to work.
I'm testing the load contacts with a multimeter and expecting it to beep.
Arduino code:
int in1 = 7;
void setup() {
pinMode(in1, OUTPUT);
digitalWrite(in1, HIGH);
}
void loop() {
digitalWrite(in1, LOW);
delay(3000);
digitalWrite(in1, HIGH);
delay(3000);
}
I've got the channel LED blinking every 3 seconds but I don't have a closed contact on the output.
The relay board is powered by the Arduine 5V pin (I actually don't see contacts for a separate power supply).
- Arduino's 5V is connected to board DC+
- Arduino ground goes to DC-
- Arduino pin 7 goes to CH1
I've got the CH1 LED going on/off every 3 seconds, but I don't have the load circuit closed (based on the multimeter beeping check).
Attached is a picture.
Is this somehow related to the specs only mentioning AC load and not DC load?
(https://www.amazon.co.uk/HaiMa-Hy-M283-Module-Trigger-Control/dp/B07W4Z3BN5)