diff --git a/source/_addons/lets_encrypt.markdown b/source/_addons/lets_encrypt.markdown index 788ef9a9358c..5453e79c7151 100644 --- a/source/_addons/lets_encrypt.markdown +++ b/source/_addons/lets_encrypt.markdown @@ -22,3 +22,13 @@ Configuration variables: - **email** (*Required*): Your email address for registration on Let's Encrypt. - **domains** (*Required*): A list of domains to create/renew the certificate. + +## {% linkable_title Home Assistant configuration %} + +Use the following configuration in Home Assistant to use the generated certificate: + +```yaml +http: + ssl_certificate: /ssl/fullchain.pem + ssl_key: /ssl/privkey.pem +``` diff --git a/source/_components/device_tracker.unifi.markdown b/source/_components/device_tracker.unifi.markdown index 69f0101354ae..f70e877e4015 100644 --- a/source/_components/device_tracker.unifi.markdown +++ b/source/_components/device_tracker.unifi.markdown @@ -31,8 +31,7 @@ Configuration variables: - **port** (*Optional*): The port of your controller's web interface. Defaults to `8443`. - **username** (*Required*: The username of an user with administrative privileges, usually `admin`. - **password** (*Required*): The password for your given admin account. -- **verify_ssl** (*Optional*): Verify the controllers SSL certificate. Defaults to True however can also be False or "path/to/custom_cert.pem". -- **site_id** (*Optional*): Allows you to specify a `site_id` for device tracking. Defaults to `default`. Found in the URL of the controller (i.e. https://CONTROLLER:PORT/manage/site/SITE_ID/dashboard) -- **verify_ssl** (*Optional*): Controls if the SSL certificate running on your Unifi webserver must be trusted by a known Certificate Authority on the server running Home Assistant. Defaults to 'True'. +- **site_id** (*Optional*): Allows you to specify a `site_id` for device tracking. Defaults to `default`. Found in the URL of the controller (i.e. https://CONTROLLER:PORT/manage/site/SITE_ID/dashboard). +- **verify_ssl** (*Optional*): Controls if the SSL certificate running on your Unifi webserver must be trusted by a known Certificate Authority on the server running Home Assistant. Defaults to 'True' but can also be a value that points to your custom cert "path/to/custom_cert.pem". See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked. diff --git a/source/_components/discovery.markdown b/source/_components/discovery.markdown index 0b099a523527..ac3f6e578269 100644 --- a/source/_components/discovery.markdown +++ b/source/_components/discovery.markdown @@ -31,6 +31,7 @@ Home Assistant can discover and automatically configure zeroconf/mDNS and uPnP d * Linn / Openhome * Denon Network Receivers * Bose Soundtouch speakers + * IKEA Trådfri (Tradfri) It will be able to add Google Chromecasts and Belkin WeMo switches automatically, for Philips Hue it will require some configuration from the user. @@ -49,22 +50,23 @@ Configuration variables: - **ignore** (*Optional*): A list of platforms that never will be automatically configured by `discovery`. Valid values for ignore are: - * philips_hue: (Philips Hue) - * google_cast: (Google Chromecast) - * panasonic_viera: (Panasonic Viera) - * plex_mediaserver: (Plex media server) - * roku: (Roku media player) - * sonos: (Sonos Speakers) - * yamaha: (Yamaha media player) - * logitech_mediaserver: (Logitech media server - Squeezebox player) - * directv: (DirecTV) - * denonavr: (Denon Network Receivers) - * samsung_tv: (Samsung TV) - * yeelight: (Yeelight Sunflower Bulb) - * flux_led: (Flux Led/MagicLight) - * apple_tv: (Apple TV) - * openhome: (Linn / Openhome) + * `apple_tv`: Apple TV + * `denonavr`: Denon Network Receivers + * `directv`: DirecTV + * `flux_led`: Flux Led/MagicLight + * `google_cast`: Google Chromecast + * `ikea_tradfri`: IKEA Trådfri + * `logitech_mediaserver`: Logitech media server - Squeezebox player + * `openhome`: Linn / Openhome + * `panasonic_viera`: Panasonic Viera + * `philips_hue`: Philips Hue + * `plex_mediaserver`: Plex media server + * `roku`: Roku media player + * `samsung_tv`: (Samsung TV + * `sonos`: Sonos Speakers + * `yamaha`: Yamaha media player + * `yeelight`: Yeelight Sunflower Bulb

Home Assistant must be on the same network as the devices for uPnP discovery to work. diff --git a/source/_components/media_player.sonos.markdown b/source/_components/media_player.sonos.markdown index 3d02389e661e..2938c1e2fda4 100644 --- a/source/_components/media_player.sonos.markdown +++ b/source/_components/media_player.sonos.markdown @@ -107,3 +107,15 @@ Clear the sleep timer on a speaker, if one is set. | ---------------------- | -------- | ----------- | | `entity_id` | no | String or list of `entity_id`s that will have their timers cleared. Must be a coordinator speaker. +### {% linkable_title Service `sonos_update_alarm` %} + +Update an existing sonos alarm. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ----------- | +| `entity_id` | no | String or list of `entity_id`s that will have their timers cleared. Must be a coordinator speaker. +| `alarm_id` | no | Integer that is used in Sonos to refer to your alarm. +| `time` | yes | Time to set the alarm. +| `volume` | yes | Float for volume level. +| `enabled` | yes | Boolean for whether or not to enable this alarm. +| `include_linked_zones` | yes | Boolean that defines if the alarm also plays on grouped players. diff --git a/source/_components/plant.markdown b/source/_components/plant.markdown index 7c01fca04e8a..fcc9bcc8b93d 100644 --- a/source/_components/plant.markdown +++ b/source/_components/plant.markdown @@ -21,10 +21,10 @@ plant: name_of_your_plant: sensors: moisture: sensor.my_sensor_moisture - battery: sensor.my_sensor_moisture_battery - temperature: sensor.my_sensor_moisture_temperature - conductivity: sensor.my_sensor_moisture_conductivity - brightness: sensor.my_sensor_moisture_brightness + battery: sensor.my_sensor_battery + temperature: sensor.my_sensor_temperature + conductivity: sensor.my_sensor_conductivity + brightness: sensor.my_sensor_brightness min_moisture: 20 ``` diff --git a/source/_includes/asides/hassio_navigation.html b/source/_includes/asides/hassio_navigation.html index b779b60a51da..0b7d9e04d815 100644 --- a/source/_includes/asides/hassio_navigation.html +++ b/source/_includes/asides/hassio_navigation.html @@ -16,6 +16,7 @@

Topics

  • {% active_link /hassio/addon_development/ Add-on Development %}