Search found 7 matches

by Arne
01 Feb 2023, 17:29
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

Hi @Ath so i used the ESP_Easy_mega_20230131_normal_ESP8266_4M1M.bin from your mentioned Action build. In the Rules editor i used: Publish R/blabla/keepalive And it seems to work like expected. The topic is published like describe, and also the other device which requires this topic is reacting on i...
by Arne
31 Jan 2023, 19:11
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

Currently It just says:

10093737: ACT : Publish R/blabla/keepalive,''''

I will try to update the firmware later.
by Arne
31 Jan 2023, 16:38
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

Sorry, that doesn't change the behaviour.
by Arne
31 Jan 2023, 16:05
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

In that case the topic is also not published
by Arne
31 Jan 2023, 15:44
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

With MQTT Explorer i am able to publish the required topic.
by Arne
31 Jan 2023, 15:04
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

Re: publish empty MQTT Topic in rules

Code: Select all


On Rules#Timer=1 do
timerset,1,5

Publish R/blabla/keepalive,

endon

with that code the esp stops to publish that topic
by Arne
31 Jan 2023, 13:58
Forum: ESP Easy: Software
Topic: publish empty MQTT Topic in rules
Replies: 13
Views: 1758

publish empty MQTT Topic in rules

Hi All, i want to publish an empty MQTT Topic via an rule. The required topic looks like R/blabla/keepalive without any content. right now my approach looks like On Rules#Timer=1 do timerset,1,5 let,1, Publish R/blabla/keepalive,%v1% endon But in this case it is published with a value of 0. Can some...