Search found 11 matches

by diablosss
04 Dec 2022, 08:20
Forum: ESP Easy: Software
Topic: Rules for show value from some web to LCD
Replies: 3
Views: 1213

Re: Rules for show value from some web to LCD

Is it possible send data with another esp8266 which have inside not espeasy flashed?
Code for arduino ide there. I dont see any example of sendtohttp for arduinoide
by diablosss
04 Dec 2022, 08:16
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

Re: esp01 + DHT11 temperature server and wemos mini +1602LCD as client

Ok.
Now flashed to both devices version mega normal 06-2022.
In log i see that device working on AP mode not act sendtohttp cpmmsnd. Is say No Network Connected, but actually devices connected and ping and ooens by IP
by diablosss
03 Dec 2022, 15:10
Forum: ESP Easy: Software
Topic: Rules for show value from some web to LCD
Replies: 3
Views: 1213

Rules for show value from some web to LCD

Hello.
There is some web page http://example.com/temperature
When i type it in browser it reply temperature value like 22 or 23 and show it in browser.
On esp8266 with lcd connected on device1, what command need enter in rules to every 30 second request that value and disply in lcd ?
Thanks
by diablosss
02 Dec 2022, 16:03
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

Re: esp01 + DHT11 temperature server and wemos mini +1602LCD as client

i have downloaded latest version binaries.zip
there is no NORMAL 1M version.you can check that. there is only 1M custom version.
anyway, let me check which previous latest relises include normal version of 1m
by diablosss
01 Dec 2022, 21:02
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

Re: esp01 + DHT11 temperature server and wemos mini +1602LCD as client

SendToHTTP 192.168.4.100,80,/control?cmd=LCD,1,1,testtss22

also not work
by diablosss
01 Dec 2022, 20:28
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

Re: esp01 + DHT11 temperature server and wemos mini +1602LCD as client

UPD tested method SendToHttp esp01 with dht11 work as AccesPoint. ip 192.168.4.1 rules commands work except sendtohttp command. wemos mini with lcd connect to esp01 . and get ip 192.168.4.100. from pc web browser (mozilla,crome,IE) i send command : http://192.168.4.100/control?cmd=lcd,1,1,TestText a...
by diablosss
30 Nov 2022, 19:08
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

Re: esp01 + DHT11 temperature server and wemos mini +1602LCD as client

on my esp devices installed ESPEasy_mega-20181002

on last relises not fund 1M version for esp01, thts why i use old version
by diablosss
30 Nov 2022, 14:42
Forum: ESP Easy: Software
Topic: esp01 + DHT11 temperature server and wemos mini +1602LCD as client
Replies: 9
Views: 1789

esp01 + DHT11 temperature server and wemos mini +1602LCD as client

Hello.
is tehre any way without wifi router make esp01 with dht11 send temperature to wemos mini and it display it on lcd ?
i readed thread on this forum which was not solved.
please if anyone can help me ?
i tested p2p method but not work at all :(
by diablosss
30 Nov 2022, 11:56
Forum: ESP Easy: Software
Topic: send temperature of ESP1 to ESP2
Replies: 12
Views: 8822

Re: send temperature of ESP1 to ESP2

same problem here.
@topic starter
did you solved problem ?
by diablosss
17 Jan 2022, 10:41
Forum: ESP Easy: General Discussion
Topic: rules. how to toggle gpio every 3 hours?
Replies: 4
Views: 5226

Re: rules. how to toggle gpio every 3 hours?

When using an exact "n minute after the hour" schedule, you could do like this (instead of "On System#Timer=2 do") On Clock#Time=All,**:01 do // check once per hour, at 1 minute after if %syshour%=0 or %syshour%=3 or %syshour%=6 or %syshour%=9 // split in 2 to avoid calculation ...
by diablosss
17 Jan 2022, 08:26
Forum: ESP Easy: General Discussion
Topic: rules. how to toggle gpio every 3 hours?
Replies: 4
Views: 5226

rules. how to toggle gpio every 3 hours?

Hello. I want gpio 4 switch on (for 50sec and turn off ) every 3 hours. I wrote code in rules. All work perfect. But my code is too big and eat much memory of rules :( im sure must be shorter code to do same actions. This is my code example On Clock#Time=All, 00:01 do gpio,4,0 timerSet,1,50 endon On...