Shelly wall display toggle display on and off

Hello guys,
I just go three of the Shelly wall displays. They look great and the integration in homeassistant was very easy.

Now im looking for a way to toggle the display on and off. Like the fully kiosk browser.

I’m planing to put one display next to my bed and it would be awesome if i could turn it on and off with my good morning and good night script.

If any of you did something like this, please let me know :slight_smile:

Have a look here: https://community.shelly.cloud/topic/1793-walldisplay-list-for-useful-rpc-commands/page/2/#comment-28193

You can add this in your configuration.yaml and
use it in an automation.

rest_command:
  wd_bureau_on:
    url: 'http://192.168.0.43/rpc/Ui.Screen.Set?params={"on":true}'
    method: get
  wd_bureau_off:
    url: 'http://192.168.0.43/rpc/Ui.Screen.Set?params={"on":false}'
    method: get
  wd_bureau_brightness_100:
    url: 'http://192.168.0.43/rpc/Ui.SetConfig?config={"brightness":{"level":100,"auto":false}}'
    method: get

To turn the screen on with max brightness, you can use the brichtness setting, not the “on” setting. When your screen is set to auto it wil default to 37% or something.

You can use RPC commands