You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The helper_last_controller_event entity is really wasting too many of the default 100 chars available for input_text entities. This is due to over descriptive fields in the JSON object, and an unnecessarily verbose date representation.
E.g. the value currently in a controller text input helper: {"trigger_action": "off", "last_triggered": "2022-05-05 09:58:25.740583+02:00"}
We should reduce the number of characters used to the bare minimum, to prevent the need to increase the maximum length of the input_text value for controllers firing events with long names.
Automation YAML config
No response
Implementation
The goal is to reduce the number of used characters to the bare minimum, so there's more room for storing the controller event which triggered the automation.
{"a": "off", "t": "<unix time>"}
Additional Details
I'd like to help developing this feature/improvement.
Useful resources
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
🔒 This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new ticket for related bugs.
Blueprint name
Controllers - All
Description
The
helper_last_controller_event
entity is really wasting too many of the default 100 chars available forinput_text
entities. This is due to over descriptive fields in the JSON object, and an unnecessarily verbose date representation.E.g. the value currently in a controller text input helper:
{"trigger_action": "off", "last_triggered": "2022-05-05 09:58:25.740583+02:00"}
We should reduce the number of characters used to the bare minimum, to prevent the need to increase the maximum length of the
input_text
value for controllers firing events with long names.Automation YAML config
No response
Implementation
The goal is to reduce the number of used characters to the bare minimum, so there's more room for storing the controller event which triggered the automation.
{"a": "off", "t": "<unix time>"}
Additional Details
Useful resources
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: