Very new to Home Assistant. I’ve been learning a lot from the forums and docs, but I can’t seem to find the answer to this query.
- name: Dim Morning, Main Area
icon: "mdi:lightbulb-group"
entities:
light.living_room_pot_lights:
state: "on"
brightness: '{{ input_number.default_dimmer_3.dim.state | int }}'
switch.living_room_sconces: "off"
switch.living_room_chandelier: "off"
switch.living_room_accent_lights: "on"
switch.entrance_lights: "off"
I am trying to use the value of an input_number
to set the value of the brightness in a scene. The scene is working, other than the brightness part. This is what I’ve cobbled together from a few other topics, but something is still missing. Thanks for your help.