Search found 18 matches

by Yves911
05 Aug 2016, 15:03
Forum: ESP Easy: Software
Topic: Introducing the Dummy Device on ESP Easy (Github R118!)
Replies: 29
Views: 47772

Re: Introducing the Dummy Device on ESP Easy

Thanks @Martinus I am using that now in a rule to reset value of the pulse counter that i have to monitor gas consumption: on System#Boot do TaskValueSet 4,1,0 Publish /esp02/Gaz/conso,0 endon On Gaz#Count do if [Gaz#Count] > 0 TaskValueSet 4,1,3600000/[Gaz#Time] Publish /esp02/Gaz/conso,[Dummy#Gaz]...
by Yves911
05 Aug 2016, 15:00
Forum: ESP Easy: Software
Topic: NTP not working
Replies: 14
Views: 14987

Re: NTP not working

I have the impression that your ESP doesn't reach the Internet.
Can you try to setup it using DHCP instead of assign it an ip
by Yves911
03 Aug 2016, 19:01
Forum: ESP Easy: Software
Topic: Many MQTT reconnects in 113
Replies: 3
Views: 4366

Re: Many MQTT reconnects in 113

I think your problem is because Unit nr Each ESP Easy unit needs a unique number in the range 1-31. This is important for MQTT connections and the Node list! Do not forget to set this field to a non-zero value, not conflicting with other units. see here http://www.esp8266.nu/index.php/ESPEasy Cheers
by Yves911
02 Aug 2016, 18:45
Forum: ESP Easy: General Discussion
Topic: Use a variable into rules
Replies: 2
Views: 6834

Re: Use a variable into rules

Ok let me explain a bit more what i want to achieve here. I am using the pulse counter to monitor my electricity consumption. What i need to know is how many kWh have been consumed in one day. My first idea was to use the Total variable provided by the pulse counter and reset it to 0 at the end of t...
by Yves911
02 Aug 2016, 16:01
Forum: ESP Easy: Software
Topic: NTP not working
Replies: 14
Views: 14987

Re: NTP not working

Works fine here with server 0.rhel.pool.ntp.org
by Yves911
02 Aug 2016, 13:31
Forum: ESP Easy: General Discussion
Topic: Use a variable into rules
Replies: 2
Views: 6834

Use a variable into rules

Hi forum,

Is it possible to use variable into rules for example something like:

Code: Select all

on Elec#Count do
$tmp = 12
Publish /whatever/,[tmp]
done
$tmp = something doesn't work, any idea?
by Yves911
01 Aug 2016, 21:53
Forum: ESP Easy: General Discussion
Topic: [Solved] Pulse counter + Rules + Time
Replies: 1
Views: 4318

Re: Pulse counter + Rules + Time

Since last update espeasy is able to send the Time info, no needs to create an additional rule
by Yves911
28 Jul 2016, 22:01
Forum: ESP Easy: General Discussion
Topic: [Solved] Pulse counter + Rules + Time
Replies: 1
Views: 4318

[Solved] Pulse counter + Rules + Time

Hello,

Is it possible to have access to the Time value of the Pulse module using rules?
What i would like to achieve is something like:

Code: Select all

on Elec#Count do
Publish /esp02/Elec/OOOOOOOOOOOOOOO,[Elec#Time]
endon
Where Elec is the name of my pulse counteur.

Cheers
Yves
by Yves911
15 Jun 2016, 15:05
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

Re: ESP Easy Pulse MQTT messages

I agree the current method is OK on a period of 1h or 30 minutes you can have a good estimation. Measuring things between 2 flash (this can vary from 600 ms to 12000 ms at my home) can give you a very precise info of the current consumption (and not an average on the last 10 minutes for example). le...
by Yves911
14 Jun 2016, 18:43
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

Re: ESP Easy Pulse MQTT messages

Ok so count is reseted every time you send values (so 60 seconds in your case). In my current installation (with a own program running on the esp) i am able to measure timing between 2 flash (in ms) exactly like espeasy do (but don't send). Knowing this value you can have a good/precise idea of what...
by Yves911
13 Jun 2016, 18:51
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

Re: ESP Easy Pulse MQTT messages

I would like to recreate what "the brain" is doing but i lack some info here, for example i can see that count reset to 0 after few seconds so "count" should be number of flash/x seconds. Do you know what this x seconds is. Also having the "time" would give a much more ...
by Yves911
12 Jun 2016, 19:13
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

Re: ESP Easy Pulse MQTT messages

The same than you @NietGiftig, a flash p/w or so to say 1000 pulses for a kilowatt => Yes but if i understand how the "count" work it show number of led flash for a certain amount of time (don't know how many s/ms). In order to get instant consumption you need to have access to the "t...
by Yves911
12 Jun 2016, 18:28
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

Re: ESP Easy Pulse MQTT messages

thanks @pppp33, with only the "count" value i don't see how to calculate the consumption because you don't get any timing value associated
With the "time" info i could (because it's the duration between 2 interruptions = 2 flash of the led light of my electric meter)
by Yves911
12 Jun 2016, 12:37
Forum: ESP Easy: Software
Topic: ESP Easy Pulse MQTT messages
Replies: 10
Views: 10932

ESP Easy Pulse MQTT messages

Pulse plugin only send "count" values over MQTT messages. Other info like "Time" and "Total" aren't send over MQTT. I have tried to understand why "Time" and "Total" aren't send into the pulse plugin code but haven't been able to find the reason... \...
by Yves911
22 May 2016, 18:44
Forum: Introduce yourself
Topic: Nice to meet ..
Replies: 2
Views: 5486

Re: Nice to meet ..

Hi Bert, i **think** that this feature is coming after R78, so you would have to try a dev version...
Cheers
Yves
by Yves911
21 May 2016, 17:43
Forum: ESP Easy: Software
Topic: ESP Easy Pulse count problem / bug
Replies: 11
Views: 18070

Re: ESP Easy Pulse count problem / bug

First of all i am new here and want to thanks for all the great work you have done here. I am considering moving my Gas/Elec counter program by ESPEasy. I notice that from the Pulse plugin i receive only "count" values and not Total and Time into MQTT messages. Don't know if total should b...