I have a samsung tab a8 with Fully Kiosk configured on it.
I can’t manage to have the tablet switching the theme from dark to light and vice versa. I did a Fully Kiosk reset the other day to enable one single feature at the time. The tablet switched from light to dark at sunset (following the tablet OS mode) but didn’t switch back to light in the morning. Even setting the theme in the HA service tool won’t impact the tablet.
I’m having this same issue with Fully Kiosk being stuck in dark mode on a Samsung Galaxy Tab A7. I can’t get the workaround to work. Would you share a snippet of your code or automation? Trying to see which entity you are using as the target for this service.
alias: Tablet keuken dag stand
description: ""
trigger:
- platform: sun
event: sunrise
offset: 0
condition: []
action:
- wait_for_trigger:
- platform: state
entity_id:
- sensor.tablet_keuken_browser_visibility
- service: browser_mod.set_theme
metadata: {}
data:
dark: light
target:
device_id: f0485bee5a4399e464d8d37ee6d71719
mode: single
This works for me about 90% of the time. I had to use the wait for trigger, because the entities of my Galaxy tab become unavailable after a short time. So it switches the first time the screen comes on after sunrise.
I have a second script for switching to dark at sunset.
Still haven’t figured out why it still fails sometimes.
I use this and as long as browser_mod entity is on, it works. Sometimes the tablet won’t check in with the browser_mod integration because of some missing restart or something. But this is the best I could come up with.