diff --git a/addons/git_pull/index.html b/addons/git_pull/index.html index 328b4e9e69..23e13fe8e6 100644 --- a/addons/git_pull/index.html +++ b/addons/git_pull/index.html @@ -82,7 +82,17 @@ "repeat": { "active": false, "interval": 300 - } + }, + "deployment_key": [ +"-----BEGIN RSA PRIVATE KEY-----", +"MIIEowIBAAKCAQEAv3hUrCvqGZKpXQ5ofxTOuH6pYSOZDsCqPqmaGBdUzBFgauQM", +"xDEcoODGHIsWd7t9meAFqUtKXndeiKjfP0MMKsttnDohL1kb9mRvHre4VUqMsT5F", +"...", +"i3RUtnIHxGi1NqknIY56Hwa3id2yk7cEzvQGAAko/t6PCbe20AfmSQczs7wDNtBD", +"HgXRyIqIXHYk2+5w+N2eunURIBqCI9uWYK/r81TMR6V84R+XhtvM", +"-----END RSA PRIVATE KEY-----" + ], + "deployment_key_protocol": "rsa" } @@ -91,6 +101,17 @@
<user>@<host>:<repository path>
.deployment_key_protocol (Optional): The key protocol. Default is “rsa”. Valid protocols are:
+The protocol is typically known by the suffix of the private key –e.g., a key file named id_rsa
will be a private key using “rsa” protocol.
The webostv
platform allows you to control a LG webOS Smart TV.
When the TV is first connected, you will need to accept Home Assistant on the TV to allow communication.
+To begin with enable LG Connect Apps feature in Network settings of the TV instructions.
+Once basic configuration is added to your configuration.yaml
Configuration card should prompt on your HA’s States. Follow the instructions and accept pairing request on your TV.
Pairing information will be saved to the filename:
provided in configuration; this process is IP sensitive, in case the IP address of your TV would change in future.
To add a TV to your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
media_player:
@@ -91,18 +95,17 @@
filename (Optional): The filename where the pairing key with the TV should be stored. This path is relative to Home Assistant’s config directory. It defaults to webostv.conf
.
customize array (Optional): List of options to customize.
- - sources array (Optional*): List of hardware inputs.
+ - sources array (Optional*): List of hardware and webOS App inputs.
-If you do not specify host:
, all LG webOS Smart TVs within your network will be auto-discovered if they use the default name setting of [LG] webOS TV
.
-Home Assistant is able to turn on a LG webOS Smart TV if you specify an action, like HDMI-CEC or WakeOnLan.
+If you do not specify host:
, all LG webOS Smart TVs within your network will be auto-discovered.
A full configuration example will look like the sample below:
# Example configuration.yaml entry
media_player:
- platform: webostv
host: 192.168.0.10
- name: Living Room TV
+ name: Living Room TV
timeout: 5
filename: webostv.conf
turn_on_action:
@@ -117,6 +120,27 @@ Home Assistant is able to turn on a LG webOS Smart TV if you specify an action,
- netflix
+** avoid using [ ]
in the name:
of your device.
+Turn On Action
+Home Assistant is able to turn on a LG webOS Smart TV if you specify an action, like HDMI-CEC or WakeOnLan.
+Common for webOS 3.0 and higher would be to use WakeOnLan feature.
+To use this feature your TV should be connected to your network via Ethernet rather than Wireless and you should enable LG Connect Apps feature in Network settings of the TV instructions (or Mobile App in General settings for older models) (*may vary by version).
+# Example configuration.yaml entry
+wake_on_lan: # enables `wake_on_lan` domain
+
+media_player:
+ - platform: webostv
+ host: 192.168.0.10
+ #other settings
+ turn_on_action:
+ service: wake_on_lan.send_magic_packet
+ data:
+ mac: B4:E6:2A:1E:11:0F
+
+
+Any other actions to power on the device can be configured.
+Sources
+To obtain complete list of available sources currently configured on the TV, once the webOS TV is configured and linked, while its powered on head to the Developer Tools > States, find your media_player.<name>
and use the sources listed in source_list:
remembering to split them per line into your sources:
configuration.