mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 01:07:10 +00:00
Increase the maximum value for the transition parameter in the service hue.activate_scene (#88414)
* Increase hue.activate_scene max transition * Adjust the maximum transition (hue.activate_scene)
This commit is contained in:
parent
7a884a9d61
commit
2a1e046d46
@ -71,7 +71,7 @@ async def async_setup_entry(
|
|||||||
vol.Coerce(int), vol.Range(min=0, max=100)
|
vol.Coerce(int), vol.Range(min=0, max=100)
|
||||||
),
|
),
|
||||||
vol.Optional(ATTR_TRANSITION): vol.All(
|
vol.Optional(ATTR_TRANSITION): vol.All(
|
||||||
vol.Coerce(float), vol.Range(min=0, max=600)
|
vol.Coerce(float), vol.Range(min=0, max=3600)
|
||||||
),
|
),
|
||||||
vol.Optional(ATTR_BRIGHTNESS): vol.All(
|
vol.Optional(ATTR_BRIGHTNESS): vol.All(
|
||||||
vol.Coerce(int), vol.Range(min=1, max=255)
|
vol.Coerce(int), vol.Range(min=1, max=255)
|
||||||
|
@ -39,7 +39,7 @@ activate_scene:
|
|||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: 0
|
min: 0
|
||||||
max: 300
|
max: 3600
|
||||||
unit_of_measurement: seconds
|
unit_of_measurement: seconds
|
||||||
dynamic:
|
dynamic:
|
||||||
name: Dynamic
|
name: Dynamic
|
||||||
|
Loading…
x
Reference in New Issue
Block a user