Current wiring setup is attached below
I have been getting burnt/damaged relays from this wiring setup on the HOT/Brown 240v side
To begin with, I wasn't using the JD-VCC relay / isolation feature on a different board (didn't have the option). The relay would work for roughly a day (sometimes I flick the relay a couple of times to see if it was working correctly)
I go to active the relay after 24 hrs and doesn't work. I tried this for the remaining 2 relays on that board and had the same outcome for all.
Acquired a different board with JD-VCC relay. Did some researching around these forums and others, and discovered that it might be something to do with the interference from using Raspberry Pi 5V to power the relay.
Connected a separate 5V to JD-VCC. Get the same issue, Activated the HOT and Neutral relay - all is well, reverted back and the HOT end is stuck/won’t move. Seems it's the same issue as described above. The damaged relay does flick but not as loud as the work one
https://forum.arduino.cc/index.php?topic=531363.0
https://forum.arduino.cc/index.php?topic=531363.0
It states 240VAC 10A on the relays
Are these relay’s not suitable for the application I’m trying to achieve?
I'm assuming it's creating a switching inductive load problem
Please Let me know if there is better way and/or hardware of achieving this
#Enable Relay
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BOARD)
GPIO.setwarnings(False)
GPIO.setup(7, GPIO.OUT)
GPIO.output(7, GPIO.LOW)
#Disable Relay
#Same as above
GPIO.output(7, GPIO.HIGH)




