Hello everyone,
I try to use without success the input_datetime integration with the following entity in my homeassistant/input_datetime.yaml file
rcdb_stop:
has_date: true
has_time: false
The execution of the following action in a automation failed with the error below
Invalid time specified: 2025-04-13 for dictionary value @ data[‘time’]. Got None
</>
data:
time: “{{ now().strftime(‘%Y-%m-%d’) }}”
target:
entity_id: input_datetime.rcdb_stop
action: input_datetime.set_datetime
</>
Home Assistant core version: 2025.4.1
I use without pronlem other input_datetime entities but with the following attributs
has_date: false
has_time: true
Thanks for your help
Jac