Search found 11 matches

by Koivutie7
11 Feb 2022, 23:33
Forum: ESP Easy: General Discussion
Topic: 16CH Esp8266 Relay Module
Replies: 5
Views: 5129

Re: 16CH Esp8266 Relay Module

How could I read the status information from that, I tried to get and send it with mqtt every time a change happens in the mcpgpio port, but I didn't really know how to do it ...
by Koivutie7
10 Feb 2022, 16:56
Forum: ESP Easy: General Discussion
Topic: 16CH Esp8266 Relay Module
Replies: 5
Views: 5129

Re: 16CH Esp8266 Relay Module

Not so of course, now it started to work as it should. Thanks..
by Koivutie7
10 Feb 2022, 13:37
Forum: ESP Easy: General Discussion
Topic: 16CH Esp8266 Relay Module
Replies: 5
Views: 5129

Re: 16CH Esp8266 Relay Module

Probably misspelled that point, the mcpgpio i2c address is 0x27 in the ino code the registry was made like this .. i2c_register &= 0b0111111111111111; i2c_register |= relay_8_state<<15; i2c_register &= 0b1011111111111111; i2c_register |= relay_7_state<<14; i2c_register &= 0b1101111111111...
by Koivutie7
10 Feb 2022, 11:40
Forum: ESP Easy: General Discussion
Topic: 16CH Esp8266 Relay Module
Replies: 5
Views: 5129

16CH Esp8266 Relay Module

I have an MCP23017 relay module. Pins are used D1 SCL, D2 SDA, D4 Wifi led, 5V and GND control? cmd = mcpgpio, 1.1 returns an offline status, should that registry be enabled somehow. https://cdn.tindiemedia.com/images/resize/68Iul9kWtuyHR7nRzh_1hidq7-I=/p/fit-in/653x435/filters:fill(fff)/i/83802/pro...
by Koivutie7
25 Jan 2022, 21:23
Forum: ESP Easy: General Discussion
Topic: Rules Sendtohttp to teltonika
Replies: 6
Views: 5793

Re: Rules Sendtohttp to teltonika

Very Thank You! Now it works like an idea, I put a spot on it SendToHTTP wait for ack.
by Koivutie7
23 Jan 2022, 15:49
Forum: ESP Easy: General Discussion
Topic: Rules Sendtohttp to teltonika
Replies: 6
Views: 5793

Re: Rules Sendtohttp to teltonika

Too long to send?
by Koivutie7
21 Jan 2022, 20:59
Forum: ESP Easy: General Discussion
Topic: Rules Sendtohttp to teltonika
Replies: 6
Views: 5793

Re: Rules Sendtohttp to teltonika

Didn't work that way, I have that modem just to send a txt message, on a subnet, usg and a couple of huaways handle the traffic outwards.
Dhcp is not enabled on this txt modem.
Domoticz can send a message too ... and nodered
by Koivutie7
21 Jan 2022, 19:25
Forum: ESP Easy: General Discussion
Topic: Rules Sendtohttp to teltonika
Replies: 6
Views: 5793

Rules Sendtohttp to teltonika

Hi, get Teltonika to send a txt message when the sauna is ready, this will not work with RUT950, RUT500 still works, serve works well. On SaunaOn Do SendToHTTP 192.168.2.1,2500,/cgi-bin/sms_send?username=admin&password=passs&number=00358555444333&text=Ready%20for%20the%20sauna endon The ...
by Koivutie7
10 Jan 2022, 13:35
Forum: ESP Easy: General Discussion
Topic: Analog/Dummy min interval
Replies: 6
Views: 4712

Re: Analog/Dummy min interval

Now got to work as desired, no more code to clean up ,,, thanks on Analog#value do if %eventvalue1% <> [Dummy#value] taskvalueset,2,1,[Analog#value] if %eventvalue1%>944 SendToHTTP 192.168.4.11,80,/control?cmd=event%2c0001 else if %eventvalue1%>864 and %eventvalue1%<944 SendToHTTP 192.168.4.11,80,/c...
by Koivutie7
10 Jan 2022, 10:31
Forum: ESP Easy: General Discussion
Topic: Analog/Dummy min interval
Replies: 6
Views: 4712

Re: Analog/Dummy min interval

That's how I have it, but if the interval is 10s. It sends a value every 10s ... on Analog#Value do taskvalueset,2,1,[Analog#value] endif endon on Dummy#value do if [Dummy#value]>1019 SendToHTTP 192.168.4.11,80,/control?cmd=event%2C0001 else if [Dummy#value]>980 and [Dummy#value]<1019 SendToHTTP 192...
by Koivutie7
10 Jan 2022, 09:56
Forum: ESP Easy: General Discussion
Topic: Analog/Dummy min interval
Replies: 6
Views: 4712

Analog/Dummy min interval

Hi, I have a rule that sends data to the relay card according to the potentiometer, the problem is that I don't get the mini interval set to 0, so send the data to the relay card even though the situation hasn't changed. I tried to put a dummy device, but here is the same problem, the min interval i...