Electrical – Why is the 220v – AC/DC 3.3v transformer cutting power when relay comes on

3.3vesp8266powerrelay

Being super original I've made a DIY Thermostat with an ESP8266. Being a bit of a novice (I'm learning). I've run in to some sticky bits with my kit. For the most part it works fine, but when turning on a 3v Relay to make a connection between AC Live and the Boiler (To turn it on) do I run in to an issue… The power from the transformer just,.. goes and then recovers a split second later. But this causes the ESP8266 module (and relay) to lose power causing a reset.

This isnt the ESP8266 shutting off, I have a cheap oscilloscope and I've monitored the V+ line and I can see when the relay goes on occasionally the power fails from the transformer.

Circuit (A Battery symbolises 3.3v input, sorry):

schematic

simulate this circuit – Schematic created using CircuitLab

The transformer is very similar to this:

https://www.ebay.co.uk/i/182200000506?chn=ps&adgroupid=13585920426&rlsatarget=aud-295856144804%3Apla-142405595586&abcId=&adtype=pla&merchantid=113593976&poi=&googleloc=9045866&device=c&campaignid=207297426&crdt=0

The only thing I haven't tried is shutting off the WiFi every time there is a relay change, I've heard the current draw from both could be enough to cause a problem. Its annoying its intermittent, it used to be a lot worse. But its still far too regular. All help is much appreciated, Thanks in advance.

Best Answer

The relay will draw about 132 mA steady state. V = IR, so I = V/R = 3.3/25 = 132 mA. The ESP8266 can draw up to 170 mA, on an intermittent basis. The radio goes in and out of sleep mode, thus you may have intermittent issues if your 3.3V supply is not able to provide sufficient current.

It looks like the supply you chose is rated for 700mA, so that should not be a problem. The issue may be related to the inductance of the wiring. I see that you have a capacitor, C2, in the schematic for that purpose, but you need to be sure it is very close the the module leads of the ESP module or it will not help. Also the inrush current of the relay can be much higher that the holding current, and it will draw more current when first turned on. Again a capacitor very close to the emitter of Q1 to ground will help.

Bottom line, your problem may very well be layout related, not schematic related.