## Hardware
- Samsung or Lenovo Tablet with at least Android 9
## Requirements
- wake on touch?
- Should be something Android built in
- Power saving mode/ battery limit around 80% to help with battery health
## OS
- https://www.fully-kiosk.com
- around 8$ one-time payment for full license
- kiosk mode that opens specific web page
- motion detection
- integration into Homeassistant through plugin
## Automation for battery saving
### Turn off when over 80%
```yaml
alias: Tablet_AutoCharge_Off
description: ""
triggers:
- type: battery_level
device_id: 03eac0562da4987cb02447892e09bc1f
entity_id: 7a659585ebc9270cc858aa402eb36912
domain: sensor
trigger: device
above: 80
for:
hours: 0
minutes: 0
seconds: 1
conditions: []
actions:
- action: switch.turn_off
metadata: {}
data: {}
target:
device_id: eee418a1b78e4cfb6eeae07f7b0f0d93
mode: single
```
### Turn on when under 60
```yaml
alias: Tablet_AutoCharge_On
description: ""
triggers:
- type: battery_level
device_id: 03eac0562da4987cb02447892e09bc1f
entity_id: 7a659585ebc9270cc858aa402eb36912
domain: sensor
trigger: device
below: 60
for:
hours: 0
minutes: 0
seconds: 1
conditions: []
actions:
- action: switch.turn_on
metadata: {}
data: {}
target:
device_id: eee418a1b78e4cfb6eeae07f7b0f0d93
mode: single
```
## 🔗Resources