From d2f8a8c283258e3bdd83a9b1b5461774a19cc8f5 Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Mon, 15 Nov 2021 12:42:31 +0000 Subject: [PATCH] System Bridge - Keyboard Services Docs (#20185) --- source/_integrations/system_bridge.markdown | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/source/_integrations/system_bridge.markdown b/source/_integrations/system_bridge.markdown index 56c068f290f..633c9d030d5 100644 --- a/source/_integrations/system_bridge.markdown +++ b/source/_integrations/system_bridge.markdown @@ -132,3 +132,25 @@ data: bridge: "device" path: "steam://rungameid/814380" ``` + +### Service `system_bridge.send_keypress` + +Send a keypress to the server. + +```yaml +service: system_bridge.send_keypress +data: + bridge: "device" + key: "a" +``` + +### Service `system_bridge.send_text` + +Sends text for the server to type. + +```yaml +service: system_bridge.send_text +data: + bridge: "device" + text: "Hello" +```