Search found 9 matches

by puls8
08 Feb 2021, 18:21
Forum: ESP Easy: Software
Topic: Plug-in for MAX31865 RTD or MAX31856 Thermocouple IC?
Replies: 29
Views: 14841

Re: Plug-in for MAX31865 RTD or MAX31856 Thermocouple IC?

+1 for the plugin!

Is there another way to measure high temperatures? I want to make a warning system to refill my woodstove. (and may be an auto closeing external air valve)
by puls8
22 Oct 2020, 21:51
Forum: ESP Easy: Projects / Applications
Topic: Solved! Since update endless feedback loop of a switching command between ESP EASY and Domoticz
Replies: 19
Views: 42864

Re: Solved! Since update endless feedback loop of a switching command between ESP EASY and Domoticz

puls8 wrote: 23 Aug 2020, 14:29 I ran in the same issue after updating from a end 2019 release to the latest. A easy fix is setting the interval to 1 second. This clearly breaks the loop.
Sadly, this does not always work. (At most 90% of the time).
by puls8
23 Aug 2020, 14:29
Forum: ESP Easy: Projects / Applications
Topic: Solved! Since update endless feedback loop of a switching command between ESP EASY and Domoticz
Replies: 19
Views: 42864

Re: Solved! Since update endless feedback loop of a switching command between ESP EASY and Domoticz

I ran in the same issue after updating from a end 2019 release to the latest. A easy fix is setting the interval to 1 second. This clearly breaks the loop.

The weird thing is that I have two relays in the same setup and esp, but only one is going into the loop.
by puls8
04 Mar 2020, 21:43
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Re: Control relay with (reed) switch

Thanks, I tried 3 totally different relays (3v, 5v, one channel and four channel). I could not image all those relays were suddenly broken. Also I used another NodeMCU with the same code and still it wasn't working. Then I copy-paste a rule set (only the boot thing) from a working setup. Adapted the...
by puls8
03 Mar 2020, 21:21
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Re: Control relay with (reed) switch

on door#state do gpio,16,[door#state] endon Does not work either... Next step to avoid typos: I cleared the rules section and added only these three lines: on System#Boot do    gpio,16,0 endon This should turn on the relay on boot, but no... (also tried gpio,16,1 (to double check)). Looks like the ...
by puls8
02 Mar 2020, 22:03
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Re: Control relay with (reed) switch

Updating to the latest firmware does not help.

I was thinking to reverse the logic of the rule:

Code: Select all

on door#state=0 do
   gpio,16,0
endon

on door#state=1 do
   gpio,16,1
endon
I was thinking that it would turn the relay on, but nothing is happing at all. I am clueless...
by puls8
02 Mar 2020, 21:35
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Re: Control relay with (reed) switch

Since you are using a electro-mechanical switch a De-bounce value is needed. For your magnetic reed switch application I suggest changing the 0mS value to 100mS. Changed that as you said The settings at the bottom of the plugin's screenshot are missing. So I cannot see the Values name. Your rules u...
by puls8
01 Mar 2020, 22:01
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Re: Control relay with (reed) switch

Hi Thomas, Thanks for your help 1. Switch Input plugin configuration might be incorrect. Post a screenshot to the reed switch's plugin settings. See the attachment 2. The wire leads to the reed switch might be too long (which invites coupled AC noise). What is the wire length and what is the pull-up...
by puls8
29 Feb 2020, 18:39
Forum: ESP Easy: Software
Topic: Control relay with (reed) switch
Replies: 12
Views: 9759

Control relay with (reed) switch

Hi all, I have connected a 4 channel relay, a reed contact switch, a temperature sersor and a OLED SSD1306. The last two work perfectly. Now I want to switch the relay with the reed contact switch. I see the value changes when I open and close the switch in the devices page, the log and the OLED. Th...