-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Force mode not working (ex.: 2 = clock) #204
Comments
You can "force" screens, see Mode overview
|
thx for the hint, tried now with:
as you suggested.
Any hint's what i am doing wrong ? |
This is probably a bug |
Ok thx. |
In my opinion, this has already been fixed in 2023.9.1 and, accordingly, in 2024.1.0 |
@andrewjswan thx for the hint. I can confirm that 2023.9.1 fixed this issue. Because of upcoming release, I am closing this. |
Question
I have the following HA automation when someone enters the room:
So after entering the room, the time was always shown to the user on v1.
Have now migrated from EspHoMaTriXv1 to v2.
An this is not working, sometimes it shows the date instead of the time.
How can i force the clock on v2?
I know there is a "force_screen" service, but what's the icon_name of the clock?
yaml:
`
name: "Datum"
id: switch_date
icon: mdi:calendar
restore_mode: RESTORE_DEFAULT_ON
lambda: |-
if (id(date_enable)) {
return true;
} else {
return false;
}
turn_on_action:
lambda: |-
if (!id(night_enable)) {
id(date_enable) = true;
id(rgb8x32)->set_show_date(true);
}
turn_off_action:
lambda: |-
if (!id(night_enable)) {
id(date_enable) = false;
id(rgb8x32)->set_show_date(false);
}
`
Additional information
The text was updated successfully, but these errors were encountered: