-
-
Notifications
You must be signed in to change notification settings - Fork 13
Screen Control
Ava provides screen control features including brightness, orientation, keep screen on, and display resolution adjustment.
Screen control features allow you to manage the display remotely from Home Assistant or locally from Ava settings.
Prevent the screen from dimming or turning off.
- Go to Settings -> Device Controls -> Display
- Turn on Keep Screen On
Sync screen brightness bidirectionally between Ava and Home Assistant.
- Go to Settings -> Device Controls -> Display
- Turn on Screen Brightness
- Brightness syncs bidirectionally with HA
service: number.set_value
target:
entity_id: number.your_device_name_screen_brightness
data:
value: 128 # 0-255Show screen toggle and screen lock entities in Home Assistant.
- Go to Settings -> Device Controls -> Display
- Turn on Screen Power Controls
| Entity | Description |
|---|---|
switch.your_device_name_screen_toggle |
Toggle screen on/off |
switch.your_device_name_lock_screen |
Lock display |
Ava can lock the screen without root using Device Admin. See Permissions for setup.
Lock screen orientation to portrait, landscape, or follow system.
- Go to Settings -> Device Controls -> Display
- Turn on Force Orientation
- Choose orientation mode
| Mode | Description |
|---|---|
| Portrait | Lock to portrait |
| Landscape | Lock to landscape |
| Follow System | Use system setting |
Adjust display resolution (requires ADB or Shizuku).
- Go to Settings -> Device Controls -> Display
- Find Display Resolution
- Set the desired resolution
Note: This requires WRITE_SECURE_SETTINGS permission. Use Shizuku or ADB to grant. If it fails, authorize WRITE_SECURE_SETTINGS.
Adjust the display scale. Lower value shows more content.
- Go to Settings -> Device Controls -> Display
- Find Display Scale
- Adjust the slider
Auto-unlock the swipe lock (experimental).
- Go to Settings -> Device Controls -> Display
- Turn on Auto Unlock Swipe Lock
| Setting | Location | Description | Default |
|---|---|---|---|
| Keep Screen On | Display | Prevent screen from dimming | Off |
| Screen Brightness | Display | Sync brightness bidirectionally | Off |
| Screen Power Controls | Display | Show screen toggle and lock in HA | Off |
| Force Orientation | Display | Lock screen orientation | Off |
| Orientation Mode | Display | Portrait/Landscape/Follow System | Follow System |
| Display Resolution | Display | Adjust resolution (requires ADB) | - |
| Display Scale | Display | Lower shows more content | - |
| Auto Unlock | Display | Auto-unlock swipe lock | Off |
- Enable Screen Brightness in settings
- Check WRITE_SETTINGS permission
- Check if device supports brightness control
- Enable Screen Power Controls
- Set up Device Admin for lock without root
- Or use Shizuku/Root for lock control
- This requires WRITE_SECURE_SETTINGS permission
- Set up Shizuku (recommended) or ADB
- See Permissions for setup guide
- Enable Force Orientation
- Choose the desired mode
- Some devices may override orientation settings
Back to Home