I wanted your help with SendToHTTP:
I have 2 wemos d1 mini, both flashed with EspEasy. The 1st wemos has a temperature sensor (DS18b20) and a TM1637 display. The 2nd wemos has an LCD display. I want to send the temperature from the 1st wemos to the second and display it on the LCD. I cannot get the SendToHTTP command to work. I tried a simple test rule on the 2nd wemos:
Code: Select all
On System#Boot do
timerSet,1,10
endon
On Rules#Timer=1 do
SendToHTTP <IP>,80,/control?cmd=lcd,1,1,test123
lcd,2,1,- %systime% -
timerSet,1,10
endon
Code: Select all
194787 : EVENT: Rules#Timer=1
194791 : ACT : SendToHTTP 192.168.1.72,80,/control?cmd=lcd,1,1,test123
201086 : ACT : lcd,2,1,- 16:19 -
201102 : ACT : timerSet,1,10
201105 : WD : Uptime 3 ConnectFailures 0 FreeMem 27992

When I enter the following from a browser, it works: http://<IP>/control?cmd=lcd,1,1,test123
Any ideas what I'm doing wrong?
(apologies if this is not the correct part of the forum to post this)