diff options
| author | manuel <manuel@mausz.at> | 2025-10-18 22:03:50 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2025-10-18 22:03:50 +0200 |
| commit | 69ff1340a8f373480d618a20cd92f18ac2a01b54 (patch) | |
| tree | e55f263fcb3912dd10e3aa11c51065dfbb2ecd6e | |
| parent | 7efd4e4331188461f8936bdbf65fd49a32cd984c (diff) | |
| download | arduino-69ff1340a8f373480d618a20cd92f18ac2a01b54.tar.gz arduino-69ff1340a8f373480d618a20cd92f18ac2a01b54.tar.bz2 arduino-69ff1340a8f373480d618a20cd92f18ac2a01b54.zip | |
various fixes
* 3dprinterled: turn on on boot
* bedlight: remember settings
* all: enable power safe mode
| -rw-r--r-- | esphome/config/3dprinter-led.yaml | 3 | ||||
| -rw-r--r-- | esphome/config/bedlight.yaml | 7 | ||||
| -rw-r--r-- | esphome/config/couchlight.yaml | 2 | ||||
| -rw-r--r-- | esphome/config/hoblight.yaml | 2 | ||||
| -rw-r--r-- | esphome/config/office-pc-control.yaml | 2 | ||||
| -rw-r--r-- | esphome/config/tvlight.yaml | 2 |
6 files changed, 17 insertions, 1 deletions
diff --git a/esphome/config/3dprinter-led.yaml b/esphome/config/3dprinter-led.yaml index faa4ec1..c85f222 100644 --- a/esphome/config/3dprinter-led.yaml +++ b/esphome/config/3dprinter-led.yaml | |||
| @@ -7,6 +7,7 @@ esphome: | |||
| 7 | then: | 7 | then: |
| 8 | - light.control: | 8 | - light.control: |
| 9 | id: led_strip | 9 | id: led_strip |
| 10 | state: on | ||
| 10 | brightness: 50% | 11 | brightness: 50% |
| 11 | red: 70% | 12 | red: 70% |
| 12 | green: 70% | 13 | green: 70% |
| @@ -35,6 +36,8 @@ wifi: | |||
| 35 | domain: .lan | 36 | domain: .lan |
| 36 | ssid: !secret wifi_ssid | 37 | ssid: !secret wifi_ssid |
| 37 | password: !secret wifi_password | 38 | password: !secret wifi_password |
| 39 | # see https://github.com/esphome/issues/issues/1532 | ||
| 40 | power_save_mode: HIGH | ||
| 38 | 41 | ||
| 39 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 42 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 40 | ap: | 43 | ap: |
diff --git a/esphome/config/bedlight.yaml b/esphome/config/bedlight.yaml index 66662d4..2913e99 100644 --- a/esphome/config/bedlight.yaml +++ b/esphome/config/bedlight.yaml | |||
| @@ -16,7 +16,10 @@ esphome: | |||
| 16 | 16 | ||
| 17 | esp8266: | 17 | esp8266: |
| 18 | board: esp01_1m | 18 | board: esp01_1m |
| 19 | #restore_from_flash: true | 19 | restore_from_flash: true |
| 20 | |||
| 21 | preferences: | ||
| 22 | flash_write_interval: 5min | ||
| 20 | 23 | ||
| 21 | # Enable logging | 24 | # Enable logging |
| 22 | logger: | 25 | logger: |
| @@ -38,6 +41,8 @@ wifi: | |||
| 38 | domain: .lan | 41 | domain: .lan |
| 39 | ssid: !secret wifi_ssid | 42 | ssid: !secret wifi_ssid |
| 40 | password: !secret wifi_password | 43 | password: !secret wifi_password |
| 44 | # see https://github.com/esphome/issues/issues/1532 | ||
| 45 | power_save_mode: HIGH | ||
| 41 | 46 | ||
| 42 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 47 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 43 | ap: | 48 | ap: |
diff --git a/esphome/config/couchlight.yaml b/esphome/config/couchlight.yaml index 1cdf582..cfc2f00 100644 --- a/esphome/config/couchlight.yaml +++ b/esphome/config/couchlight.yaml | |||
| @@ -27,6 +27,8 @@ wifi: | |||
| 27 | domain: .lan | 27 | domain: .lan |
| 28 | ssid: !secret wifi_ssid | 28 | ssid: !secret wifi_ssid |
| 29 | password: !secret wifi_password | 29 | password: !secret wifi_password |
| 30 | # see https://github.com/esphome/issues/issues/1532 | ||
| 31 | power_save_mode: HIGH | ||
| 30 | 32 | ||
| 31 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 33 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 32 | ap: | 34 | ap: |
diff --git a/esphome/config/hoblight.yaml b/esphome/config/hoblight.yaml index 798eeae..e36bf31 100644 --- a/esphome/config/hoblight.yaml +++ b/esphome/config/hoblight.yaml | |||
| @@ -28,6 +28,8 @@ wifi: | |||
| 28 | domain: .lan | 28 | domain: .lan |
| 29 | ssid: !secret wifi_ssid | 29 | ssid: !secret wifi_ssid |
| 30 | password: !secret wifi_password | 30 | password: !secret wifi_password |
| 31 | # see https://github.com/esphome/issues/issues/1532 | ||
| 32 | power_save_mode: HIGH | ||
| 31 | 33 | ||
| 32 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 34 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 33 | ap: | 35 | ap: |
diff --git a/esphome/config/office-pc-control.yaml b/esphome/config/office-pc-control.yaml index b8608ac..92d78d6 100644 --- a/esphome/config/office-pc-control.yaml +++ b/esphome/config/office-pc-control.yaml | |||
| @@ -35,6 +35,8 @@ wifi: | |||
| 35 | domain: .lan | 35 | domain: .lan |
| 36 | ssid: !secret wifi_ssid | 36 | ssid: !secret wifi_ssid |
| 37 | password: !secret wifi_password | 37 | password: !secret wifi_password |
| 38 | # see https://github.com/esphome/issues/issues/1532 | ||
| 39 | power_save_mode: HIGH | ||
| 38 | 40 | ||
| 39 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 41 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 40 | ap: | 42 | ap: |
diff --git a/esphome/config/tvlight.yaml b/esphome/config/tvlight.yaml index 3805888..9fa59f1 100644 --- a/esphome/config/tvlight.yaml +++ b/esphome/config/tvlight.yaml | |||
| @@ -22,6 +22,8 @@ wifi: | |||
| 22 | domain: .lan | 22 | domain: .lan |
| 23 | ssid: !secret wifi_ssid | 23 | ssid: !secret wifi_ssid |
| 24 | password: !secret wifi_password | 24 | password: !secret wifi_password |
| 25 | # see https://github.com/esphome/issues/issues/1532 | ||
| 26 | power_save_mode: HIGH | ||
| 25 | 27 | ||
| 26 | # Enable fallback hotspot (captive portal) in case wifi connection fails | 28 | # Enable fallback hotspot (captive portal) in case wifi connection fails |
| 27 | ap: | 29 | ap: |
