This commit is contained in:
Edward Firmo
2023-07-19 09:49:20 +02:00
2 changed files with 15 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ substitutions:
# device_name: "nspanel-name" # Wird im Blueprint benötigt!
# wifi_ssid: !secret nspanel_wifi_ssid # add in your esphome secrets file.
# wifi_password: !secret nspanel_wifi_password # add in your esphome secrets file. -> per default this is also used for ota_password and web_password
wifi_hidden: "false"
# ota_password: !secret nspanel_ota_password # add in your esphome secrets file. - manual change in code required to activate
# web_password: !secret nspanel_web_password # add in your esphome secrets file. - manual change in code required to activate
# api_password: !secret nspanel_api_password # add in your esphome secrets file. - manual change in code required to activate
@@ -60,8 +61,10 @@ substitutions:
##### WIFI SETUP #####
wifi:
ssid: ${wifi_ssid}
password: ${wifi_password}
networks:
- ssid: ${wifi_ssid}
password: ${wifi_password}
hidden: ${wifi_hidden}
power_save_mode: none
##### advanced config - uncomment to use static IP-Config #####
# manual_ip:
@@ -991,7 +994,6 @@ text_sensor:
auto ha_event = new esphome::api::CustomAPIDevice();
if (domain == "climate")
{
if (key == "set_temperature")
{
service = "climate.set_temperature";