Intro
Once Kiosk Mode is on, your mounted device shows up in Home Assistant/Homey like any other device. Your automations can control it and react to its state, so the tablet on your wall becomes part of your home’s automations, not just a display.- Control: wake the screen, set the brightness and colour scheme (light/dark mode), configure the screensaver, set the device volume, reload the app, and lock the screen with a PIN code (or unlock it).
- React to: battery level and charging state, screen and screensaver status, whether the screen is locked, and whether the device is online.
These automations need Kiosk Mode switched on, that’s how Zendo registers the tablet with Home Assistant/Homey. Control actions also need the device online and responding: if it’s offline, or doesn’t answer within about ten seconds, the action fails. Reading state always works from the last values the device reported.In the Home Assistant snippets, replace
YOUR_ZENDO_DEVICE_ID with your tablet’s device (the device field is a list, so add more to target several at once), or pick the devices from the dropdown in the visual editor - each is named after its tablet.Available options and commands
Every managed device offers the same controls and state to Home Assistant/Homey. This is the full list to build automations from.Home Assistant
Home Assistant
State you can read - each tablet registers these entities, named after the device (a tablet called “Kitchen” gives
There’s no separate online sensor. When a tablet goes offline, all of its entities read
A single call can control several tablets at once - list their device IDs:In Developer Tools > Actions or the automation editor, the Home Assistant UI shows a description and the available choices (dropdowns, sliders) for every field.
sensor.kitchen_battery, and so on):| State | Entity | Values |
|---|---|---|
| Battery level | sensor.<name>_battery | 0-100% |
| Charging state | sensor.<name>_battery_state | charger_unplugged, charging, plugged_not_charging |
| Screen brightness | sensor.<name>_screen_brightness | 0-100% |
| Volume | sensor.<name>_volume | 0-100% |
| Screen state | sensor.<name>_screen | active, screensaver |
| Colour scheme | sensor.<name>_color_scheme | dark, light |
| Screensaver mode | sensor.<name>_screensaver_mode | none, dim, black, clock |
| Screensaver timer | sensor.<name>_screensaver_timer | minutes |
| Locked | binary_sensor.<name>_locked | on, off |
unavailable.Actions you can call - each targets one or more tablets (the device field is a list), picked from the device selector:| Service | What it does |
|---|---|
zendo.managed_device_screen_wake_up | Wake the screen |
zendo.managed_device_screen_configure | Set the brightness (1-100%) and colour scheme (dark or light) |
zendo.managed_device_screensaver_configure | Set the screensaver mode (none, dim, black, or clock) and timer (1-60 min) |
zendo.managed_device_audio_configure | Set the volume (0-100%) |
zendo.managed_device_app_lock | Lock the screen with a PIN (4, 6, or 8 digits) and an optional message |
zendo.managed_device_app_unlock | Unlock the screen |
zendo.managed_device_app_reload | Reload the app |
Homey
Homey
These cards target a tablet through the Kiosk Device picker. Actions and triggers can aim at All devices / Any device, a Devices for… group (a person), or a single tablet. Conditions target a single tablet.Triggers (each also carries a Device name tag for use in messages):
- Kiosk Device battery level changed - tag: battery level
- Kiosk Device battery state changed - tag: charging state
- Kiosk Device screen state changed - tag: screen state
- Kiosk Device was locked / Kiosk Device was unlocked
- Kiosk Device came online / Kiosk Device went offline
- Kiosk Device battery level is above… a level you set
- Kiosk Device battery charging state is… charger unplugged / charging / plugged in, not charging
- Kiosk Device screen state is… active / screensaver
- Kiosk Device is locked
- Kiosk Device is online
- Wake up Kiosk Device screen - wake the screen
- Configure screen for Kiosk Device - brightness (1-100%) and colour scheme (dark/light)
- Configure screensaver for Kiosk Device - mode (none/dim/black/clock) and timer (1-60 min)
- Set volume for Kiosk Device - volume (0-100%)
- Lock Kiosk Device - lock with a PIN (4/6/8 digits) and an optional message
- Unlock Kiosk Device - unlock the screen
- Reload app - re-fetch settings and return to the start screen
Lock a device
Locking puts a full-screen PIN pad over the app, so the tablet can’t be used to control your property until it’s unlocked. It’s useful when you arm the alarm, head out, or have guests over.How the lock works
- PIN: 4, 6, or 8 digits, chosen when you lock. An optional message shows above the keypad (for example “Locked while we’re out”).
- Unlocking at the device: anyone can unlock by typing the PIN on the keypad, so pick one you’re happy to share with whoever’s home. There’s no override code or fingerprint, only the PIN.
- Wrong PINs slow down: the first few tries are instant, then a delay builds up - a few seconds at first, up to a minute if someone keeps guessing. There’s no hard lockout, and nothing is wiped.
- Unlocking remotely: an automation can unlock the tablet at any time, with no PIN needed.
- It survives a restart: the lock stays on even if the app is force-quit or the device reboots, so it can’t be bypassed by closing the app. Like every managed-device feature, it needs Kiosk Mode on to show.
Lock and unlock from an automation
Lock on one trigger (leaving, arming the alarm) and unlock on another (arriving, disarming).Home Assistant
Home Assistant
The PIN must be 4, 6, or 8 digits. List more device IDs under
device to lock several tablets together.Homey
Homey
Two flows, one to lock and one to unlock.Lock
- When: for example Homey’s leaves home presence trigger, or your alarm’s armed trigger.
- Then: Lock Kiosk Device. Set Kiosk Device to your tablet, PIN (required, 4/6/8 digits) to something like
1234, and Lock screen message (optional) to a note likeLocked while we're out.
- When: for example Homey’s comes home presence trigger, or your alarm’s disarmed trigger.
- Then: Unlock Kiosk Device. Set Kiosk Device to the same tablet. No PIN is needed to unlock remotely.
Group devices
When you replace a tablet or reinstall the app, it joins as a brand new device. How you aim your automations decides whether they keep working after a swap, so group them by person where you can.- Homey: target a person instead of a single device. Link each tablet to someone in People & Invitations, then choose the Devices for… entry for that person in your flow. It follows whoever’s linked, so it keeps working after a swap. You can still pick a single device when you want to. (Conditions are the one exception, they always target a specific device.)
- Home Assistant: an action’s
devicefield is a list, so one automation can control several tablets at once. There’s no person grouping like Homey’s, though: when you replace a tablet you point automations at the new device, and renaming it and itssensor.<name>_*entities to match keeps things tidy.
Automation ideas
Some ready-made automations to get you started, each with a Home Assistant and a Homey version.Wake the screen on motion
Got a motion or presence sensor nearby? Let it wake the screen as you approach, so the tablet lights up when you walk up, then settles back to its screensaver once you leave.Home Assistant
Home Assistant
Trigger on your motion sensor, then call the wake-up action on your tablet.
Homey
Homey
Build a two-card flow:
- When: your motion sensor’s Motion turned on trigger (the exact wording depends on the sensor).
- Then: add Wake up Kiosk Device screen. In the Kiosk Device field, pick your tablet.
Keep the battery healthy
A wall tablet left plugged in sits at 100% all day, which wears the battery down over time. Keeping it in a healthier range helps: put its charger on a smart plug, then start charging when the battery drops below 20% and switch the plug off once it climbs above 80%.Home Assistant
Home Assistant
Read the tablet’s battery sensor (named after the device, e.g.
sensor.kitchen_battery) and switch the plug from two numeric-state automations.Homey
Homey
Two flows, one to start charging and one to stop.Start charging when low
- When: Kiosk Device battery level changed. Set Kiosk Device to your tablet.
- And: Kiosk Device battery level is above…. Set the level to
20, then invert the card (tap it so it reads as not above 20%) so it matches when the battery is at or below 20%. - Then: your smart plug’s Turn on.
- When: Kiosk Device battery level changed. Set Kiosk Device to your tablet.
- And: Kiosk Device battery level is above…. Set the level to
80and leave it as-is. - Then: your smart plug’s Turn off.
Dim the tablet in the evening
In the evening, make the tablet dimmer and quieter: dark mode, lower brightness, a shorter screensaver timer so it isn’t sitting bright for long, and lower volume. The examples switch to these settings at 20:00 and back to day settings at 08:00. Lowering the volume here also quiets a doorbell ring that follows the device volume.Home Assistant
Home Assistant
One automation switches to night settings at 20:00, another switches back to day settings at 08:00.
Homey
Homey
Two flows, one for night and one for morning.Night mode at 20:00
- When: Date & Time’s The time is… trigger, set to
20:00. - Then, add three action cards, all pointed at your tablet in the Kiosk Device field:
- Configure screen for Kiosk Device: set Color scheme to Dark and Brightness % to something low like
15. - Configure screensaver for Kiosk Device: set Timer in minutes to
2. - Set volume for Kiosk Device: set Volume % to
20.
- Configure screen for Kiosk Device: set Color scheme to Dark and Brightness % to something low like
- When: the same The time is… trigger, set to
08:00. - Then: the same three cards with daytime values, a Light colour scheme, higher brightness, a longer timer, and a higher volume.
Know when a device goes offline
Get an alert if a device drops off the network, after a crash, a reboot, or a Wi-Fi drop, so a dark screen doesn’t go unnoticed.Home Assistant
Home Assistant
There’s no dedicated offline sensor. Instead, an offline device’s entities read
unavailable, so trigger on any one of them changing to unavailable. The for delay avoids alerting on a brief blip.Homey
Homey
- When: Kiosk Device went offline. Set Kiosk Device to Any device so one flow watches them all, or pick a single tablet to watch just that one.
- Then: a notification card, for example Send a push notification. Put the trigger’s Device name tag in the message, like
[Device name] has gone offline, so it names whichever tablet dropped.