mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
commit
b53a4aa54a
@ -142,12 +142,12 @@ social:
|
||||
|
||||
# Home Assistant release details
|
||||
current_major_version: 0
|
||||
current_minor_version: 48
|
||||
current_patch_version: 1
|
||||
date_released: 2017-07-05
|
||||
current_minor_version: 49
|
||||
current_patch_version: 0
|
||||
date_released: 2017-07-16
|
||||
|
||||
# Either # or the anchor link to latest release notes in the blog post.
|
||||
# Must be prefixed with a # and have double quotes around it.
|
||||
# Major release:
|
||||
patch_version_notes: "#release-0481---july-5"
|
||||
patch_version_notes: "#"
|
||||
# Minor release (Example #release-0431---april-25):
|
||||
|
63
source/_components/amcrest.markdown
Normal file
63
source/_components/amcrest.markdown
Normal file
@ -0,0 +1,63 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Amcrest IP Camera"
|
||||
description: "Instructions how to integrate Amcrest IP cameras within Home Assistant."
|
||||
date: 2017-06-24 10:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: amcrest.png
|
||||
ha_category: Hub
|
||||
ha_iot_class: "Local Polling"
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
The `amcrest` platform allows you to integrate your [Amcrest](https://amcrest.com/) IP camera in Home Assistant.
|
||||
|
||||
To enable your camera in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
amcrest:
|
||||
- host: IP_ADDRESS
|
||||
username: USERNAME
|
||||
password: PASSWORD
|
||||
sensors:
|
||||
- motion_detector
|
||||
- sdcard
|
||||
|
||||
- host: IP_ADDRESS
|
||||
username: USERNAME
|
||||
password: PASSWORD
|
||||
resolution: low
|
||||
stream_source: snapshot
|
||||
sensors:
|
||||
- ptz_preset
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The IP address or hostname of your camera. If using hostname, make sure the DNS works as expected.
|
||||
- **username** (*Required*): The username for accessing your camera.
|
||||
- **password** (*Required*): The password for accessing your camera.
|
||||
- **name** (*Optional*): This parameter allows you to override the name of your camera. The default is "Amcrest Camera".
|
||||
- **port** (*Optional*): The port that the camera is running on. The default is 80.
|
||||
- **resolution** (*Optional*): This parameter allows you to specify the camera resolution. For a high resolution (1080/720p), specify the option `high`. For VGA resolution (640x480p), specify the option `low`. If omitted, it defaults to *high*.
|
||||
- **stream_source** (*Optional*): The data source for the live stream. `mjpeg` will use the camera's native MJPEG stream, whereas `snapshot` will use the camera's snapshot API to create a stream from still images. You can also set the `rtsp` option to generate the streaming via RTSP protocol. If omitted, it defaults to *snapshot*.
|
||||
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g. image quality or video filter options.
|
||||
- **authentication**: (*Optional*): Defines which authentication method to use only when **stream_source** is **mjpeg**. Currently *aiohttp* only support *basic*. It defaults to *basic*.
|
||||
- **scan_interval** (*Optional*): Defines the update interval of the sensor in seconds. The default is 10 seconds.
|
||||
- **sensors** array (*Optional*): Conditions to display in the frontend. By default, *none* of the conditions are enabled. The following conditions can be monitored.
|
||||
- **motion_detector**: Return True/False when a motion is detected
|
||||
- **sdcard**: Return the SD card usage by reporting the total and used space
|
||||
- **ptz_preset**: Return the number of PTZ preset positions configured for the given camera
|
||||
|
||||
**Note:** Amcrest cameras with newer firmwares no longer have the ability to stream `high` definition video with MJPEG encoding. You may need to use `low` resolution stream or the `snapshot` stream source instead. If the quality seems too poor, lower the `Frame Rate (FPS)` and max out the `Bit Rate` settings in your camera's configuration manager. If you defined the *stream_source* to **mjpeg**, make sure your camera supports *Basic* HTTP authentication. Newer Amcrest firwmares may not work, then **rtsp** is recommended instead.
|
||||
|
||||
**Note:** If you set the `stream_source` option to `rtsp`, make sure to follow the steps mentioned at
|
||||
[FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation to install the `ffmpeg`.
|
||||
|
||||
Finish its configuration by visiting the [Amcrest sensor page](/components/sensor.amcrest/) or [Amcrest camera page](/components/camera.amcrest/).
|
||||
|
||||
To check if your Amcrest camera is supported/tested, visit the [supportability matrix](https://github.com/tchellomello/python-amcrest#supportability-matrix) link from the `python-amcrest` project.
|
@ -50,21 +50,23 @@ axis:
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **device** (*Required*): Unique name for the Axis device.
|
||||
- **host** (*Required*): The IP address to your Axis device.
|
||||
- **username** (*Optional*): The username to your Axis device. Defaults to `root`.
|
||||
- **password** (*Optional*): The password to your Axis device. Defaults to `pass`.
|
||||
- **trigger_time** (*Optional*): Minimum time (in seconds) a sensor should keep its positive value. Defaults to 0.
|
||||
- **location** (*Optional*): Physical location of your Axis device. Default not set.
|
||||
- **include** (*Required*): This cannot be empty else there would be no use adding the device at all.
|
||||
- **camera**: Stream MJPEG video to Home Assistant.
|
||||
- **motion**: The built-in motion detection in Axis cameras.
|
||||
- **vmd3**: ACAP Motion Detection app which has better algorithms for motion detection.
|
||||
- **pir**: PIR sensor that can trigger on motion.
|
||||
- **sound**: Sound detector.
|
||||
- **daynight**: Certain cameras have day/night mode if they have built-in IR lights.
|
||||
- **tampering**: Signals when camera believes that it has been tampered with.
|
||||
- **input**: Trigger on whatever you have connected to device input port.
|
||||
## {% linkable_title Configuration variables %}
|
||||
|
||||
- **device** (*Required*): Unique name
|
||||
- **host** (*Required*): The IP address to your Axis device.
|
||||
- **username** (*Optional*): The username to your Axis device. Default 'root'.
|
||||
- **password** (*Optional*): The password to your Axis device. Default 'pass'.
|
||||
- **trigger_time** (*Optional*): Minimum time (in seconds) a sensor should keep its positive value. Default 0.
|
||||
- **location** (*Optional*): Physical location of your Axis device. Default not set.
|
||||
- **include** (*Required*): This cannot be empty else there would be no use adding the device at all.
|
||||
- **camera**: Stream MJPEG video to Home Assistant.
|
||||
- **motion**: The built-in motion detection in Axis cameras.
|
||||
- **vmd3**: ACAP Motion Detection app which has better algorithms for motion detection.
|
||||
- **pir**: PIR sensor that can trigger on motion.
|
||||
- **sound**: Sound detector.
|
||||
- **daynight**: Certain cameras have day/night mode if they have built-in IR lights.
|
||||
- **tampering**: Signals when camera believes that it has been tampered with.
|
||||
- **input**: Trigger on whatever you have connected to device input port.
|
||||
|
||||
A full configuration example could look like this:
|
||||
|
||||
@ -85,6 +87,10 @@ axis:
|
||||
location: köket
|
||||
```
|
||||
|
||||
<p class='note'>
|
||||
If you are using Python3.6 you might need to replace the 34m with 36m in the _gi.*.so filename in the gi folder.
|
||||
</p>
|
||||
|
||||
<p class='note'>
|
||||
Any specific levels for triggers needs to be configured on the device.
|
||||
</p>
|
||||
@ -92,3 +98,18 @@ Any specific levels for triggers needs to be configured on the device.
|
||||
<p class='note'>
|
||||
It is recommended that you create a user on your Axis device specifically for Home Assistant. For all current functionality it is enough to create a user belonging to user group viewer.
|
||||
</p>
|
||||
|
||||
## {% linkable_title Device services %}
|
||||
Available services: `vapix_call`.
|
||||
|
||||
#### {% linkable_title Service `axis/vapix_call` %}
|
||||
Send a command using [Vapix](https://www.axis.com/support/developer-support/vapix). For details please read the API specifications.
|
||||
|
||||
| Service data attribute | Optional | Description |
|
||||
|---------------------------|----------|--------------------------------------------------|
|
||||
| `name` | no | Name of device to communicate with. |
|
||||
| `param` | no | What parameter to operate on. |
|
||||
| `cgi` | yes | Which cgi to call on device. Default is `param.cgi`. |
|
||||
| `action` | yes | What type of call. Default is `update`. |
|
||||
|
||||
Response to call can be subscribed to on event `vapix_call_response`
|
||||
|
@ -20,18 +20,30 @@ Two type of pilight binary sensor configuration available. A normal sensor which
|
||||
# Example configuration.yml entry
|
||||
binary_sensor:
|
||||
- platform: pilight
|
||||
name: 'Motion'
|
||||
variable: 'state'
|
||||
payload:
|
||||
unitcode: 371399
|
||||
payload_on: 'closed'
|
||||
disarm_after_trigger: True <-- use this if you want trigger type behavior
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **variable** (*Required*): The variable name in the data stream that defines the sensor value.
|
||||
- **payload** (*Required*): Message payload identifiers. Only if all identifiers are matched the sensor value is set.
|
||||
- **name** (*Optional*): Name of the sensor.
|
||||
- **payload_on** (*Optional*): Variable `on` value. The component will recognize this as logical '1'.
|
||||
- **payload_off** (*Optional*): Variable `off` value. The component will recognize this as logical '0'.
|
||||
- **disarm_after_trigger:** (*Optional*): Configure sensor as trigger type.
|
||||
- **reset_delay_sec** (*Optional*): Seconds before the sensor is disarmed if `disarm_after_trigger` is set to true. Default is 30 seconds.
|
||||
|
||||
A full configuration example could look like this:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yml entry
|
||||
binary_sensor:
|
||||
- platform: pilight
|
||||
name: 'Motion'
|
||||
variable: 'state'
|
||||
payload:
|
||||
unitcode: 371399
|
||||
payload_on: 'closed'
|
||||
disarm_after_trigger: True
|
||||
reset_delay_sec: 30
|
||||
```
|
||||
|
@ -13,33 +13,14 @@ ha_iot_class: "Local Polling"
|
||||
ha_release: 0.34
|
||||
---
|
||||
|
||||
The `amcrest` platform allows you to integrate your [Amcrest](https://amcrest.com/) IP camera in Home Assistant.
|
||||
To get your [Amcrest](https://amcrest.com/) cameras working within Home Assistant, please follow the instructions for the general [Amcrest component](/components/amcrest).
|
||||
|
||||
To enable your camera in your installation, add the following to your `configuration.yaml` file:
|
||||
Once you have enabled the [Amcrest component](/components/amcrest), add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
camera:
|
||||
- platform: amcrest
|
||||
host: IP_ADDRESS
|
||||
username: USERNAME
|
||||
password: PASSWORD
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The IP address or hostname of your camera. If using hostname, make sure the DNS works as expected.
|
||||
- **username** (*Required*): The username for accessing your camera.
|
||||
- **password** (*Required*): The password for accessing your camera.
|
||||
- **name** (*Optional*): This parameter allows you to override the name of your camera. The default is "Amcrest Camera".
|
||||
- **port** (*Optional*): The port that the camera is running on. The default is 80.
|
||||
- **resolution** (*Optional*): This parameter allows you to specify the camera resolution. For a high resolution (1080/720p), specify the option `high`. For VGA resolution (640x480p), specify the option `low`. If omitted, it defaults to *high*.
|
||||
- **stream_source** (*Optional*): The data source for the live stream. `mjpeg` will use the camera's native MJPEG stream, whereas `snapshot` will use the camera's snapshot API to create a stream from still images. You can also set the `rtsp` option to generate the streaming via RTSP protocol. If omitted, it defaults to *mjpeg*.
|
||||
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g. image quality or video filter options.
|
||||
|
||||
**Note:** Amcrest cameras with newer firmwares no longer have the ability to stream `high` definition video with MJPEG encoding. You may need to use `low` resolution stream or the `snapshot` stream source instead. If the quality seems too poor, lower the `Frame Rate (FPS)` and max out the `Bit Rate` settings in your camera's configuration manager.
|
||||
|
||||
**Note:** If you set the `stream_source` option to `rtsp`, make sure to follow the steps mentioned at
|
||||
[FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation to install the `ffmpeg`.
|
||||
|
||||
To check if your Amcrest camera is supported/tested, visit the [supportability matrix](https://github.com/tchellomello/python-amcrest#supportability-matrix) link from the `python-amcrest` project.
|
||||
|
@ -36,9 +36,9 @@ cover:
|
||||
Configuration variables:
|
||||
|
||||
- **covers** array (*Required*): List of your coverss.
|
||||
- **open_cover** (*Required*): Defines an [action](/getting-started/automation/) to run when the cover is opened.
|
||||
- **close_cover** (*Required*): Defines an [action](/getting-started/automation/) to run when the cover is closed.
|
||||
- **stop_cover** (*Required*): Defines an [action](/getting-started/automation/) to run when the cover is stopped.
|
||||
- **open_cover** (*Optional*): Defines an [action](/getting-started/automation/) to run when the cover is opened. If `open_cover` is specified, `close_cover` must also be specified. At least one of `open_cover` and `set_cover_position` must be specified.
|
||||
- **close_cover** (*Optional*): Defines an [action](/getting-started/automation/) to run when the cover is closed.
|
||||
- **stop_cover** (*Optional*): Defines an [action](/getting-started/automation/) to run when the cover is stopped.
|
||||
- **set_cover_position** (*Optional*): Defines an [action](/getting-started/automation/) to run when the cover is set to a specific value (between 0 and 100).
|
||||
- **set_cover_tilt_position** (*Optional*): Defines an [action](/getting-started/automation/) to run when the cover tilt is set to a specific value (between 0 and 100).
|
||||
- **friendly_name** (*Optional*): Name to use in the frontend.
|
||||
|
@ -21,12 +21,10 @@ To use a Connect Box in your installation, add the following to your `configurat
|
||||
# Example configuration.yaml entry
|
||||
device_tracker:
|
||||
- platform: upc_connect
|
||||
password: YOUR_PASSWORD
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **password** (*Required*): The password for your Connect Box.
|
||||
- **host** (*Optional*): The IP address of your router. Set it if you are not using `192.168.0.1`.
|
||||
|
||||
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
||||
|
@ -17,3 +17,22 @@ This offers the official frontend to control Home Assistant.
|
||||
# Example configuration.yaml entry
|
||||
frontend:
|
||||
```
|
||||
|
||||
#### Themes
|
||||
Starting with version 0.49 you can define themes:
|
||||
|
||||
Example:
|
||||
```yaml
|
||||
frontend:
|
||||
themes:
|
||||
happy:
|
||||
primary-color: pink
|
||||
sad:
|
||||
primary-color: blue
|
||||
```
|
||||
|
||||
The example above defined two themes named `happy` and `sad`. For each theme you can set values for CSS variables. For a partial list of variables used by the main frontend see [ha-style.html](https://github.com/home-assistant/home-assistant-polymer/blob/master/src/resources/ha-style.html)
|
||||
|
||||
There are 2 themes-related services:
|
||||
- `frontend.reload_themes` - reloads theme configuration from yaml.
|
||||
- `frontend.set_theme(name)` - sets backend-preferred theme name.
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Home Assistant 0.48"
|
||||
title: "Home Assistant 0.49"
|
||||
description: ""
|
||||
date: 2016-12-16 17:00
|
||||
sidebar: true
|
||||
@ -9,7 +9,7 @@ sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_category: Other
|
||||
ha_release: 0.48
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
Details about the latest release can always be found at:
|
||||
|
19
source/_components/lametric.markdown
Normal file
19
source/_components/lametric.markdown
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
layout: page
|
||||
title: "LaMetric"
|
||||
description: "Instructions on how to integrate LaMetric with Home Assistant."
|
||||
date: 2017-04-02 13:28
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Hub
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
```yaml
|
||||
# configuration.yaml example
|
||||
lametric:
|
||||
client_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
|
||||
client_secret: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||
```
|
@ -21,11 +21,11 @@ _Please note, the `lifx` platform does not support Windows. The `lifx_legacy` pl
|
||||
# Example configuration.yaml entry
|
||||
light:
|
||||
- platform: lifx
|
||||
server: 192.168.1.10
|
||||
```
|
||||
Configuration variables:
|
||||
|
||||
- **server** (*Optional*): Your server address. Only needed if using more than one network interface. Omit if you are unsure.
|
||||
- **broadcast** (*Optional*): The broadcast address for discovering lights. Only needed if using more than one network interface. Omit if you are unsure.
|
||||
- **server** (*Optional*): Your server address. Will listen on all interfaces if omitted. Omit if you are unsure.
|
||||
|
||||
## {% linkable_title Set state %}
|
||||
|
||||
|
@ -49,18 +49,20 @@ Device configuration variables:
|
||||
|
||||
- **name** (*Optional*): Name for the device, defaults to Rflink ID.
|
||||
- **type** (*Optional*): Override automatically detected type of the light device, can be: switchable, dimmable, hybrid or toggle. See 'Light Types' below. (default: Switchable)
|
||||
- **aliasses** (*Optional*): Alternative Rflink ID's this device is known by.
|
||||
- **aliases** (*Optional*): Alternative Rflink ID's this device is known by.
|
||||
- **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False).
|
||||
- **signal_repetitions** (*Optional*): Repeat every Rflink command this number of times (default: 1).
|
||||
- **fire_event_** (*Optional*): Set default `fire_event` for RFLink switch devices (see below).
|
||||
- **signal_repetitions** (*Optional*): Set default `signal_repetitions` for RFLink switch devices (see below).
|
||||
|
||||
- **group** (*Optional*): Allow light to respond to group commands (ALLON/ALLOFF). (default: yes)
|
||||
- **group_aliases** (*Optional*): `aliases` which only respond to group commands.
|
||||
- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands.
|
||||
|
||||
### {% linkable_title Light state %}
|
||||
|
||||
Initially the state of a light is unknown. When the light is turned on or off (via frontend or remote) the state is known and will be shown in the frontend.
|
||||
|
||||
Sometimes a light is controlled by multiple remotes, each remote has its own code programmed in the light. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliasses:
|
||||
Sometimes a light is controlled by multiple remotes, each remote has its own code programmed in the light. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliases:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
@ -69,7 +71,7 @@ light:
|
||||
devices:
|
||||
newkaku_0000c6c2_1:
|
||||
name: Living room
|
||||
aliasses:
|
||||
aliases:
|
||||
- newkaku_000000001_2
|
||||
- kaku_000001_a
|
||||
Ansluta_ce30_0:
|
||||
|
37
source/_components/media_extractor.markdown
Normal file
37
source/_components/media_extractor.markdown
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Media Extractor"
|
||||
description: "Instructions how to integrate the Media Extrator into Home Assistant."
|
||||
date: 2017-07-12 07:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_category: Media Player
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
|
||||
The `media_extractor` component gets an stream URL and send it to a media player entity.
|
||||
|
||||
To use the media extrator service in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
media_extractor:
|
||||
```
|
||||
|
||||
### {% linkable_title Use the service %}
|
||||
|
||||
Go the the "Developer Tools", then to "Call Service", and choose `media_extractor/play_media` from the list of available services. Fill the "Service Data" field as shown in the example below and hit "CALL SERVICE".
|
||||
|
||||
This will download the file from the given URL.
|
||||
|
||||
| Service data attribute | Optional | Description |
|
||||
| ---------------------- | -------- | ----------- |
|
||||
| `entity_id` | yes | Name(s) of entities to seek media on, eg. `media_player.living_room_chromecast`. Defaults to all.
|
||||
| `media_content_id` | no | The ID of the content to play. Platform dependent.
|
||||
| `media_content_type` | no | The type of the content to play. Must be one of MUSIC, TVSHOW, VIDEO, EPISODE, CHANNEL or PLAYLIST MUSIC.
|
||||
|
||||
|
@ -14,7 +14,7 @@ ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
|
||||
The `onkyo` platform allows you to control a [Onkyo receiver](http://www.onkyo.com/) from Home Assistant.
|
||||
The `onkyo` platform allows you to control a [Onkyo receiver](http://www.onkyo.com/) from Home Assistant. Please be aware that you need to enable "Network Standby" for this component to work in your Hardware.
|
||||
|
||||
To add an Onkyo receiver to your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
|
@ -52,7 +52,7 @@ Configuration variables:
|
||||
You can switch between one of your 6 pre-configured presets using ```media_player.play_media```
|
||||
|
||||
```yaml
|
||||
# Play media in configuration.yaml
|
||||
# Play media preset
|
||||
- service: media_player.play_media
|
||||
data:
|
||||
entity_id: media_player.soundtouch_living_room
|
||||
@ -60,6 +60,23 @@ You can switch between one of your 6 pre-configured presets using ```media_playe
|
||||
media_content_type: PLAYLIST
|
||||
```
|
||||
|
||||
You can also play HTTP (not HTTPS) URLs:
|
||||
|
||||
```yaml
|
||||
# Play media URL
|
||||
- service: media_player.play_media
|
||||
data:
|
||||
entity_id: media_player.soundtouch_living_room
|
||||
media_content_id: http://example.com/music.mp3
|
||||
media_content_type: MUSIC
|
||||
```
|
||||
|
||||
### {% linkable_title Text-to-Speech services %}
|
||||
|
||||
You can use TTS services like [Google Text-to-Speech](/components/tts.google/) or [Amazon Polly](/components/tts.amazon_polly) only if your Home Assistant is configured in HTTP and not HTTPS (current device limitation, a firmware upgrade is planned).
|
||||
|
||||
A workaround if you want to publish your Home Assistant installation on Internet in SSL is to configure an HTTPS Web Server as a reverse proxy ([nginx](/docs/ecosystem/nginx/) for example) and let your Home Assistant configuration in HTTP on your local network. The Soundtouch devices will be available to access the TTS files in HTTP in local and your configuration will be in HTTPS on the Internet.
|
||||
|
||||
### {% linkable_title Service `soundtouch_play_everywhere` %}
|
||||
|
||||
Create a multi-room (zone) from a master and play same content on all other
|
||||
|
93
source/_components/media_player.vizio.markdown
Normal file
93
source/_components/media_player.vizio.markdown
Normal file
@ -0,0 +1,93 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Vizio SmartCast TV"
|
||||
description: "Instructions how to integrate Vizio SmartCast TV into Home Assistant."
|
||||
date: 2017-07-10 19:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: vizio-smartcast.png
|
||||
ha_category: Media Player
|
||||
featured: true
|
||||
ha_release: 0.49
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
The `vizio` component will allow you to control [SmartCast](https://www.vizio.com/smartcast-app) compatible TVs (2016+ models).
|
||||
|
||||
## Pairing
|
||||
|
||||
Before adding TV to Home Assistant you'll need to pair it manually, to do so follow these steps:
|
||||
|
||||
Install the command-line tool using pip (you can choose to download it manually):
|
||||
|
||||
```bash
|
||||
$ pip3 install git+https://github.com/vkorn/pyvizio.git@master
|
||||
$ pip3 install -I .
|
||||
```
|
||||
|
||||
Make sure that your TV is on, as sometimes it won't show PIN code if it wasn't on during pairing initialization.
|
||||
If you don't know IP address of your TV run following command:
|
||||
|
||||
```bash
|
||||
$ pyvizio --ip=0 --auth=0 discover
|
||||
```
|
||||
|
||||
Initiate pairing:
|
||||
|
||||
```bash
|
||||
$ pyvizio --ip={ip} pair
|
||||
```
|
||||
|
||||
Initiation will show you two different values:
|
||||
|
||||
| Value | Description |
|
||||
|:----------------|:---------------------|
|
||||
| Challenge type | Usually it's should be `"1"`, if it's not the case for you, use additional parameter `--ch_type=your_type` in the next step |
|
||||
| Challenge token | Token required to finalize pairing in the next step |
|
||||
|
||||
Finally, at this point PIN code should be displayed at the top of your TV. With all these values, you can now finish pairing:
|
||||
|
||||
```bash
|
||||
$ pyvizio --ip={ip} pair_finish --token={challenge_token} --pin={tv_pin}
|
||||
```
|
||||
|
||||
You will need authentication token returned by this command to configure Home Assistant.
|
||||
|
||||
## Configuration
|
||||
|
||||
To add your Vizio TV to your installation, add following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
media_player:
|
||||
- platform: vizio
|
||||
host: IP_ADDRESS
|
||||
access_token: AUTH_TOKEN
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): IP address of your TV.
|
||||
- **access_token** (*Required*): Authentication token you've received in last step of the pairing process.
|
||||
|
||||
## Notes and limitations
|
||||
|
||||
### Turning TV on
|
||||
|
||||
If you do have `Power Mode` of your TV configured to be `Eco Mode`, turning device ON won't work.
|
||||
|
||||
### Changing tracks
|
||||
|
||||
Changing tracks works like channels switching. If you have source other than regular TV it might end do nothing.
|
||||
|
||||
### Sources
|
||||
|
||||
Source list shows all external devices connected to the TV through HDMI plus list of internal devices (TV mode, Chrome Cast, etc.).
|
||||
|
||||
<p class='note'>
|
||||
Vizio SmartCast service is accessible through HTTPS with self-signed certificate. It means that if you have low LOGLEVEL in your Home Assistant configuration, you'll see a lot of warnings like this `InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised.`
|
||||
|
||||
As an option, you could proxy all calls for example through NGINX.
|
||||
</p>
|
@ -14,7 +14,7 @@ ha_release: 0.37
|
||||
|
||||
The [Discord service](https://discordapp.com/) is a platform for the notify component. This allows components to send messages to the user using Discord.
|
||||
|
||||
In order to get a token you need to go to the [Discord My Apps page](https://discordapp.com/developers/applications/me) and create a new application. Once the application is ready, create a [bot](https://discordapp.com/developers/docs/topics/oauth2#bots) user (**Create a Bot User**) and don't activate **Require OAuth2 Code Grant**. Retreive the **Client ID** and the (hidden) **Token** of your bot for later.
|
||||
In order to get a token you need to go to the [Discord My Apps page](https://discordapp.com/developers/applications/me) and create a new application. Once the application is ready, create a [bot](https://discordapp.com/developers/docs/topics/oauth2#bots) user (**Create a Bot User**) and activate **Require OAuth2 Code Grant**. Retreive the **Client ID** and the (hidden) **Token** of your bot for later.
|
||||
|
||||
When setting up the application you can use this [icon](https://home-assistant.io/demo/favicon-192x192.png).
|
||||
|
||||
|
20
source/_components/notify.lametric.markdown
Normal file
20
source/_components/notify.lametric.markdown
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
layout: page
|
||||
title: "LaMetric Notify"
|
||||
description: "Instructions on how to setup the LaMetric notify platform with Home Assistant."
|
||||
date: 2017-04-02 13:28
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Notify
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
```yaml
|
||||
notify:
|
||||
name: lametric1
|
||||
platform: lametric
|
||||
display_time: 20
|
||||
icon: i555
|
||||
```
|
@ -40,5 +40,47 @@ Configuration variables:
|
||||
- **username** (*Optional*): Setting username will allow Home Assistant to post to Slack using the username specified. By default not setting this will post to Slack using the user account or botname that you generated the api_key as.
|
||||
- **icon** (*Optional*): Use one of the Slack emoji's as an Icon for the supplied username. Slack uses the standard emoji sets used [here](http://www.webpagefx.com/tools/emoji-cheat-sheet/).
|
||||
|
||||
### {% linkable_title Slack service data %}
|
||||
|
||||
The following attributes can be placed `data` for extended functionality.
|
||||
|
||||
| Service data attribute | Optional | Description |
|
||||
| ---------------------- | -------- | ----------- |
|
||||
| `file` | yes | Groups the attributes for file upload. If present, either `url` or `path` have to be provided.
|
||||
| `path ` | yes | Local path of file, photo etc to post to slack. Is placed inside `file`.
|
||||
| `url` | yes | URL of file, photo etc to post to slack. Is placed inside `file`.
|
||||
| `username` | yes | Username if the url requires authentication. Is placed inside `file`.
|
||||
| `password` | yes | Password if the url requires authentication. Is placed inside `file`.
|
||||
| `auth` | yes | If set to `digest` HTTP-Digest-Authentication is used. If missing HTTP-BASIC-Authentication is used. Is placed inside `file`.
|
||||
|
||||
Example for posting file from URL
|
||||
```json
|
||||
{
|
||||
"message":"Message that will be added as a comment to the file.",
|
||||
"title":"Title of the file.",
|
||||
"data":{
|
||||
"file":{
|
||||
"url":"http://[url to file, photo, security camera etc]",
|
||||
"username":"optional user, if necessary",
|
||||
"password":"optional password, if necessary",
|
||||
"auth":"digest"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
Example for posting file from local path
|
||||
```json
|
||||
{
|
||||
"message":"Message that will be added as a comment to the file.",
|
||||
"title":"Title of the file.",
|
||||
"data":{
|
||||
"file":{
|
||||
"path":"/path/to/file.ext"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
Please note that `path` is validated against the `whitelist_external_dirs` in the `configuration.yaml`.
|
||||
|
||||
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
|
||||
|
||||
|
38
source/_components/prometheus.markdown
Normal file
38
source/_components/prometheus.markdown
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Prometheus"
|
||||
description: "Record events in Prometheus."
|
||||
date: 2017-06-25 08:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
logo: prometheus.png
|
||||
footer: true
|
||||
ha_category: "History"
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
The `prometheus` component exposes metrics in a format which [Prometheus](https://prometheus.io/) can read.
|
||||
|
||||
To use the `prometheus` component in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
prometheus:
|
||||
```
|
||||
|
||||
The Prometheus component has no configuration variables.
|
||||
|
||||
You can then configure Prometheus to fetch metrics from Home Assistant by adding to its `scrape_configs` configuration.
|
||||
|
||||
```yaml
|
||||
# Example Prometheus scrape_configs entry
|
||||
- job_name: 'hass'
|
||||
scrape_interval: 60s
|
||||
metrics_path: /api/prometheus
|
||||
params:
|
||||
api_password: ['PASSWORD']
|
||||
scheme: https
|
||||
static_configs:
|
||||
- targets: ['HOSTNAME:8123']
|
||||
```
|
19
source/_components/scene.velux.markdown
Normal file
19
source/_components/scene.velux.markdown
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Velux Scene"
|
||||
description: "Instructions on how to integrate Velux Scene with Home Assistant."
|
||||
date: 2017-07-09 12:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: velux.png
|
||||
ha_category: Scene
|
||||
ha_release: 0.49
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
|
||||
The `velux` scene platform allows you to control your [VELUX](http://www.velux.com/) windows.
|
||||
|
||||
The requirement is that you have setup the [VELUX](/components/velux/) component.
|
@ -13,34 +13,13 @@ ha_release: 0.37
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
The `amcrest` sensor allows you to integrate your [Amcrest](https://amcrest.com/) IP camera in Home Assistant.
|
||||
To get your [Amcrest](https://amcrest.com/) cameras working within Home Assistant, please follow the instructions for the general [Amcrest component](/components/amcrest).
|
||||
|
||||
To enable the `amcrest` sensors on your camera, add the following to your `configuration.yaml` file:
|
||||
Once you have enabled the [Amcrest component](/components/amcrest), add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: amcrest
|
||||
host: IP_ADDRESS
|
||||
username: USERNAME
|
||||
password: PASSWORD
|
||||
monitored_conditions:
|
||||
- motion_detector
|
||||
- sdcard
|
||||
- ptz_preset
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The IP address or hostname of your camera. If using hostname, make sure the DNS works as expected.
|
||||
- **username** (*Required*): The username for accessing your camera.
|
||||
- **password** (*Required*): The password for accessing your camera.
|
||||
- **name** (*Optional*): This parameter allows you to override the name of your camera. The default is "Amcrest Camera".
|
||||
- **port** (*Optional*): The port that the camera is running on. The default is 80.
|
||||
- **scan_interval** (*Optional*): Defines the update interval of the sensor in seconds. The default is 10 seconds.
|
||||
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
|
||||
- **motion_detector**: Return True/False when a motion is detected
|
||||
- **sdcard**: Return the SD card usage by reporting the total and used space
|
||||
- **ptz_preset**: Return the number of PTZ preset positions configured for the given camera
|
||||
|
||||
To check if your Amcrest camera is supported/tested, visit the [supportability matrix](https://github.com/tchellomello/python-amcrest#supportability-matrix) link from the `python-amcrest` project.
|
||||
|
@ -22,4 +22,4 @@ sensor:
|
||||
- platform: arwn
|
||||
```
|
||||
|
||||
Currently all temperatures, barometers, and wind sensors will be displayed. Support for rain gauge sensors will happen in the future.
|
||||
Currently all temperatures, barometers, moisture, rain, and wind sensors will be displayed.
|
||||
|
@ -15,7 +15,7 @@ ha_iot_class: "Cloud Polling"
|
||||
|
||||
|
||||
The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands.
|
||||
The relevant weatherstation used will be automatically selected based on the location specified in the Home Assistant configuration (or in the buienradar weather/sensor component).
|
||||
The relevant weatherstation used will be automatically selected based on the location specified in the Home Assistant configuration (or in the buienradar weather/sensor component). The selected weatherstation will provide all weather data, with the exception of the forecasted precipitaion. The forecasted precipitation data will be retrieved from buienradar using your actual gps-location (and not the location of the nearest weatherstation).
|
||||
|
||||
To integrate `buienradar` with Home Assistant, add the following section to your `configuration.yaml` file:
|
||||
|
||||
@ -45,16 +45,16 @@ Configuration variables:
|
||||
- **groundtemperature**: The current ground temperature (in C).
|
||||
- **windspeed**: The wind speed in m/s.
|
||||
- **windforce**: The wind speed/force in Bft.
|
||||
- **winddirection**: Where the wind is coming from in degrees, with true north at 0° and progressing clockwise.
|
||||
- **windazimuth**: Where the wind is coming from: N (North),Z (south), NO (Noth-East), etc.
|
||||
- **winddirection**: Where the wind is coming from: N (North),Z (south), NO (Noth-East), etc.
|
||||
- **windazimuth**: Where the wind is coming from in degrees, with true north at 0° and progressing clockwise.
|
||||
- **pressure**: The sea-level air pressure in hPa.
|
||||
- **visibility**: Visibility in meters (m).
|
||||
- **windgust**: The windspeed of wind gusts (m/s).
|
||||
- **precipitation**: The amount of precipitation/rain in mm/h.
|
||||
- **irradiance**: Sun intensity in Watt per square meter (W/m2).
|
||||
- **precipitation_forecast_average**: The average expected precipitation/rain in mm/h within the given timeframe.
|
||||
- **precipitation_forecast_total**: The total expected precipitation/rain in mm/h within the given timeframe.
|
||||
|
||||
- **precipitation_forecast_total**: The total expected precipitation/rain in mm within the given timeframe. The total expected rain in the configured timeframe will be equal to _precipitation_forecast_total_/_timeframe_ mm/min. So, with timeframe configured to 30 minutes and a value of 5, the expected rain is 5 mm in 30 minutes, which is the same as 10 mm/h. If timeframe is set to 90 minutes and a value of 5, the expected rain is 5 mm in 90 minutes, which is equal to 3.3 mm/h.
|
||||
- **irradiance**: Sun intensity in Watt per square meter (W/m2).
|
||||
|
||||
Full configuration example where location is manually specified:
|
||||
|
||||
```yaml
|
||||
|
46
source/_components/sensor.citybikes.markdown
Normal file
46
source/_components/sensor.citybikes.markdown
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
layout: page
|
||||
title: "CityBikes API sensor"
|
||||
description: "Instructions on how to integrate data from the CityBikes API into Home Assistant."
|
||||
date: 2017-06-25 14:20
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Sensor
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
|
||||
The `citybikes` sensor platform monitors bike availability at bike sharing stations in a chosen area. The data is provided by [CityBikes](https://citybik.es/#about), which supports bike sharing systems all around the world.
|
||||
|
||||
To enable it, add the following lines to your `configuration.yaml`:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry (using radius)
|
||||
sensor:
|
||||
- platform: citybikes
|
||||
radius: 500
|
||||
```
|
||||
|
||||
Configuration options:
|
||||
|
||||
- **name** (*Optional*): The base name of this group of monitored stations. The entity ID of every monitored station in this group will be prefixed with this base name, in addition to the network ID.
|
||||
- **network** (*Optional*): The name of the bike sharing system to poll. Defaults to the system that operates in the monitored location.
|
||||
- **latitude** (*Optional*): Latitude of the location, around which bike stations are monitored. Defaults to the latitude in your your `configuration.yaml` file.
|
||||
- **longitude** (*Optional*): Longitude of the location, around which bike stations are monitored. Defaults to the longitude in your your `configuration.yaml` file.
|
||||
- **radius** (*Optional*): The radius (in meters or feet, depending on the Home Assistant configuration) around the monitored location. Only stations closer than this distance will be monitored.
|
||||
- **stations** array (*Optional*): A list of specific stations to monitor. The list should contain station `ID`s or `UID`s, which can be obtained from the CityBikes API.
|
||||
|
||||
Additional configuration samples:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry (using a list of stations)
|
||||
sensor:
|
||||
- platform: citybikes
|
||||
name: Work Stations
|
||||
stations:
|
||||
- 123
|
||||
- 145
|
||||
- 436
|
||||
```
|
45
source/_components/sensor.london_underground.markdown
Normal file
45
source/_components/sensor.london_underground.markdown
Normal file
@ -0,0 +1,45 @@
|
||||
---
|
||||
layout: page
|
||||
title: "London Undergound"
|
||||
description: "Display the current status of London underground & overground lines within Home Assistant."
|
||||
date: 2017-07-30 18:45
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: train.png
|
||||
ha_category: Transport
|
||||
ha_iot_class: "Cloud Polling"
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
|
||||
The `london_underground` sensor will display the status of London underground lines, as well as the Overground, DLR and Tfl rail.
|
||||
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: london_underground
|
||||
line:
|
||||
- Bakerloo
|
||||
- Central
|
||||
- Circle
|
||||
- District
|
||||
- DLR
|
||||
- Hammersmith & City
|
||||
- Jubilee
|
||||
- London Overground
|
||||
- Metropolitan
|
||||
- Northern
|
||||
- Piccadilly
|
||||
- TfL Rail
|
||||
- Victoria
|
||||
- Waterloo & City
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **line** (*Required*): Enter the name of at least one line.
|
||||
|
||||
Powered by TfL Open Data [TFL](https://api.tfl.gov.uk/).
|
46
source/_components/sensor.otp.markdown
Normal file
46
source/_components/sensor.otp.markdown
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
layout: page
|
||||
title: "OTP Sensor"
|
||||
description: "Instructions how to add One-Time Password (OTP) sensors into Home Assistant."
|
||||
date: 2017-07-04 07:00:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_category: Sensor
|
||||
ha_iot_class: "Local Polling"
|
||||
ha_release: 0.49
|
||||
---
|
||||
|
||||
The `otp` sensor generates One-Time Passwords according to [RFC6238](https://tools.ietf.org/html/rfc6238) that is compatible with most OTP generators available, including Google Authenticator. You can use this when building custom security solutions and want to use "rolling codes", that change every 30 seconds.
|
||||
|
||||
To enable the OTP sensor, add the following lines to your `configuration.yaml`:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: otp
|
||||
token: SHARED_SECRET_TOKEN
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **name** (*Optional*): Name of the sensor to use in the frontend. Defaults to `OTP Sensor`.
|
||||
- **token** (*Required*): The shared secret you use in your OTP generator (e.g. Google Authenticator on your phone)
|
||||
|
||||
## Generating a token
|
||||
|
||||
A simple way to generate a `token` for a new sensor is to run this snippet of python code in your Home Assistant virtual environment:
|
||||
|
||||
```shell
|
||||
$ pip install pyotp
|
||||
$ python -c 'import pyotp; print("Token: " + pyotp.random_base32())'
|
||||
Token: IHEDPEBEVA2WVHB7
|
||||
```
|
||||
|
||||
Copy and paste the token into your Home Assistant configuration and add it to your OTP generator. Verify that they generate the same code.
|
||||
|
||||
<p class='note warning'>
|
||||
It is vital that your system clock is correct both on your Home Assistant server and on your OTP generator device (e.g. your phone). If not, the generated codes will not match! Make sure NTP is running and syncing your time correctly before creating an issue.
|
||||
</p>
|
@ -44,7 +44,7 @@ Device configuration variables:
|
||||
- **name** (*Optional*): Name for the device, defaults to RFLink ID.
|
||||
- **sensor_type** (*Required*): Override automatically detected type of sensor. For list of values see below.
|
||||
- **unit_of_measurement** (*Optional*): Override automatically detected unit of sensor.
|
||||
- **aliasses** (*Optional*): Alternative RFLink ID's this device is known by.
|
||||
- **aliases** (*Optional*): Alternative RFLink ID's this device is known by.
|
||||
|
||||
Sensor type values:
|
||||
|
||||
|
@ -14,8 +14,7 @@ ha_release: 0.16
|
||||
---
|
||||
|
||||
|
||||
The `uber` sensor will give you time and price estimates for all available [Uber](https://uber.com) products at the given `start_latitude` and `start_longitude`.The `ATTRIBUTES` are used to provide extra information about products, such as estimated trip duration, distance and vehicle capacity. By default, 2 sensors will be created for each product at the given `start` location, one for pickup time and one for current price. The sensor is powered by the official Uber [API](https://developer.uber.com/).
|
||||
|
||||
The `uber` sensor will give you time and price estimates for all available [Uber](https://uber.com) products at the given location. The `ATTRIBUTES` are used to provide extra information about products, such as estimated trip duration, distance and vehicle capacity. By default, 2 sensors will be created for each product at the given `start` location, one for pickup time and one for current price. The sensor is powered by the official Uber [API](https://developer.uber.com/).
|
||||
|
||||
You must create an application [here](https://developer.uber.com/dashboard/create) to obtain a `server_token`.
|
||||
|
||||
@ -26,15 +25,13 @@ To enable this sensor, add the following lines to your `configuration.yaml` file
|
||||
sensor:
|
||||
- platform: uber
|
||||
server_token: 'BeAPPTDsWZSHLf7fd9OWjZkIezweRw18Q8NltY27'
|
||||
start_latitude: 37.8116380
|
||||
start_longitude: -122.2648050
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **server_token** (*Required*): A server token obtained from [developer.uber.com](https://developer.uber.com) after [creating an app](https://developer.uber.com/dashboard/create).
|
||||
- **start_latitude** (*Required*): The starting latitude for a trip.
|
||||
- **start_longitude** (*Required*): The starting longitude for a trip.
|
||||
- **start_latitude** (*Optional*): The starting latitude for a trip. Defaults to the latitude in your your `configuration.yaml` file.
|
||||
- **start_longitude** (*Optional*): The starting longitude for a trip. Defaults to the longitude in your `configuration.yaml` file.
|
||||
- **end_latitude** (*Optional*): The ending latitude for a trip. While `end_latitude` is optional, it is strongly recommended to provide an `end_latitude`/`end_longitude` when possible as you will get more accurate price and time estimates.
|
||||
- **end_longitude** (*Optional*): The ending longitude for a trip. While `end_longitude` is optional, it is strongly recommended to provide an `end_latitude`/`end_longitude` when possible as you will get more accurate price and time estimates.
|
||||
- **product_ids** (*Options*): A list of Uber product UUIDs. If provided, sensors will only be created for the given product IDs. Please note that product IDs are region and some times even more specific geographies based. The easiest way to find a UUID is to click on a sensor in the Home Assistant frontend and look for "Product ID" in the attributes.
|
||||
|
@ -51,5 +51,5 @@ Configuration variables:
|
||||
- **stop_colortemp** (*Optional*): The color temperature at the end. Defaults to `1900`.
|
||||
- **brightness** (*Optional*): The brightness of the lights. Calculated with `RGB_to_xy` by default.
|
||||
- **disable_brightness_adjust** (*Optional*): If true, brightness will not be adjusted besides color temperature. Defaults to False.
|
||||
- **mode** (*Optional*): Select how color temperature is passed to lights. Valid values are `xy` and `mired`. Defaults to `xy`.
|
||||
- **mode** (*Optional*): Select how color temperature is passed to lights. Valid values are `xy`, `mired` and `rgb`. Defaults to `xy`.
|
||||
|
||||
|
@ -49,15 +49,18 @@ Configuration variables:
|
||||
Device configuration variables:
|
||||
|
||||
- **name** (*Optional*): Name for the device, defaults to RFLink ID.
|
||||
- **aliasses** (*Optional*): Alternative RFLink ID's this device is known by.
|
||||
- **aliases** (*Optional*): Alternative RFLink ID's this device is known by.
|
||||
- **fire_event** (*Optional*): Fire an `button_pressed` event if this device is turned on or off (default: False).
|
||||
- **signal_repetitions** (*Optional*): Repeat every RFLink command this number of times (default: 1)
|
||||
- **group** (*Optional*): Allow switch to respond to group commands (ALLON/ALLOFF). (default: yes)
|
||||
- **group_aliases** (*Optional*): `aliases` which only respond to group commands.
|
||||
- **no_group_aliases** (*Optional*): `aliases` which do not respond to group commands.
|
||||
|
||||
### {% linkable_title Switch state %}
|
||||
|
||||
Initially the state of a switch is unknown. When the switch is turned on or off (via frontend or wireless remote) the state is known and will be shown in the frontend.
|
||||
|
||||
Sometimes a switch is controlled by multiple wireless remotes, each remote has its own code programmed in the switch. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliasses:
|
||||
Sometimes a switch is controlled by multiple wireless remotes, each remote has its own code programmed in the switch. To allow tracking of the state when switched via other remotes add the corresponding remote codes as aliases:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
@ -67,7 +70,7 @@ switch:
|
||||
newkaku_0000c6c2_1:
|
||||
name: Ceiling fan
|
||||
icon: mdi:fan
|
||||
aliasses:
|
||||
aliases:
|
||||
- newkaku_000000001_2
|
||||
- kaku_000001_a
|
||||
```
|
||||
|
79
source/_components/switch.xiaomi_vacuum.markdown
Normal file
79
source/_components/switch.xiaomi_vacuum.markdown
Normal file
@ -0,0 +1,79 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Xiaomi Mi Robot Vacuum"
|
||||
description: "Instructions how to integrate your Xiaomi Mi Robot Vacuum within Home Assistant."
|
||||
date: 2017-05-05 18:11
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: xiaomi_vacuum.png
|
||||
ha_category: Switch
|
||||
ha_release: 0.48
|
||||
---
|
||||
|
||||
The `xiaomi_vacuum`switch platform allows you to control the state of your [Xiaomi Mi Robot Vacuum](http://www.mi.com/roomrobot/).
|
||||
Current supported features are `start` and `stop` (goes to dock).
|
||||
|
||||
{% linkable_title Getting started %}
|
||||
|
||||
Follow the pairing process using your phone and Mi-Home app. From here you will be able to retrieve the token from a SQLite file inside your phone.
|
||||
|
||||
<p class='note warning'>
|
||||
If your Home Assistant installation is running in a [Virtualenv](/docs/installation/virtualenv/#upgrading-home-assistant), make sure you activate it by running the commands below.</p>
|
||||
|
||||
```bash
|
||||
$ sudo su -s /bin/bash homeassistant
|
||||
$ source /srv/homeassistant/bin/activate
|
||||
```
|
||||
|
||||
In order to fetch the token follow these instructions depending on your mobile phone platform.
|
||||
|
||||
### Windows and Android
|
||||
1. Configure the robot with the Mi-Home app.
|
||||
2. Enable developer mode and USB debugging on the Android phone and plug it into the computer.
|
||||
3. Get ADB tool for Windows : https://developer.android.com/studio/releases/platform-tools.html
|
||||
4. Create a backup of the application com.xiaomi.smarthome:
|
||||
```bash
|
||||
.\adb backup -noapk com.xiaomi.smarthome -f backup.ab
|
||||
```
|
||||
5. If you have this message : "More than one device or emulator", use this command to list all devices:
|
||||
```bash
|
||||
.\adb devices
|
||||
```
|
||||
and execute this command:
|
||||
```bash
|
||||
.\adb -s DEVICEID backup -noapk com.xiaomi.smarthome -f backup.ab # (with DEVICEID the device id from the previous command)
|
||||
```
|
||||
6. On the phone, you must confirm the backup. DO NOT enter any password and press button to make the backup.
|
||||
7. Get ADB Backup Extractor : https://sourceforge.net/projects/adbextractor/
|
||||
8. Extract All files from the backup:
|
||||
```bash
|
||||
java.exe -jar ../android-backup-extractor/abe.jar unpack backup.ab backup.tar ""
|
||||
```
|
||||
9. Unzip the ".tar" file.
|
||||
10. Open the sqlite DB miio2.db with a tool like SQLite Manager extension for FireFox.
|
||||
11. Get token from "devicerecord" table.
|
||||
|
||||
|
||||
### macOS and iOS
|
||||
1. Setup iOS device with the Mi-Home app.
|
||||
2. Create an unencrypted backup of the device using iTunes.
|
||||
3. Install iBackup Viewer from here: http://www.imactools.com/iphonebackupviewer/
|
||||
4. Extract this file /raw data/com.xiami.mihome/_mihome.sqlite to your computer
|
||||
5. Open the file extracted using notepad. You will then see the list of all the device in your account with their token.
|
||||
|
||||
{% linkable_title Configuration %}
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
- platform: xiaomi_vacuum
|
||||
name: 'name of the robot'
|
||||
host: 192.168.1.2
|
||||
token: your-token-here
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
- **name** (*Optional*): The name of your robot
|
||||
- **host** (*Required*): The IP of your robot
|
||||
- **token** (*Required*): The token of your robot. Go to Getting started section to read more about how to get it
|
@ -14,22 +14,22 @@ ha_release: 0.18
|
||||
|
||||
The `upnp` component enables you to collect network statistics from your router such as bytes in/out and packets in/out. This information is provided by the Internet Gateway Device (IGD) Protocol if enabled on your router.
|
||||
|
||||
The IGD can also automatically create port forwarding mappings on your router for Home Assistant.
|
||||
The IGD automatically creates port forwarding mappings on your router for Home Assistant, exposing your installation to the internet. The mapping will never automatically expire. Upon stopping Home Assistant, the mapping will be removed from your router.
|
||||
|
||||
Please note that UPnP or NAT-PMP needs to be enabled on your router for this component to work.
|
||||
|
||||
To integrate this into Home Assistant, add the following section to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
# Example configuration.yaml entry with custom external portal
|
||||
upnp:
|
||||
external_port: 80
|
||||
```
|
||||
|
||||
A port mapping will be created using the IP address and port that Home Assistant is running on. The mapping will never automatically expire. Upon stopping Home Assistant, the mapping will be removed from your router.
|
||||
If you which to have the statistics without having port mapping done through IGD, add the option **port_mapping**.
|
||||
|
||||
If you which to have the statistics without having port mapping done through IGD, add the option:
|
||||
```yaml
|
||||
# Example configuration.yaml entry with port mapping disabled
|
||||
upnp:
|
||||
port_mapping: false
|
||||
```
|
||||
Configuration variables:
|
||||
|
||||
- **external_port** (*Optional*): Expose Home Assistant to the internet over this TCP port. Defaults to Home Assistant configured port.
|
||||
- **port_mapping** (*Optional*): Disables port mapping maintains the network statistics sensors)
|
||||
- **unit** (*Optional*): UPnP sensors unit. Valid units are 'Bytes', 'KBytes', 'MBytes' and 'GBytes'.
|
||||
|
30
source/_components/velux.markdown
Normal file
30
source/_components/velux.markdown
Normal file
@ -0,0 +1,30 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Velux"
|
||||
description: "Instructions on how to integrate Velux KLF 200 component with Home Assistant."
|
||||
date: 2017-07-09 12:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: velux.png
|
||||
ha_category: Hub
|
||||
ha_release: 0.49
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
[Velux](http://www.velux.com) integration for Home Assistant allows you to connect to a Velux KLF 200 interface, to control [io-homecontrol](http://www.io-homecontrol.com) devices like windows and blinds. The module allows you to start scenes configured within KLF 200.
|
||||
|
||||
A `velux` section must be present in the `configuration.yaml` file and contain the following options as required:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
velux:
|
||||
host: "192.168.1.23"
|
||||
password: "velux123"
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The IP address or hostname of the KLF 200 to use.
|
||||
- **password** (*Required*): The password of the KLF 200 interface.
|
36
source/_components/wake_on_lan.markdown
Normal file
36
source/_components/wake_on_lan.markdown
Normal file
@ -0,0 +1,36 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Wake on LAN"
|
||||
description: "Instructions how to setup the Wake on LAN component in Home Assistant."
|
||||
date: 2017-07-8 15:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: ethernet.png
|
||||
ha_category: Hub
|
||||
ha_release: "0.49"
|
||||
ha_iot_class: "Local Push"
|
||||
---
|
||||
|
||||
The `wake_on_lan` component enables the ability to send _magic packets_ to [Wake on LAN](https://en.wikipedia.org/wiki/Wake-on-LAN) capable devices, in order to turn them on.
|
||||
|
||||
To use this component in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
wake_on_lan:
|
||||
```
|
||||
|
||||
### {% linkable_title Component services %}
|
||||
|
||||
Available services: `send_magic_packet`.
|
||||
|
||||
#### {% linkable_title Service `wake_on_lan/send_magic_packet` %}
|
||||
|
||||
Send a _magic packet_ to wake up a device with 'Wake-On-LAN' capabilities.
|
||||
|
||||
| Service data attribute | Optional | Description |
|
||||
|---------------------------|----------|-------------------------------------------------------|
|
||||
| `mac` | no | MAC address of the device to wake up. |
|
||||
| `broadcast_address` | yes | Optional broadcast IP where to send the magic packet. |
|
@ -13,4 +13,5 @@ ha_category: Usage
|
||||
After upgrading to a new version, you may notice your browser gets stuck at the "loading data" login screen. Close the window/tab and go into your browser settings and delete all the cookies for your URL. You can then log back in and it should work.
|
||||
|
||||
Android Chrome
|
||||
|
||||
chrome -> settings -> site settings -> storage -> search for your URL for home assistant-> "clear & reset"
|
||||
|
462
source/_posts/2017-07-16-release-49.markdown
Normal file
462
source/_posts/2017-07-16-release-49.markdown
Normal file
@ -0,0 +1,462 @@
|
||||
---
|
||||
layout: post
|
||||
title: "0.49: Themes 🎨, kiosk mode and Prometheus.io"
|
||||
description: "Style the frontend the way you want it and present it in Kiosk mode without tabs."
|
||||
date: 2017-07-15 00:02:05 +0000
|
||||
date_formatted: "July 15, 2017"
|
||||
author: Paulus Schoutsen
|
||||
author_twitter: balloob
|
||||
comments: true
|
||||
categories: Release-Notes
|
||||
og_image: /images/blog/2017-07-0.49/components.png
|
||||
---
|
||||
|
||||
<a href='/components/#version/0.49'><img src='/images/blog/2017-07-0.49/components.png' style='border: 0;box-shadow: none;'></a>
|
||||
|
||||
# {% linkable_title WE HAVE THEMES 🎨👩🎨 %}
|
||||
|
||||
Our already amazing frontend just got even more amazing thanks to [@andrey-git]. With the new theme support you can be in control of the primary color, accent color and a whole bunch more.
|
||||
|
||||
You can specify themes using new configuration options under frontend.
|
||||
|
||||
```yaml
|
||||
frontend:
|
||||
themes:
|
||||
green:
|
||||
primary-color: #6ca518;
|
||||
```
|
||||
|
||||
Once a theme is defined, use the new frontend service `frontend.set_theme` to activate it. More information in [the docs][frontend docs].
|
||||
|
||||
<p class='img'>
|
||||
<img src='/images/blog/2017-07-0.49/green-theme.png' alt='Screenshot of a green dashboard'>
|
||||
Screenshot of a green dashboard
|
||||
</p>
|
||||
|
||||
Not all parts of the user interface are themable yet. Expect improvements in future releases.
|
||||
|
||||
## {% linkable_title Kiosk mode %}
|
||||
|
||||
Another great new improvement for the frontend is the addition of a kiosk mode. When the frontend is viewed in kiosk mode, the tab bar will be hidden.
|
||||
|
||||
To activate kiosk mode, navigate to `https://hass.example.com:8123/kiosk/group.living_room_view`. Note that for `default_view` the url is just `https://hass.example.com:8123/kiosk`
|
||||
|
||||
This feature has also been brought to you by [@Andrey-git]! Big shout out to him for his continuous efforts to bring Home Assistant to the next level.
|
||||
|
||||
## {% linkable_title New Platforms %}
|
||||
|
||||
- Add london_underground ([@robmarkcole] - [#8272]) ([sensor.london_underground docs]) (new-platform)
|
||||
- Add citybikes platform ([@aronsky] - [#8202]) ([sensor.citybikes docs]) (new-platform)
|
||||
- Add One-Time Password sensor (OTP) ([@postlund] - [#8332]) ([sensor.otp docs]) (new-platform)
|
||||
- Add component for xiaomi robot vacuum (switch.xiaomi_vacuum) ([@rytilahti] - [#7913]) ([switch.xiaomi_vacuum docs]) (new-platform)
|
||||
- LaMetric platform and notify module ([@open-homeautomation] - [#8230]) ([lametric docs]) ([notify.lametric docs]) (new-platform)
|
||||
- New component to connect to VELUX KLF 200 Interface ([@Julius2342] - [#8203]) ([velux docs]) ([scene.velux docs]) (new-platform)
|
||||
- New service `send_magic_packet` with new component `wake_on_lan` ([@azogue] - [#8397]) ([wake_on_lan docs]) (new-platform)
|
||||
- Add support for Prometheus ([@rcloran] - [#8211]) ([prometheus docs]) (new-platform)
|
||||
- Refactored Amcrest to use central hub component ([@tchellomello] - [#8184]) ([amcrest docs]) ([camera.amcrest docs]) ([sensor.amcrest docs]) (breaking change) (new-platform)
|
||||
- Added media_extractor service ([@minchik] - [#8369]) ([media_extractor docs]) (new-platform)
|
||||
- Vizio SmartCast support ([@vkorn] - [#8260]) ([media_player.vizio docs]) (new-platform)
|
||||
|
||||
## {% linkable_title If you need help... %}
|
||||
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][discord]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
|
||||
|
||||
## {% linkable_title Reporting Issues %}
|
||||
Experiencing issues introduced by this release? Please report them in our [issue tracker][issue]. Make sure to fill in all fields of the issue template.
|
||||
|
||||
<!--more-->
|
||||
## {% linkable_title Breaking Changes %}
|
||||
|
||||
- UPC Connect component no longer needs a password passed into the configuration. ([@Flavien] - [#8335]) ([device_tracker.upc_connect docs]) (breaking change)
|
||||
- The Apple TV platform has been upgraded to a component and a remote platform has been added. This requires your Apple TV configuration to be moved to the new `apple_tv` component. ([@postlund] - [#8122]) ([media_player.apple_tv docs]) (breaking change)
|
||||
|
||||
```yaml
|
||||
apple_tv:
|
||||
- name: Apple TV
|
||||
host: 10.0.10.20
|
||||
login_id: 00000000-1234-5678-9012-345678901234
|
||||
start_off: true
|
||||
credentials: 8660DEA5154FB46B:20B94847926112B3F46F85DB3A7311830463BF65570C22C3786E27F38C3326CF
|
||||
```
|
||||
|
||||
- Refactored Amcrest to use central hub component to prepare for future integrations. This requires your Amcrest configuration to be moved to the new `amcrest` component. ([@tchellomello] - [#8184]) ([amcrest docs]) ([camera.amcrest docs]) ([sensor.amcrest docs]) (breaking change) (new-platform)
|
||||
|
||||
```yaml
|
||||
amcrest:
|
||||
- host: !secret amcrest_living
|
||||
name: "Living Room"
|
||||
username: !secret amcrest_living_username
|
||||
password: !secret amcrest_living_password
|
||||
resolution: low
|
||||
stream_source: snapshot
|
||||
sensors:
|
||||
- motion_detector
|
||||
- ptz_preset
|
||||
```
|
||||
|
||||
## {% linkable_title All changes %}
|
||||
|
||||
- Version bump to 0.49.0.dev0 ([@fabaff] - [#8266])
|
||||
- Upgrade pyowm to 2.7.1 ([@fabaff] - [#8274]) ([sensor.openweathermap docs]) ([weather.openweathermap docs])
|
||||
- Don't call update() in constructor ([@fabaff] - [#8276]) ([sensor.openweathermap docs])
|
||||
- Update apcaccess to 0.0.13. Add "Percent Load Capacity" to INFERRED_UNITS. ([@michaelarnauts] - [#8277]) ([apcupsd docs]) ([sensor.apcupsd docs])
|
||||
- Update knxip to 0.4 (better handling of reconnects) ([@open-homeautomation] - [#8289]) ([knx docs])
|
||||
- Add london_underground ([@robmarkcole] - [#8272]) ([sensor.london_underground docs]) (new-platform)
|
||||
- pytado moved to pypi ([@wmalgadey] - [#8298]) ([tado docs]) ([climate.tado docs])
|
||||
- Fix doc link in header ([@robmarkcole] - [#8305]) ([sensor.london_underground docs])
|
||||
- Upgrade discord.py to 0.16.8 ([@fabaff] - [#8304]) ([notify.discord docs])
|
||||
- zha: Strip whitespace from device names ([@rcloran] - [#8306]) ([zha docs])
|
||||
- Upgrade chardet to 3.0.4 ([@fabaff] - [#8313])
|
||||
- Upgrade aiohttp to 2.2.2 ([@fabaff] - [#8314])
|
||||
- Fix pylint issue ([@fabaff] - [#8325]) ([snips docs])
|
||||
- vsure 1.3.7 ([@persandstrom] - [#8321]) ([verisure docs])
|
||||
- Update pyEmby to fix media images ([@mezz64] - [#8331]) ([media_player.emby docs])
|
||||
- Partially revert #7931 ([@fabaff] - [#8326]) ([sensor.yweather docs])
|
||||
- Only allow 'tls_insecure_set()' if cert is present (fixes #8329) ([@fabaff] - [#8337]) ([mqtt docs])
|
||||
- Fix issue #8285 ([@Sabesto] - [#8340]) ([modbus docs]) ([binary_sensor.modbus docs]) ([climate.flexit docs]) ([sensor.modbus docs]) ([switch.modbus docs])
|
||||
- Bump dlib face_recognition to 0.2.0 ([@pvizeli] - [#8345]) ([image_processing.dlib_face_detect docs]) ([image_processing.dlib_face_identify docs])
|
||||
- Update Avion and Decora switches to match upstream changes ([@mjg59] - [#7903]) ([light.avion docs]) ([light.decora docs])
|
||||
- Fix the "302" error in the UPC Connect component and remove the need to specify the router password ([@Flavien] - [#8335]) ([device_tracker.upc_connect docs]) (breaking change)
|
||||
- Add new feature to Apple TV platform ([@postlund] - [#8122]) ([media_player.apple_tv docs]) (breaking change)
|
||||
- Add citybikes platform ([@aronsky] - [#8202]) ([sensor.citybikes docs]) (new-platform)
|
||||
- Fix some issues for PyLint 1.7.2 ([@balloob] - [#8356])
|
||||
- Fix pylint 1.7.2 no-else-return issues ([@balloob] - [#8361])
|
||||
- Upgrade aiohttp to 2.2.3 ([@fabaff] - [#8363])
|
||||
- Remove some more usage of run_in_executor ([@balloob] - [#8352])
|
||||
- Correct spelling of aliases, deprecate old config options. ([@aequitas] - [#8348]) ([rflink docs]) ([light.rflink docs]) ([sensor.rflink docs]) ([switch.rflink docs])
|
||||
- Allow Pilight Binary Sensor to control reset_delay_sec through configuration ([@clarkewd] - [#8358]) ([binary_sensor.pilight docs])
|
||||
- Mqtt client_id fix for #8315 ([@heinemml] - [#8366]) ([mqtt docs])
|
||||
- Allow all panel urls ([@balloob] - [#8368])
|
||||
- Update pyHik to catch XML errors ([@mezz64] - [#8384]) ([binary_sensor.hikvision docs])
|
||||
- update version ([@wardcraigj] - [#8380]) ([alarm_control_panel.totalconnect docs])
|
||||
- Add One-Time Password sensor (OTP) ([@postlund] - [#8332]) ([sensor.otp docs]) (new-platform)
|
||||
- buienradar==0.7, fix winddirection/azimuth, logging ([@mjj4791] - [#8281]) ([sensor.buienradar docs]) ([weather.buienradar docs])
|
||||
- Add component for xiaomi robot vacuum (switch.xiaomi_vacuum) ([@rytilahti] - [#7913]) ([switch.xiaomi_vacuum docs]) (new-platform)
|
||||
- Try catch around database updates in recorder. Resolves 6919 ([@mitchese] - [#8349]) ([recorder docs])
|
||||
- Fix Amazon Polly with non english voices. #8377 ([@CharlesBlonde] - [#8378]) ([tts.amazon_polly docs])
|
||||
- Fix TTS options. #8375 ([@CharlesBlonde] - [#8376]) ([tts docs])
|
||||
- Add address-specific KNX listeners that fire events on the HASS bus ([@open-homeautomation] - [#8374]) ([knx docs])
|
||||
- GTFS: check start/end date on services ([@Kernald] - [#8373]) ([sensor.gtfs docs])
|
||||
- Implement KNX dimming functionality ([@open-homeautomation] - [#8371]) ([light.knx docs])
|
||||
- Add Soundtouch support for playing an HTTP url ([@CharlesBlonde] - [#8370]) ([media_player.soundtouch docs])
|
||||
- Modbus fixes to work with pymodbus 1.3.1 ([@Sabesto] - [#8365]) ([modbus docs]) ([binary_sensor.modbus docs]) ([sensor.modbus docs]) ([switch.modbus docs])
|
||||
- Cleanup the asuswrt component ([@mattsch] - [#8359]) ([device_tracker.asuswrt docs])
|
||||
- cover_template:i open/close/stop actions no longer required. Improve tests ([@PhracturedBlue] - [#8344]) ([cover.template docs])
|
||||
- Prevent errors on Octoprint sensors and binary_sensors when Octoprint and/or Printer are off ([@w1ll1am23] - [#8343]) ([octoprint docs]) ([binary_sensor.octoprint docs]) ([sensor.octoprint docs])
|
||||
- Presence detection for tp link eap225 ([@alexrockt] - [#8322]) ([device_tracker.tplink docs])
|
||||
- zha light: Refresh at startup ([@rcloran] - [#8310]) ([light.zha docs])
|
||||
- zha: Try multiple reads to get manufacturer/model ([@rcloran] - [#8308]) ([zha docs])
|
||||
- Upnp mapping notification ([@dgomes] - [#8303]) ([upnp docs])
|
||||
- Use user-set device names for Linksys Smart Wi-Fi routers (3) ([@Klikini] - [#8300]) ([device_tracker.linksys_smart docs])
|
||||
- Added support for upload of remote or local files to slack ([@simaosimao] - [#8278]) ([notify.slack docs])
|
||||
- Update avion.py ([@pvizeli] - [#8364]) ([light.avion docs])
|
||||
- LaMetric platform and notify module ([@open-homeautomation] - [#8230]) ([lametric docs]) ([notify.lametric docs]) (new-platform)
|
||||
- Sets spotify media_type to music ([@Tommatheussen] - [#8387]) ([media_player.spotify docs])
|
||||
- Update waqi sensor ([@andrey-git] - [#8385]) ([sensor.waqi docs])
|
||||
- Update aiolifx ([@amelchio] - [#8396]) ([light.lifx docs])
|
||||
- Code owners ([@balloob] - [#8393])
|
||||
- Add new Dyson sensors ([@CharlesBlonde] - [#8199]) ([dyson docs]) ([fan.dyson docs]) ([sensor.dyson docs])
|
||||
- Fix CODEOWNERS z-wave team name ([@armills] - [#8400])
|
||||
- Upgrade Sphinx to 1.6.3 ([@fabaff] - [#8405])
|
||||
- Use upstream RachioPy, fix manual run switches ([@Klikini] - [#8286]) ([switch.rachio docs])
|
||||
- Marrantz SR5006 & SR5006 treated as AVR-X device | Fixed Mapping of Media Player and AUX input functions ([@scarface-4711] - [#8409]) ([media_player.denonavr docs])
|
||||
- New component to connect to VELUX KLF 200 Interface ([@Julius2342] - [#8203]) ([velux docs]) ([scene.velux docs]) (new-platform)
|
||||
- Properly handle the case when a group includes itself. ([@andrey-git] - [#8398]) ([group docs])
|
||||
- Add set_operation_mode support to generic_thermostat ([@mtreinish] - [#8392]) ([climate.generic_thermostat docs])
|
||||
- Make gzips reproducible by excluding timestamp ([@armills] - [#8420])
|
||||
- Do not overwrite a custom hyperion light name with the hostname of the server. ([@doctorjames] - [#8391]) ([light.hyperion docs])
|
||||
- Fixed link to documentation ([@Julius2342] - [#8424]) ([velux docs]) ([scene.velux docs])
|
||||
- Fix KeyError (fixes #3721, fixes #7241) ([@fabaff] - [#8428]) ([sensor.uber docs])
|
||||
- Use HA lat/long for the start (fixes #3971) ([@fabaff] - [#8429]) ([sensor.uber docs])
|
||||
- bump python-mirobo requirement to support newer firmwares and more ([@rytilahti] - [#8431]) ([switch.xiaomi_vacuum docs])
|
||||
- New service `send_magic_packet` with new component `wake_on_lan` ([@azogue] - [#8397]) ([wake_on_lan docs]) (new-platform)
|
||||
- Integrate utility functions into restricted Python environment ([@open-homeautomation] - [#8427]) ([python_script docs])
|
||||
- Allow Twitter notifications to include media ([@MikeChristianson] - [#8282]) ([notify docs]) ([notify.twitter docs])
|
||||
- Fix typo (sending USERNAME instead of PASSWORD) introduced in #7963 ([@thecynic] - [#8433]) ([lutron docs])
|
||||
- zha: Handle both input and output clusters ([@rcloran] - [#8410]) ([zha docs]) ([binary_sensor.zha docs]) ([light.zha docs]) ([sensor.zha docs])
|
||||
- Add support for Prometheus ([@rcloran] - [#8211]) ([prometheus docs]) (new-platform)
|
||||
- Refactored Amcrest to use central hub component ([@tchellomello] - [#8184]) ([amcrest docs]) ([camera.amcrest docs]) ([sensor.amcrest docs]) (breaking change) (new-platform)
|
||||
- Fix radiothermostat -1 value issue ([@aneisch] - [#8395]) ([climate.radiotherm docs])
|
||||
- Added media_extractor service ([@minchik] - [#8369]) ([media_extractor docs]) (new-platform)
|
||||
- Updated pyvera ([@alanfischer] - [#8437]) ([vera docs])
|
||||
- Upgrade phue to 1.0 (fixes #7749) ([@fabaff] - [#8444]) ([light.hue docs])
|
||||
- Add effects ([@fabaff] - [#8442]) ([light.mystrom docs])
|
||||
- Exclude 'TAXI' product (fixes #8401) ([@fabaff] - [#8438]) ([sensor.uber docs])
|
||||
- Switch pyW215 to pypi ([@andrey-git] - [#8445]) ([switch.dlink docs])
|
||||
- Vizio SmartCast support ([@vkorn] - [#8260]) ([media_player.vizio docs]) (new-platform)
|
||||
- DHT support for humidity and temperature offset ([@gitmopp] - [#8238]) ([sensor.dht docs])
|
||||
- Add support for rain and moisture sensors ([@sdague] - [#8440]) ([sensor.arwn docs])
|
||||
- Hass.io: Disable timeout when updating OS/supervisor/hass ([@balloob] - [#8447]) ([hassio docs])
|
||||
- Fix Arlo Q not working with 0.48.1 ([@viswa-swami] - [#8446]) ([camera.arlo docs])
|
||||
- Support for Plex servers with enforced SSL ([@nmaggioni] - [#8341]) ([media_player.plex docs])
|
||||
- Upgrade youtube_dl to 2017.7.9 ([@fabaff] - [#8450]) ([media_extractor docs])
|
||||
- Implement a bridge between HASS event bus and KNX bus to send events ([@open-homeautomation] - [#8449]) ([knx docs])
|
||||
- LIFX: improve light availability ([@amelchio] - [#8451]) ([light.lifx docs])
|
||||
- LIFX: make broadcast address configurable ([@amelchio] - [#8453]) ([light.lifx docs])
|
||||
- Backend support for themes ([@andrey-git] - [#8419])
|
||||
- upgrade broadlink ([@danielhiversen] - [#8462]) ([sensor.broadlink docs]) ([switch.broadlink docs])
|
||||
- upgrade rfxtrx lib ([@danielhiversen] - [#8463]) ([rfxtrx docs])
|
||||
- Plex: Add exception handler when connection fails ([@abmantis] - [#8179]) ([media_player.plex docs])
|
||||
- HomeMatic dependency upgrade + IP Wall Thermostat support ([@danielperna84] - [#8465]) ([homematic docs])
|
||||
- Add kiosk-mode panel ([@andrey-git] - [#8457])
|
||||
|
||||
[#7903]: https://github.com/home-assistant/home-assistant/pull/7903
|
||||
[#7913]: https://github.com/home-assistant/home-assistant/pull/7913
|
||||
[#8122]: https://github.com/home-assistant/home-assistant/pull/8122
|
||||
[#8179]: https://github.com/home-assistant/home-assistant/pull/8179
|
||||
[#8184]: https://github.com/home-assistant/home-assistant/pull/8184
|
||||
[#8199]: https://github.com/home-assistant/home-assistant/pull/8199
|
||||
[#8202]: https://github.com/home-assistant/home-assistant/pull/8202
|
||||
[#8203]: https://github.com/home-assistant/home-assistant/pull/8203
|
||||
[#8211]: https://github.com/home-assistant/home-assistant/pull/8211
|
||||
[#8230]: https://github.com/home-assistant/home-assistant/pull/8230
|
||||
[#8238]: https://github.com/home-assistant/home-assistant/pull/8238
|
||||
[#8260]: https://github.com/home-assistant/home-assistant/pull/8260
|
||||
[#8266]: https://github.com/home-assistant/home-assistant/pull/8266
|
||||
[#8272]: https://github.com/home-assistant/home-assistant/pull/8272
|
||||
[#8274]: https://github.com/home-assistant/home-assistant/pull/8274
|
||||
[#8276]: https://github.com/home-assistant/home-assistant/pull/8276
|
||||
[#8277]: https://github.com/home-assistant/home-assistant/pull/8277
|
||||
[#8278]: https://github.com/home-assistant/home-assistant/pull/8278
|
||||
[#8281]: https://github.com/home-assistant/home-assistant/pull/8281
|
||||
[#8282]: https://github.com/home-assistant/home-assistant/pull/8282
|
||||
[#8286]: https://github.com/home-assistant/home-assistant/pull/8286
|
||||
[#8289]: https://github.com/home-assistant/home-assistant/pull/8289
|
||||
[#8298]: https://github.com/home-assistant/home-assistant/pull/8298
|
||||
[#8300]: https://github.com/home-assistant/home-assistant/pull/8300
|
||||
[#8303]: https://github.com/home-assistant/home-assistant/pull/8303
|
||||
[#8304]: https://github.com/home-assistant/home-assistant/pull/8304
|
||||
[#8305]: https://github.com/home-assistant/home-assistant/pull/8305
|
||||
[#8306]: https://github.com/home-assistant/home-assistant/pull/8306
|
||||
[#8308]: https://github.com/home-assistant/home-assistant/pull/8308
|
||||
[#8310]: https://github.com/home-assistant/home-assistant/pull/8310
|
||||
[#8313]: https://github.com/home-assistant/home-assistant/pull/8313
|
||||
[#8314]: https://github.com/home-assistant/home-assistant/pull/8314
|
||||
[#8321]: https://github.com/home-assistant/home-assistant/pull/8321
|
||||
[#8322]: https://github.com/home-assistant/home-assistant/pull/8322
|
||||
[#8325]: https://github.com/home-assistant/home-assistant/pull/8325
|
||||
[#8326]: https://github.com/home-assistant/home-assistant/pull/8326
|
||||
[#8331]: https://github.com/home-assistant/home-assistant/pull/8331
|
||||
[#8332]: https://github.com/home-assistant/home-assistant/pull/8332
|
||||
[#8335]: https://github.com/home-assistant/home-assistant/pull/8335
|
||||
[#8337]: https://github.com/home-assistant/home-assistant/pull/8337
|
||||
[#8340]: https://github.com/home-assistant/home-assistant/pull/8340
|
||||
[#8341]: https://github.com/home-assistant/home-assistant/pull/8341
|
||||
[#8343]: https://github.com/home-assistant/home-assistant/pull/8343
|
||||
[#8344]: https://github.com/home-assistant/home-assistant/pull/8344
|
||||
[#8345]: https://github.com/home-assistant/home-assistant/pull/8345
|
||||
[#8348]: https://github.com/home-assistant/home-assistant/pull/8348
|
||||
[#8349]: https://github.com/home-assistant/home-assistant/pull/8349
|
||||
[#8352]: https://github.com/home-assistant/home-assistant/pull/8352
|
||||
[#8356]: https://github.com/home-assistant/home-assistant/pull/8356
|
||||
[#8358]: https://github.com/home-assistant/home-assistant/pull/8358
|
||||
[#8359]: https://github.com/home-assistant/home-assistant/pull/8359
|
||||
[#8361]: https://github.com/home-assistant/home-assistant/pull/8361
|
||||
[#8363]: https://github.com/home-assistant/home-assistant/pull/8363
|
||||
[#8364]: https://github.com/home-assistant/home-assistant/pull/8364
|
||||
[#8365]: https://github.com/home-assistant/home-assistant/pull/8365
|
||||
[#8366]: https://github.com/home-assistant/home-assistant/pull/8366
|
||||
[#8368]: https://github.com/home-assistant/home-assistant/pull/8368
|
||||
[#8369]: https://github.com/home-assistant/home-assistant/pull/8369
|
||||
[#8370]: https://github.com/home-assistant/home-assistant/pull/8370
|
||||
[#8371]: https://github.com/home-assistant/home-assistant/pull/8371
|
||||
[#8373]: https://github.com/home-assistant/home-assistant/pull/8373
|
||||
[#8374]: https://github.com/home-assistant/home-assistant/pull/8374
|
||||
[#8376]: https://github.com/home-assistant/home-assistant/pull/8376
|
||||
[#8378]: https://github.com/home-assistant/home-assistant/pull/8378
|
||||
[#8380]: https://github.com/home-assistant/home-assistant/pull/8380
|
||||
[#8384]: https://github.com/home-assistant/home-assistant/pull/8384
|
||||
[#8385]: https://github.com/home-assistant/home-assistant/pull/8385
|
||||
[#8387]: https://github.com/home-assistant/home-assistant/pull/8387
|
||||
[#8391]: https://github.com/home-assistant/home-assistant/pull/8391
|
||||
[#8392]: https://github.com/home-assistant/home-assistant/pull/8392
|
||||
[#8393]: https://github.com/home-assistant/home-assistant/pull/8393
|
||||
[#8395]: https://github.com/home-assistant/home-assistant/pull/8395
|
||||
[#8396]: https://github.com/home-assistant/home-assistant/pull/8396
|
||||
[#8397]: https://github.com/home-assistant/home-assistant/pull/8397
|
||||
[#8398]: https://github.com/home-assistant/home-assistant/pull/8398
|
||||
[#8400]: https://github.com/home-assistant/home-assistant/pull/8400
|
||||
[#8405]: https://github.com/home-assistant/home-assistant/pull/8405
|
||||
[#8409]: https://github.com/home-assistant/home-assistant/pull/8409
|
||||
[#8410]: https://github.com/home-assistant/home-assistant/pull/8410
|
||||
[#8419]: https://github.com/home-assistant/home-assistant/pull/8419
|
||||
[#8420]: https://github.com/home-assistant/home-assistant/pull/8420
|
||||
[#8424]: https://github.com/home-assistant/home-assistant/pull/8424
|
||||
[#8427]: https://github.com/home-assistant/home-assistant/pull/8427
|
||||
[#8428]: https://github.com/home-assistant/home-assistant/pull/8428
|
||||
[#8429]: https://github.com/home-assistant/home-assistant/pull/8429
|
||||
[#8431]: https://github.com/home-assistant/home-assistant/pull/8431
|
||||
[#8433]: https://github.com/home-assistant/home-assistant/pull/8433
|
||||
[#8437]: https://github.com/home-assistant/home-assistant/pull/8437
|
||||
[#8438]: https://github.com/home-assistant/home-assistant/pull/8438
|
||||
[#8440]: https://github.com/home-assistant/home-assistant/pull/8440
|
||||
[#8442]: https://github.com/home-assistant/home-assistant/pull/8442
|
||||
[#8444]: https://github.com/home-assistant/home-assistant/pull/8444
|
||||
[#8445]: https://github.com/home-assistant/home-assistant/pull/8445
|
||||
[#8446]: https://github.com/home-assistant/home-assistant/pull/8446
|
||||
[#8447]: https://github.com/home-assistant/home-assistant/pull/8447
|
||||
[#8449]: https://github.com/home-assistant/home-assistant/pull/8449
|
||||
[#8450]: https://github.com/home-assistant/home-assistant/pull/8450
|
||||
[#8451]: https://github.com/home-assistant/home-assistant/pull/8451
|
||||
[#8453]: https://github.com/home-assistant/home-assistant/pull/8453
|
||||
[#8457]: https://github.com/home-assistant/home-assistant/pull/8457
|
||||
[#8462]: https://github.com/home-assistant/home-assistant/pull/8462
|
||||
[#8463]: https://github.com/home-assistant/home-assistant/pull/8463
|
||||
[#8465]: https://github.com/home-assistant/home-assistant/pull/8465
|
||||
[@CharlesBlonde]: https://github.com/CharlesBlonde
|
||||
[@Flavien]: https://github.com/Flavien
|
||||
[@Julius2342]: https://github.com/Julius2342
|
||||
[@Kernald]: https://github.com/Kernald
|
||||
[@Klikini]: https://github.com/Klikini
|
||||
[@MikeChristianson]: https://github.com/MikeChristianson
|
||||
[@PhracturedBlue]: https://github.com/PhracturedBlue
|
||||
[@Sabesto]: https://github.com/Sabesto
|
||||
[@Tommatheussen]: https://github.com/Tommatheussen
|
||||
[@abmantis]: https://github.com/abmantis
|
||||
[@aequitas]: https://github.com/aequitas
|
||||
[@alanfischer]: https://github.com/alanfischer
|
||||
[@alexrockt]: https://github.com/alexrockt
|
||||
[@amelchio]: https://github.com/amelchio
|
||||
[@andrey-git]: https://github.com/andrey-git
|
||||
[@aneisch]: https://github.com/aneisch
|
||||
[@armills]: https://github.com/armills
|
||||
[@aronsky]: https://github.com/aronsky
|
||||
[@azogue]: https://github.com/azogue
|
||||
[@balloob]: https://github.com/balloob
|
||||
[@clarkewd]: https://github.com/clarkewd
|
||||
[@danielhiversen]: https://github.com/danielhiversen
|
||||
[@danielperna84]: https://github.com/danielperna84
|
||||
[@dgomes]: https://github.com/dgomes
|
||||
[@doctorjames]: https://github.com/doctorjames
|
||||
[@fabaff]: https://github.com/fabaff
|
||||
[@gitmopp]: https://github.com/gitmopp
|
||||
[@heinemml]: https://github.com/heinemml
|
||||
[@mattsch]: https://github.com/mattsch
|
||||
[@mezz64]: https://github.com/mezz64
|
||||
[@michaelarnauts]: https://github.com/michaelarnauts
|
||||
[@minchik]: https://github.com/minchik
|
||||
[@mitchese]: https://github.com/mitchese
|
||||
[@mjg59]: https://github.com/mjg59
|
||||
[@mjj4791]: https://github.com/mjj4791
|
||||
[@mtreinish]: https://github.com/mtreinish
|
||||
[@nmaggioni]: https://github.com/nmaggioni
|
||||
[@open-homeautomation]: https://github.com/open-homeautomation
|
||||
[@persandstrom]: https://github.com/persandstrom
|
||||
[@postlund]: https://github.com/postlund
|
||||
[@pvizeli]: https://github.com/pvizeli
|
||||
[@rcloran]: https://github.com/rcloran
|
||||
[@robmarkcole]: https://github.com/robmarkcole
|
||||
[@rytilahti]: https://github.com/rytilahti
|
||||
[@scarface-4711]: https://github.com/scarface-4711
|
||||
[@sdague]: https://github.com/sdague
|
||||
[@simaosimao]: https://github.com/simaosimao
|
||||
[@tchellomello]: https://github.com/tchellomello
|
||||
[@thecynic]: https://github.com/thecynic
|
||||
[@viswa-swami]: https://github.com/viswa-swami
|
||||
[@vkorn]: https://github.com/vkorn
|
||||
[@w1ll1am23]: https://github.com/w1ll1am23
|
||||
[@wardcraigj]: https://github.com/wardcraigj
|
||||
[@wmalgadey]: https://github.com/wmalgadey
|
||||
[alarm_control_panel.totalconnect docs]: https://home-assistant.io/components/alarm_control_panel.totalconnect/
|
||||
[amcrest docs]: https://home-assistant.io/components/amcrest/
|
||||
[apcupsd docs]: https://home-assistant.io/components/apcupsd/
|
||||
[binary_sensor.hikvision docs]: https://home-assistant.io/components/binary_sensor.hikvision/
|
||||
[binary_sensor.modbus docs]: https://home-assistant.io/components/binary_sensor.modbus/
|
||||
[binary_sensor.octoprint docs]: https://home-assistant.io/components/binary_sensor.octoprint/
|
||||
[binary_sensor.pilight docs]: https://home-assistant.io/components/binary_sensor.pilight/
|
||||
[binary_sensor.zha docs]: https://home-assistant.io/components/binary_sensor.zha/
|
||||
[camera.amcrest docs]: https://home-assistant.io/components/camera.amcrest/
|
||||
[camera.arlo docs]: https://home-assistant.io/components/camera.arlo/
|
||||
[climate.flexit docs]: https://home-assistant.io/components/climate.flexit/
|
||||
[climate.generic_thermostat docs]: https://home-assistant.io/components/climate.generic_thermostat/
|
||||
[climate.radiotherm docs]: https://home-assistant.io/components/climate.radiotherm/
|
||||
[climate.tado docs]: https://home-assistant.io/components/climate.tado/
|
||||
[cover.template docs]: https://home-assistant.io/components/cover.template/
|
||||
[device_tracker.asuswrt docs]: https://home-assistant.io/components/device_tracker.asuswrt/
|
||||
[device_tracker.linksys_smart docs]: https://home-assistant.io/components/device_tracker.linksys_smart/
|
||||
[device_tracker.tplink docs]: https://home-assistant.io/components/device_tracker.tplink/
|
||||
[device_tracker.upc_connect docs]: https://home-assistant.io/components/device_tracker.upc_connect/
|
||||
[dyson docs]: https://home-assistant.io/components/dyson/
|
||||
[fan.dyson docs]: https://home-assistant.io/components/fan.dyson/
|
||||
[group docs]: https://home-assistant.io/components/group/
|
||||
[hassio docs]: https://home-assistant.io/hassio/
|
||||
[homematic docs]: https://home-assistant.io/components/homematic/
|
||||
[image_processing.dlib_face_detect docs]: https://home-assistant.io/components/image_processing.dlib_face_detect/
|
||||
[image_processing.dlib_face_identify docs]: https://home-assistant.io/components/image_processing.dlib_face_identify/
|
||||
[knx docs]: https://home-assistant.io/components/knx/
|
||||
[lametric docs]: https://home-assistant.io/components/lametric/
|
||||
[light.avion docs]: https://home-assistant.io/components/light.avion/
|
||||
[light.decora docs]: https://home-assistant.io/components/light.decora/
|
||||
[light.hue docs]: https://home-assistant.io/components/light.hue/
|
||||
[light.hyperion docs]: https://home-assistant.io/components/light.hyperion/
|
||||
[light.knx docs]: https://home-assistant.io/components/light.knx/
|
||||
[light.lifx docs]: https://home-assistant.io/components/light.lifx/
|
||||
[light.mystrom docs]: https://home-assistant.io/components/light.mystrom/
|
||||
[light.rflink docs]: https://home-assistant.io/components/light.rflink/
|
||||
[light.zha docs]: https://home-assistant.io/components/light.zha/
|
||||
[lutron docs]: https://home-assistant.io/components/lutron/
|
||||
[media_extractor docs]: https://home-assistant.io/components/media_extractor/
|
||||
[media_extractor docs]: https://home-assistant.io/components/media_extractor/
|
||||
[media_player.apple_tv docs]: https://home-assistant.io/components/media_player.apple_tv/
|
||||
[media_player.denonavr docs]: https://home-assistant.io/components/media_player.denonavr/
|
||||
[media_player.emby docs]: https://home-assistant.io/components/media_player.emby/
|
||||
[media_player.plex docs]: https://home-assistant.io/components/media_player.plex/
|
||||
[media_player.soundtouch docs]: https://home-assistant.io/components/media_player.soundtouch/
|
||||
[media_player.spotify docs]: https://home-assistant.io/components/media_player.spotify/
|
||||
[media_player.vizio docs]: https://home-assistant.io/components/media_player.vizio/
|
||||
[modbus docs]: https://home-assistant.io/components/modbus/
|
||||
[mqtt docs]: https://home-assistant.io/components/mqtt/
|
||||
[notify docs]: https://home-assistant.io/components/notify/
|
||||
[notify.discord docs]: https://home-assistant.io/components/notify.discord/
|
||||
[notify.lametric docs]: https://home-assistant.io/components/notify.lametric/
|
||||
[notify.slack docs]: https://home-assistant.io/components/notify.slack/
|
||||
[notify.twitter docs]: https://home-assistant.io/components/notify.twitter/
|
||||
[octoprint docs]: https://home-assistant.io/components/octoprint/
|
||||
[prometheus docs]: https://home-assistant.io/components/prometheus/
|
||||
[python_script docs]: https://home-assistant.io/components/python_script/
|
||||
[recorder docs]: https://home-assistant.io/components/recorder/
|
||||
[rflink docs]: https://home-assistant.io/components/rflink/
|
||||
[rfxtrx docs]: https://home-assistant.io/components/rfxtrx/
|
||||
[scene.velux docs]: https://home-assistant.io/components/scene.velux/
|
||||
[sensor.amcrest docs]: https://home-assistant.io/components/sensor.amcrest/
|
||||
[sensor.apcupsd docs]: https://home-assistant.io/components/sensor.apcupsd/
|
||||
[sensor.arwn docs]: https://home-assistant.io/components/sensor.arwn/
|
||||
[sensor.broadlink docs]: https://home-assistant.io/components/sensor.broadlink/
|
||||
[sensor.buienradar docs]: https://home-assistant.io/components/sensor.buienradar/
|
||||
[sensor.citybikes docs]: https://home-assistant.io/components/sensor.citybikes/
|
||||
[sensor.dht docs]: https://home-assistant.io/components/sensor.dht/
|
||||
[sensor.dyson docs]: https://home-assistant.io/components/sensor.dyson/
|
||||
[sensor.gtfs docs]: https://home-assistant.io/components/sensor.gtfs/
|
||||
[sensor.london_underground docs]: https://home-assistant.io/components/sensor.london_underground/
|
||||
[sensor.modbus docs]: https://home-assistant.io/components/sensor.modbus/
|
||||
[sensor.octoprint docs]: https://home-assistant.io/components/sensor.octoprint/
|
||||
[sensor.openweathermap docs]: https://home-assistant.io/components/sensor.openweathermap/
|
||||
[sensor.otp docs]: https://home-assistant.io/components/sensor.otp/
|
||||
[sensor.rflink docs]: https://home-assistant.io/components/sensor.rflink/
|
||||
[sensor.london_underground docs]: https://home-assistant.io/components/sensor.london_underground/
|
||||
[sensor.uber docs]: https://home-assistant.io/components/sensor.uber/
|
||||
[sensor.waqi docs]: https://home-assistant.io/components/sensor.waqi/
|
||||
[sensor.yweather docs]: https://home-assistant.io/components/sensor.yweather/
|
||||
[sensor.zha docs]: https://home-assistant.io/components/sensor.zha/
|
||||
[snips docs]: https://home-assistant.io/components/snips/
|
||||
[switch.broadlink docs]: https://home-assistant.io/components/switch.broadlink/
|
||||
[switch.dlink docs]: https://home-assistant.io/components/switch.dlink/
|
||||
[switch.modbus docs]: https://home-assistant.io/components/switch.modbus/
|
||||
[switch.rachio docs]: https://home-assistant.io/components/switch.rachio/
|
||||
[switch.rflink docs]: https://home-assistant.io/components/switch.rflink/
|
||||
[switch.xiaomi_vacuum docs]: https://home-assistant.io/components/switch.xiaomi_vacuum/
|
||||
[tado docs]: https://home-assistant.io/components/tado/
|
||||
[tts docs]: https://home-assistant.io/components/tts/
|
||||
[tts.amazon_polly docs]: https://home-assistant.io/components/tts.amazon_polly/
|
||||
[upnp docs]: https://home-assistant.io/components/upnp/
|
||||
[velux docs]: https://home-assistant.io/components/velux/
|
||||
[frontend docs]: https://home-assistant.io/components/frontend/
|
||||
[vera docs]: https://home-assistant.io/components/vera/
|
||||
[verisure docs]: https://home-assistant.io/components/verisure/
|
||||
[wake_on_lan docs]: https://home-assistant.io/components/wake_on_lan/
|
||||
[weather.buienradar docs]: https://home-assistant.io/components/weather.buienradar/
|
||||
[weather.openweathermap docs]: https://home-assistant.io/components/weather.openweathermap/
|
||||
[zha docs]: https://home-assistant.io/components/zha/
|
||||
[zha.const docs]: https://home-assistant.io/components/zha.const/
|
||||
[forum]: https://community.home-assistant.io/
|
||||
[issue]: https://github.com/home-assistant/home-assistant/issues
|
||||
[discord]: https://discord.gg/c5DvZ4e
|
@ -46,6 +46,7 @@ def setup(hass, config):
|
||||
|
||||
# Listener to handle fired events
|
||||
def handle_event(event):
|
||||
nonlocal count
|
||||
count += 1
|
||||
print('Total events received:', count)
|
||||
|
||||
|
BIN
source/images/blog/2017-07-0.49/components.png
Normal file
BIN
source/images/blog/2017-07-0.49/components.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
BIN
source/images/blog/2017-07-0.49/green-theme.png
Normal file
BIN
source/images/blog/2017-07-0.49/green-theme.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
BIN
source/images/supported_brands/prometheus.png
Normal file
BIN
source/images/supported_brands/prometheus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
BIN
source/images/supported_brands/velux.png
Normal file
BIN
source/images/supported_brands/velux.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1018 B |
BIN
source/images/supported_brands/vizio-smartcast.png
Normal file
BIN
source/images/supported_brands/vizio-smartcast.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
x
Reference in New Issue
Block a user