I use the Tapo L530 smart bulb in my automations, but I don’t know of a way to dim the light - only to turn it on/off.
Is there a way to set the bulb to a specified brightness level?
is it missing the brightness values or do you mean you have trouble finding where to set it in the automation?
You can see what values it is exposing in developer tools → states.
alias: Dim Tapo Bulb to 50%
trigger:
- platform: time
at: "18:00:00" # Example trigger time
action:
- service: light.turn_on
target:
entity_id: light.tapo_bulb # Replace with your bulb entity ID
data:
brightness_pct: 50 # Set to 50% brightness
mode: single
Perfect - thanks!