From 9ab7cf28834a3a4bfd23b1c2127aa957588a74fe Mon Sep 17 00:00:00 2001 From: Trevor Schirmer Date: Wed, 26 Nov 2025 12:17:04 -0500 Subject: [PATCH 1/6] Reduce Wifi And Brightness --- Integrations/ESPHome/Core.yaml | 10 +++++----- Integrations/ESPHome/H-2.yaml | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index b470080..b4c334b 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -1,5 +1,5 @@ substitutions: - version: "25.11.10.2" + version: "25.11.26.1" esp32: board: esp32-c6-devkitm-1 @@ -12,7 +12,7 @@ output: - platform: ledc pin: GPIO20 id: buzzer - max_power: 60% + max_power: 50% rtttl: id: rtttl_buzzer @@ -137,7 +137,7 @@ number: id: volume_control min_value: 0 max_value: 100 - initial_value: 100 + initial_value: 25 unit_of_measurement: "%" step: 1 optimistic: true @@ -319,7 +319,7 @@ light: num_leds: 57 rgb_order: grb rmt_symbols: 48 - color_correct: [50%, 50%, 50%] + color_correct: [40%, 40%, 40%] effects: - pulse: name: "Slow Pulse" @@ -554,7 +554,7 @@ light: num_leds: 34 rgb_order: grb rmt_symbols: 48 - color_correct: [40%, 40%, 40%] + color_correct: [30%, 30%, 30%] effects: - pulse: name: "Slow Pulse" diff --git a/Integrations/ESPHome/H-2.yaml b/Integrations/ESPHome/H-2.yaml index a383ae7..f3ebdea 100644 --- a/Integrations/ESPHome/H-2.yaml +++ b/Integrations/ESPHome/H-2.yaml @@ -104,6 +104,8 @@ update: source: https://apolloautomation.github.io/H-2/firmware2/manifest.json wifi: + power_save_mode: HIGH + output_power: 10 on_connect: - delay: 5s - ble.disable: From 711e009c0ce4667f7e224bc0eb0b98fb5995be7f Mon Sep 17 00:00:00 2001 From: Trevor Schirmer Date: Wed, 26 Nov 2025 12:19:24 -0500 Subject: [PATCH 2/6] Drop Bluetooth --- Integrations/ESPHome/H-2.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Integrations/ESPHome/H-2.yaml b/Integrations/ESPHome/H-2.yaml index f3ebdea..c527ee9 100644 --- a/Integrations/ESPHome/H-2.yaml +++ b/Integrations/ESPHome/H-2.yaml @@ -81,11 +81,6 @@ dashboard_import: package_import_url: github://ApolloAutomation/H-2/Integrations/ESPHome/H-2.yaml import_full_config: false -improv_serial: - -esp32_improv: - authorizer: none - ota: - platform: esphome id: ota_esphome @@ -106,11 +101,6 @@ update: wifi: power_save_mode: HIGH output_power: 10 - on_connect: - - delay: 5s - - ble.disable: - on_disconnect: - - ble.enable: ap: ssid: "Apollo H2 Hotspot" @@ -118,10 +108,6 @@ logger: captive_portal: -web_server: - version: 3 - port: 80 - external_components: - source: github://ApolloAutomation/ExternalComponents components: [deep_sleep] From 3cacc1c632a6a8d324967f87f2136859b2d83fbd Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 26 Nov 2025 12:02:46 -0600 Subject: [PATCH 3/6] add web_server component back add web_server component back --- Integrations/ESPHome/H-2.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Integrations/ESPHome/H-2.yaml b/Integrations/ESPHome/H-2.yaml index c527ee9..1369d4f 100644 --- a/Integrations/ESPHome/H-2.yaml +++ b/Integrations/ESPHome/H-2.yaml @@ -111,7 +111,11 @@ captive_portal: external_components: - source: github://ApolloAutomation/ExternalComponents components: [deep_sleep] - + +web_server: + port: 80 + version: 3 + api: services: - service: play_buzzer From acab82b750ba6c5d256ca984ccf993ce42fc5f22 Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 26 Nov 2025 12:10:38 -0600 Subject: [PATCH 4/6] testing 60% buzzer power with other changes still in place testing 60% buzzer power with other changes still in place --- Integrations/ESPHome/Core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index b4c334b..27357b5 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -12,7 +12,7 @@ output: - platform: ledc pin: GPIO20 id: buzzer - max_power: 50% + max_power: 60% rtttl: id: rtttl_buzzer From 1946464b71dda8cbfeae89d895ef2a3227a1fdfc Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 26 Nov 2025 12:12:55 -0600 Subject: [PATCH 5/6] Add ignore_strapping_warning option in Core.yaml Add ignore_strapping_warning option in Core.yaml --- Integrations/ESPHome/Core.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index 27357b5..f88f87d 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -197,6 +197,7 @@ binary_sensor: mode: input: true pullup: true + ignore_strapping_warning: true id: reset_button on_press: then: From 33d9bd54e5f9e080455e201ff86605141b3042d0 Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 26 Nov 2025 12:52:47 -0600 Subject: [PATCH 6/6] Reduce max power of buzzer from 60% to 50% --- Integrations/ESPHome/Core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index f88f87d..7e68699 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -12,7 +12,7 @@ output: - platform: ledc pin: GPIO20 id: buzzer - max_power: 60% + max_power: 50% rtttl: id: rtttl_buzzer