Electrical – 2 NO reed switch – turn on 230V water heater

acreedrelayswitching

For a small home project I would like to turn on a water heater using 2 NO reed switches. Once I put a small magnet ontop of the reed switch (turn the reed switch to Close), the water heater will be activated. Once one of the small magnets is separated from the reed switch, the water heater will be off.
How can I accomplish that ?
Reed switch always needs a current and I cant just connect it to 230V power right ?
If so, How would a DC 3v powered reed switch turn on a AC 230v device ?

Also, I have no experience with arduino and such, so I would appreciate a simpler solution to my problem.

thank you in advance !

Best Answer

I highly recommend doing a lot more research before playing with 230V AC mains!

And don't hook your reed switches to a 230V water heater. Most reed switches are fairly delicate. I've never seen one that can reliably switch 230V, let alone the amperage required by a water heater.


To answer your question, you would hook up the reed switches to inputs of your Arduino (or whichever controller you will use). Then, have the Arduino output a signal to drive a relay to control the water heater.

You will likely need two relays. A low-power, low-voltage relay (or MOSFET) that can be driven by the Arduino, and another one that can power the heater. The small relay drives the large one.

Please note that the real circuit will need additional considerations, such as inductive kick diodes and perhaps an RC snubber network for the relay.

Here is an answer that talks about driving a larger load with a MOSFET. You could use the same ideas, but put your larger relay in place of the "motor"...


As far as a simpler solution, you could do it all with relays. Then you wouldn't need to learn how to program an Arduino.

Something like this:

op3

However, this requires that your reed switch and relay are all spec'd for 230V. And as I said before, I don't think you will find a reed switch rated for 230V AC. A better alternative (safer, cheaper, and easier to find parts) would be to use something like:

op4

Please keep in mind that these aren't complete circuits. Only guidelines to help you research.