Search found 9 matches

by manubis_sanchez
19 Jul 2021, 19:57
Forum: ESP Easy: General Discussion
Topic: Multiple average readings from sensors
Replies: 3
Views: 4736

Re: Multiple average readings from sensors

That's good to know ! Thank you.
My ESP8266 has rebooted several times, I think I ask it too much :s
I will work on that to find a good balance between precision of the values and load of the ESP.
by manubis_sanchez
19 Jul 2021, 17:47
Forum: ESP Easy: General Discussion
Topic: Multiple average readings from sensors
Replies: 3
Views: 4736

Multiple average readings from sensors

Hello, I found this page to do an average with one of my sensors with the rules feature. It works great. However, I would like to do the same for 2 more of my sensors on the same ESP. I tried to create a new rule but the target value of the first rule is affected by the second rule. On Temp#Temperat...
by manubis_sanchez
14 Apr 2021, 15:02
Forum: ESP Easy: General Discussion
Topic: [Solved] Domoticz HTTP with ESP connected through 4G
Replies: 2
Views: 3877

Re: Domoticz HTTP with ESP connected through 4G

It was that ! I passed the value to 2000 ;)
I tried so many thing about authentication, port redirection, users, I thought about firewall...
Thank you very much, I learned something :)
by manubis_sanchez
14 Apr 2021, 14:13
Forum: ESP Easy: General Discussion
Topic: [Solved] Domoticz HTTP with ESP connected through 4G
Replies: 2
Views: 3877

[Solved] Domoticz HTTP with ESP connected through 4G

Hello everyone, My ESP is connected in Wifi with a smartphone sharing 4G connection and I want to send values to my domoticz server on the web. It doesn't work, I got "HTTP C001 connection failed" in the logs. I have a working setup in my local network. Domoticz is running on a RPI3. It's ...
by manubis_sanchez
30 Mar 2020, 17:02
Forum: ESP Easy: Hardware
Topic: SHT3x - no readings
Replies: 8
Views: 12822

Re: SHT3x - no readings

Thanks ! (I forgot there were test firmware in the bin folder :/)
I'm going to test that !
by manubis_sanchez
30 Mar 2020, 15:18
Forum: ESP Easy: Hardware
Topic: SHT3x - no readings
Replies: 8
Views: 12822

Re: SHT3x - no readings

Hello,

Can I ask where do you get the version of ESPeasy with SHT30, please ? Or must I create a new post ?

Thanks

Manubis
by manubis_sanchez
03 Feb 2020, 22:15
Forum: ESP Easy: General Discussion
Topic: [Solved] Get temperature from domoticz to display it
Replies: 9
Views: 15272

Re: Get temperature from domoticz to display it

Here's my code but it don't work : return { on = { timer = { 'every minute' }, -- for testing httpResponses = { 'trigger' } }, execute = function(domoticz, item) if (item.isTimer) then domoticz.openURL({ url = 'http://192.168.1.xx/control?cmd=event,tempext=14', method = 'GET', callback = 'trigger' }...
by manubis_sanchez
03 Feb 2020, 20:07
Forum: ESP Easy: General Discussion
Topic: [Solved] Get temperature from domoticz to display it
Replies: 9
Views: 15272

Re: Get temperature from domoticz to display it

Thank you ! I find the rule to update my device.

The answer :

Code: Select all

on tempext do
  TaskValueSet,3,1,%eventvalue%
endon
Now I have to find how to send it from Domoticz with the correct value. I think I have to use dzvents... If someone can help me on this =)
by manubis_sanchez
02 Feb 2020, 15:45
Forum: ESP Easy: General Discussion
Topic: [Solved] Get temperature from domoticz to display it
Replies: 9
Views: 15272

[Solved] Get temperature from domoticz to display it

Hello, My Domoticz server have a weather device wich give me the outside temperature (from internet). I want to get this value from my domoticz server to ESPeasy to display it on a LCD screen. I think I have to create a dummy device on ESPeasy and use a rule to feed it... but I don't know how exactl...