mirror of https://github.com/arendst/Tasmota.git
Setoption147
Setoption147 (MQTT) Disable publish SSerialReceived MQTT messages. If disabled, you must use event trigger rules instead. If it is activated, tasmota will not publish a MQTT message every time a SSerialReceived event fires. Use rules to control "what, how and when" publish these messages.
This commit is contained in:
parent
a4bf3b3ff0
commit
cd2656b8ad
|
@ -283,8 +283,8 @@ String EthernetMacAddress(void);
|
|||
#ifndef MQTT_CLEAN_SESSION
|
||||
#define MQTT_CLEAN_SESSION 1 // 0 = No clean session, 1 = Clean session (default)
|
||||
#endif
|
||||
#ifndef MQTT_SSERIALRECEIVED
|
||||
#define MQTT_SSERIALRECEIVED 1 // 0 = Disable sserialreceived mqtt messages, 1 = Enable sserialreceived mqtt messages (default)
|
||||
#ifndef MQTT_DISABLE_SSERIALRECEIVED
|
||||
#define MQTT_DISABLE_SSERIALRECEIVED 0 // 1 = Disable sserialreceived mqtt messages, 0 = Enable sserialreceived mqtt messages (default)
|
||||
#endif
|
||||
#ifndef MQTT_LWT_OFFLINE
|
||||
#define MQTT_LWT_OFFLINE "Offline" // MQTT LWT offline topic message
|
||||
|
|
Loading…
Reference in New Issue