From 67d663b49beadcff2ce575e028f702aa6d4bbee2 Mon Sep 17 00:00:00 2001 From: Charles Garwood Date: Mon, 10 Oct 2022 08:22:12 -0400 Subject: [PATCH] Add docs for fully_kiosk.load_url service (#24492) Co-authored-by: Franck Nijhof --- source/_integrations/fully_kiosk.markdown | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/source/_integrations/fully_kiosk.markdown b/source/_integrations/fully_kiosk.markdown index 90a2f6d4aaf..f3a83283621 100644 --- a/source/_integrations/fully_kiosk.markdown +++ b/source/_integrations/fully_kiosk.markdown @@ -67,3 +67,24 @@ The following controls are available:
The Fully Kiosk Browser app does not provide feedback on the device volume or media playback status, so we are unable to display the current volume level or playback status.
+ +## Services + +**Service `load_url`** + +You can use the service `fully_kiosk.load_url` to have the tablet open the specified URL. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ----------- | +| `device_id` | yes | Device ID (or list of device IDs) to load the URL on. +| `url` | yes | The URL to load. + +Example: + +```yaml +service: fully_kiosk.load_url +data: + url: "https://home-assistant.io" +target: + device_id: a674c90eca95eca91f6020415de07713 +```