diff options
author | KaufHA <[email protected]> | 2022-11-23 07:51:11 -0700 |
---|---|---|
committer | KaufHA <[email protected]> | 2022-11-23 07:51:11 -0700 |
commit | 7dcac7416548ffdab44fa47e23f150716bfb1ca2 (patch) | |
tree | fa7a054c3fa24364f14acb3aa06f7345ebfccbd7 | |
parent | cf10c3b661bf68d93a62b750f018a216bee6c592 (diff) | |
download | PLF10-7dcac7416548ffdab44fa47e23f150716bfb1ca2.tar.gz PLF10-7dcac7416548ffdab44fa47e23f150716bfb1ca2.zip |
allow disable webserver
-rw-r--r-- | kauf-plug.yaml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/kauf-plug.yaml b/kauf-plug.yaml index 31dfc79..4de0369 100644 --- a/kauf-plug.yaml +++ b/kauf-plug.yaml @@ -15,13 +15,14 @@ substitutions: # https://esphome.io/components/esphome.html#esphome-creators-project project_name: Kauf.PLF10 - project_ver_num: "2.011" + project_ver_num: "2.012" project_ver_let: y # https://esphome.io/components/switch/gpio.html?highlight=restore_mode sub_restore_mode: RESTORE_DEFAULT_ON # overwrite to change boot up behavior of relay - disable_entities: "true" # set to "false" to have all entities show up in Home Assistant automatically + disable_entities: "true" # set to "false" to have all entities show up in Home Assistant automatically + disable_webserver: "false" # set to "true" to disable the webserver listening on port 80. # substitutions for button actions. on_press and on_release implement a timer scheme with configurable delay. # on_hold_30s re-enables the AP and captive portal for the precompiled update binary. @@ -144,7 +145,7 @@ external_components: - source: type: git url: https://github.com/KaufHA/common - ref: v2022.11.18 + ref: v2022.11.23 refresh: 365250d @@ -188,6 +189,7 @@ ota: # https://esphome.io/components/web_server.html web_server: local: true + disable: $disable_webserver # https://esphome.io/components/binary_sensor/index.html |