Properly interface with latching relay

Does anyone know how to properly set up an arduino circuit and sketch to interface with one of these? What parts do I need?

Have you already purchased this relay module?

Reason I ask is that it looks like its controlled by an STC 15F104E microcontroller that provides the "latch" (or toggle) feature. Not sure how the Arduino would know the relay status (energized or de-energized) if the control signal only toggles the relay status.

Also note that this relay module has no opto isolation which is desirable if controlling 220VAC loads. This relay module needs a 12VDC supply.

What are you controlling?
Do you need the latch feature?

Note that you could accomplish the latch or toggle feature with any regular relay module and an Arduino. Here, the Ardiono will know the relay status because it's controlling it.

The goal of the latching relay is to reduce power draw to only when it is toggling, thus saving power.

Oh, that relay module won't save any power as it uses a regular relay. They use the MCU to provide the latch feature, but the relay's coil will continuously draw power when energized.

Where can I find one that does what I am looking for then, do you know?

travis_farmer:
i think this may be what you are looking for.
http://www.ebay.com/itm/V23079-C1101-B301-Latching-relay-Axicom-5V-178-coil-250VAC-2-0A-Contacts-/252602542173

not sure if the amps are enough (250Vac @ 2A).

HTH :smiley:

~Travis

Or this for 10A.

http://www.ebay.com/itm/1ch-5V-Latch-Relay-Module-Flip-Flop-Bistable-Self-locking-Trigger-Switch-Board/272480713213?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D222007%26algo%3DSIC.MBE%26ao%3D1%26asc%3D41404%26meid%3D505c6a5449ac482eac21aa4f272efe74%26pid%3D100005%26rk%3D1%26rkt%3D6%26sd%3D252602542173

How do I interface with these?

The link by MosheB unfortunately is another standard relay (monostable type) using a flip-flop. You need a relay that is "set" or "reset" using a pulse to the coil.

Latching relays have 2 types of coils:

  • Single coil latching (Bistable, 1 coil) An example is the link by travis_farmer (datasheet). These are more difficult to control than a dual coil version because you'll need to reverse the power to the coil to change the status to the opposite state. Need H-bridge or similar driver circuit with these.
  • Dual coil latching (Bistable, 2 coil) These are easier to control as it has a separate "set" and "reset" coil terminal.It's really hard to suggest anything because we don't know enough details.

What is your application?
What are you controlling? (type of load, AC or DC, power rating, inductive, capacitive or resistive)
What is your power source - battery?
What coil voltage do you need?
What current rating do you need for the contacts?
What type of coil (single or dual)?
Do you want a relay module or stand alone relay?

My project controls specific outlets, turning them on and off, which uses a esp8266-01. I'm not sure what kind of coil, but single coil would be ideal as long as it could use the esp8266 pin to control. I may end up using a 3.3V pro mini clone or an esp12 or similar breakout. I want to use latching relays instead of standard relays so that I can save a small amount of power.

Doing more research, I think something like this looks like what I am looking for

http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+SheetRT1_bistable1014pdfEnglishENG_DS_RT1_bistable_1014.pdf8-1393239-5

Looks like it supports 250VAC at 16 amps if I know how to read. Someone correct me if I'm wrong

Hey, I'm doing something very similar to what your are doing, I wonder which latching relay you ended up using?