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
It seems all block are shifted by 1 hour. Block 1 should start at 7:00 but it was changed at 8:00. Timezone in homeassistant is correct (Vienna, GMT+1). System time is also correct.
date
Tue Nov 12 11:55:50 AM CET 2024
Python 3.11.2 (main, Aug 26 2024, 07:20:54) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import datetime
>>>
>>> def get_current_time():
... # Get the current time
... current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
... return current_time
...
>>> # Print the current time
>>> print("Current time:", get_current_time())
Current time: 2024-11-12 11:50:16
The text was updated successfully, but these errors were encountered:
The component gets its time from the HAOS server time zone. Your HAOS setup might be pulling the datetime function differently (not synchronized?), or the time zone setting under your HA profile could be corrupted. I can only replicate the issue if I change the time zone to display a different local time (+1).
It seems all block are shifted by 1 hour. Block 1 should start at 7:00 but it was changed at 8:00. Timezone in homeassistant is correct (Vienna, GMT+1). System time is also correct.
The text was updated successfully, but these errors were encountered: