Add buttons as disabled by default

This commit is contained in:
iranl
2024-02-04 14:37:35 +01:00
committed by GitHub
parent e9aed30a33
commit 5ade0573f3

View File

@@ -957,7 +957,7 @@ void Network::publishHASSConfig(char* deviceType, const char* baseTopic, char* n
"",
"",
mqtt_topic_lock_action,
{ { "enabled_by_default", "true" },
{ { "enabled_by_default", "false" },
{ "pl_prs", "lockNgo" }});
// Lock 'n' Go with unlatch
@@ -974,7 +974,7 @@ void Network::publishHASSConfig(char* deviceType, const char* baseTopic, char* n
"",
"",
mqtt_topic_lock_action,
{ { "enabled_by_default", "true" },
{ { "enabled_by_default", "false" },
{ "pl_prs", "lockNgoUnlatch" }});
// Unlatch
@@ -991,7 +991,7 @@ void Network::publishHASSConfig(char* deviceType, const char* baseTopic, char* n
"",
"",
mqtt_topic_lock_action,
{ { "enabled_by_default", "true" },
{ { "enabled_by_default", "false" },
{ "pl_prs", "unlatch" }});
}