Search found 12 matches

by lyndondr
14 Nov 2018, 19:59
Forum: ESP Easy: Software
Topic: Sliding average dummy device
Replies: 6
Views: 6609

Re: Sliding average dummy device

toffel969 wrote: 14 Nov 2018, 09:38
lyndondr wrote: 13 Nov 2018, 21:55 I'm also looking for a moving or sliding average function also. Is this possible in the Rules and Custom Variables possibly?
Ya it sure is, you can use rules and dummy devices to do that.
Do you have any examples you can post?
by lyndondr
13 Nov 2018, 21:55
Forum: ESP Easy: Software
Topic: Sliding average dummy device
Replies: 6
Views: 6609

Re: Sliding average dummy device

I'm also looking for a moving or sliding average function also. Is this possible in the Rules and Custom Variables possibly?
by lyndondr
22 Oct 2018, 21:32
Forum: ESP Easy: General Discussion
Topic: Smartthings integration
Replies: 2
Views: 3483

Re: Smartthings integration

This looks like a way to use ESP Easy with Smartthings. I used a different variant firmware to work with Smartthing but I would like to stay with ESP Easy. http://smartlife.tech/blog/2016/04/21/sonoff-wifi-switch-smartthings/ Maybe integrating the Smartthings library to ESP Easy as a controller is a...
by lyndondr
07 Oct 2018, 01:21
Forum: ESP Easy: Software
Topic: Ping Plugin
Replies: 39
Views: 28371

Re: Ping Plugin

I was wondering if there were any other ways to solve my problem without that type of plugin?
by lyndondr
06 Oct 2018, 22:46
Forum: ESP Easy: Software
Topic: Ping Plugin
Replies: 39
Views: 28371

Re: Ping Plugin

Anything else you can think of for my post?
by lyndondr
06 Oct 2018, 00:20
Forum: ESP Easy: Software
Topic: Ping Plugin
Replies: 39
Views: 28371

Re: Ping Plugin

Is this going to be added to the build? I'd like to setup a ESP Easy outlet to detect if the internet connection is down and if it is power off the router for a few seconds and then turn back on. Is this possible with the current mega builds? I see in the system info there is a web traffic output bu...
by lyndondr
02 Oct 2018, 00:33
Forum: ESP Easy: Software
Topic: problem with rules
Replies: 1
Views: 1835

Re: problem with rules

You can go to the Hardware tab of the web interface and change the default boot state of the GPIO pins.
Try one of the latest releases and see there is any change.
by lyndondr
30 Aug 2018, 01:29
Forum: ESP Easy: Projects / Applications
Topic: Dew Point with rules
Replies: 9
Views: 10817

Re: Dew Point with rules

This Dew Point formula seems pretty accurate over a larger range. dewpoint = (%rh/100)^(.125) * (112 + 0.9*Temp) + 0.1*Temp - 112 https://www.ajdesigner.com/phphumidity/dewpoint_equation_dewpoint_temperature.php#ajscroll Here are the rules I use. on DHT22#%RH do TaskValueSet 2,1,(([DHT22#TempF]-32)*...
by lyndondr
25 Aug 2018, 19:41
Forum: ESP Easy: Software
Topic: Formula Length Limit
Replies: 4
Views: 3280

Re: Formula Length Limit

Well after trying a different device using "mega-20180513" I was able to make things work. I rolled back the original device back to the 513 version and that one works now. Here is what I am using and it seems to be working good. on DHT22#%RH do TaskValueSet 2,1,(([DHT22#TempF]-32)*5)/9 en...
by lyndondr
25 Aug 2018, 03:22
Forum: ESP Easy: Software
Topic: Unclear setup of ThingSpeak with mega-20180822
Replies: 6
Views: 5187

Re: Unclear setup of ThingSpeak with mega-20180822

I don't use the "ThingHTTP Name:" but for some reason awhile back I had to stop using the Hostname and use the IP address. The IP address in your post is what I use.
by lyndondr
25 Aug 2018, 02:49
Forum: ESP Easy: Software
Topic: Formula Length Limit
Replies: 4
Views: 3280

Re: Formula Length Limit

Is there any reason the following formula wouldn't work in the rules? dewpoint = (%rh/100)^(1/8) * (112 + 0.9*Temp) + 0.1*Temp - 112 That formula is more accurate than the other simple one. Some of the items in your example aren't making sense to me. Can you explain this line ?"Publish %sysname...
by lyndondr
24 Aug 2018, 19:49
Forum: ESP Easy: Software
Topic: Formula Length Limit
Replies: 4
Views: 3280

Formula Length Limit

It would appear the length of a formula is limited to 40 characters. I want to use a more accurate formula for calculating dew point. I found the following in the Misc.ino towards the bottom of the file. // Compute the dew point temperature, given temperature and humidity (temp in Celcius) // Formul...