From d8f7786cb38ae86a13b37ee12b682b8cea0bf8b4 Mon Sep 17 00:00:00 2001 From: Joshua King Date: Sat, 28 Feb 2026 20:57:44 -0500 Subject: [PATCH] Refactor master bedroom remote configuration: Update boot sequence to initialize backlight and change display data rate for improved performance --- esphome/master_bedroom_remote.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/esphome/master_bedroom_remote.yaml b/esphome/master_bedroom_remote.yaml index 0b73b3e..35fee01 100644 --- a/esphome/master_bedroom_remote.yaml +++ b/esphome/master_bedroom_remote.yaml @@ -10,11 +10,18 @@ substitutions: esphome: name: ${name} friendly_name: ${friendly_name} + on_boot: + priority: 600 + then: + - output.turn_on: backlight_output + - output.set_level: + id: backlight_output + level: 100% esp32: board: esp32dev framework: - type: arduino + type: esp-idf logger: @@ -47,7 +54,7 @@ display: model: ili9341 cs_pin: GPIO15 dc_pin: GPIO2 - reset_pin: GPIO4 + data_rate: 40MHz rotation: 0 invert_colors: false id: my_display @@ -121,11 +128,11 @@ touchscreen: output: - platform: ledc pin: GPIO21 - id: backlight_pwm + id: backlight_output light: - platform: monochromatic - output: backlight_pwm + output: backlight_output name: "Display Backlight" id: backlight restore_mode: ALWAYS_ON