Fix blueprint input section structure to nest under blueprint key
Move input definitions from root level to be nested under the blueprint section. Home Assistant requires input declarations to be under blueprint.input, not at the root level. This fixes import errors: - "Missing input definition for adaptive_lighting_switch, led_color_entity, mode_input_select" - "Missing input definition for sunrise_time, sunset_time, weekend_mode_boolean, adaptive_lighting_switch, max_brightness" - "Missing input definition for toggle_time, weekend_mode_boolean"
This commit is contained in:
@@ -2,30 +2,29 @@ blueprint:
|
||||
name: Apply Lighting Mode Settings
|
||||
description: Data-driven mode application using convention-based entity lookup
|
||||
domain: automation
|
||||
input:
|
||||
mode_input_select:
|
||||
name: Mode Input Select
|
||||
description: Dropdown helper tracking current lighting mode
|
||||
selector:
|
||||
entity:
|
||||
domain: input_select
|
||||
|
||||
input:
|
||||
mode_input_select:
|
||||
name: Mode Input Select
|
||||
description: Dropdown helper tracking current lighting mode
|
||||
selector:
|
||||
entity:
|
||||
domain: input_select
|
||||
adaptive_lighting_switch:
|
||||
name: Adaptive Lighting Switch
|
||||
description: AL switch for this room
|
||||
selector:
|
||||
entity:
|
||||
domain: switch
|
||||
integration: adaptive_lighting
|
||||
|
||||
adaptive_lighting_switch:
|
||||
name: Adaptive Lighting Switch
|
||||
description: AL switch for this room
|
||||
selector:
|
||||
entity:
|
||||
domain: switch
|
||||
integration: adaptive_lighting
|
||||
|
||||
led_color_entity:
|
||||
name: LED Color Entity (Optional)
|
||||
description: Number entity for LED color (e.g., Inovelli switch)
|
||||
default: {}
|
||||
selector:
|
||||
entity:
|
||||
domain: number
|
||||
led_color_entity:
|
||||
name: LED Color Entity (Optional)
|
||||
description: Number entity for LED color (e.g., Inovelli switch)
|
||||
default: {}
|
||||
selector:
|
||||
entity:
|
||||
domain: number
|
||||
|
||||
mode: restart
|
||||
max_exceeded: silent
|
||||
|
||||
Reference in New Issue
Block a user