From 5411c97f316f8b634924bd07fb0363292245d4e2 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 8 May 2019 20:39:46 -0700 Subject: [PATCH 01/15] Don't feature nest --- source/_components/nest.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/nest.markdown b/source/_components/nest.markdown index c8b22981416..55a8da55918 100644 --- a/source/_components/nest.markdown +++ b/source/_components/nest.markdown @@ -14,7 +14,7 @@ ha_category: - Camera - Climate - Sensor -featured: true +featured: false ha_iot_class: Cloud Push redirect_from: - /components/binary_sensor.nest/ From 336546bf3f469f3debb7e98485fc6c75aa9e434c Mon Sep 17 00:00:00 2001 From: Villhellm Date: Wed, 8 May 2019 23:31:24 -0700 Subject: [PATCH 02/15] Added the maximum possible number of characters (#9421) --- source/_components/input_text.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/input_text.markdown b/source/_components/input_text.markdown index 4907e82659a..a35e70bf7d9 100644 --- a/source/_components/input_text.markdown +++ b/source/_components/input_text.markdown @@ -49,7 +49,7 @@ input_text: type: integer default: 0 max: - description: Maximum length for the text value. + description: Maximum length for the text value. 255 is the maximum number of characters allowed in an entity state. required: false type: integer default: 100 From 111237eaa70205e4fee5e2c93365ce0c1156e087 Mon Sep 17 00:00:00 2001 From: UiGuy Date: Thu, 9 May 2019 08:01:14 +0100 Subject: [PATCH 03/15] EU Safety warning (and ban) on product Orvibo S20 Smart Plug (#9418) * EU Safety warning (and ban) on product Orvibo S20 * Make it a warning --- source/_components/orvibo.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/_components/orvibo.markdown b/source/_components/orvibo.markdown index 0448625aac2..b36f3c97f3c 100644 --- a/source/_components/orvibo.markdown +++ b/source/_components/orvibo.markdown @@ -14,6 +14,11 @@ redirect_from: - /components/switch.orvibo/ --- +

+Please be aware that the product ORVIBO WIFI SMART SOCKET S20 (LGS-20) has been recalled by the European authorities due to safety concerns. For more information, please visit [RAPEX information](https://ec.europa.eu/consumers/consumers_safety/safety_products/rapex/alerts/?event=main.listNotifications&lng=en). +

+ + The `orvibo` switch platform allows you to toggle your Orvibo S20 Wifi Smart Sockets. To automatically discover Orvibo sockets on your network: From 42e26897b9f64e38503593dc129e802b83aa6455 Mon Sep 17 00:00:00 2001 From: tiagofreire-pt <41837236+tiagofreire-pt@users.noreply.github.com> Date: Thu, 9 May 2019 08:01:25 +0100 Subject: [PATCH 04/15] Host and Listen_Port for Echo Dot 3 (#9419) * Host and Listen_Port for Echo Dot 3 * Update (change to listen_port from port) --- source/_components/emulated_hue.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/_components/emulated_hue.markdown b/source/_components/emulated_hue.markdown index d766b0604db..1f29ba67abb 100644 --- a/source/_components/emulated_hue.markdown +++ b/source/_components/emulated_hue.markdown @@ -48,6 +48,9 @@ emulated_hue: ```yaml # Amazon Echo example configuration.yaml entry emulated_hue: +# Required for Echo Dot 3 + host_ip: YOUR.HASSIO.IP.ADDRESS + listen_port: 80 ``` {% configuration %} From 07cf9a6474b0c185a5dd631b5b8457fed6f72bc5 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 10 May 2019 22:43:41 +0200 Subject: [PATCH 05/15] Update MQTT discovery examples (#9315) * Update discovery.markdown * Update discovery.markdown --- source/_docs/mqtt/discovery.markdown | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/source/_docs/mqtt/discovery.markdown b/source/_docs/mqtt/discovery.markdown index 0be6a1714b5..573f64dd174 100644 --- a/source/_docs/mqtt/discovery.markdown +++ b/source/_docs/mqtt/discovery.markdown @@ -55,15 +55,16 @@ The [embedded MQTT broker](/docs/mqtt/broker#embedded-broker) does not save any The discovery topic need to follow a specific format: ```text -//[/]/<> +//[/]/config ``` -- ``: One of the supported components, eg. `binary_sensor`. -- `` (*Optional*): ID of the node providing the topic. +- ``: One of the supported MQTT components, eg. `binary_sensor`. +- `` (*Optional*): ID of the node providing the topic, this is not used by Home Assistant but may be used to structure the MQTT topic. - ``: The ID of the device. This is only to allow for separate topics for each device and is not used for the `entity_id`. -- `<>`: The topic `config` or `state` which defines the current action. -The payload will be checked like an entry in your `configuration.yaml` file if a new device is added. This means that missing variables will be filled with the platform's default values. All configuration variables which are *required* must be present in the initial payload send to `/config`. +The payload must be a JSON dictionary and will be checked like an entry in your `configuration.yaml` file if a new device is added. This means that missing variables will be filled with the platform's default values. All configuration variables which are *required* must be present in the initial payload send to `/config`. + +If the component is `alarm_control_panel`, `binary_sensor`, or `sensor` and the mandatory `state_topic` is not present in the payload, `state_topic` will be automatically set to //[/]/state. The automatic setting of `state_topic` id depracated and may be removed in a future version of Home Assistant. An empty payload will cause a previously discovered device to be deleted. @@ -222,16 +223,16 @@ The following software has built-in support for MQTT discovery: ### {% linkable_title Examples %} -A motion detection device which can be represented by a [binary sensor](/components/binary_sensor.mqtt/) for your garden would sent its configuration as JSON payload to the Configuration topic. After the first message to `config`, then the MQTT messages sent to the state topic will update the state in Home Assistant. +A motion detection device which can be represented by a [binary sensor](/components/binary_sensor.mqtt/) for your garden would send its configuration as JSON payload to the Configuration topic. After the first message to `config`, then the MQTT messages sent to the state topic will update the state in Home Assistant. - Configuration topic: `homeassistant/binary_sensor/garden/config` - State topic: `homeassistant/binary_sensor/garden/state` -- Payload: `{"name": "garden", "device_class": "motion"}` +- Payload: `{"name": "garden", "device_class": "motion", "state_topic": "homeassistant/binary_sensor/garden/state"}` To create a new sensor manually. For more details please refer to the [MQTT testing section](/docs/mqtt/testing/). ```bash -$ mosquitto_pub -h 127.0.0.1 -p 1883 -t "homeassistant/binary_sensor/garden/config" -m '{"name": "garden", "device_class": "motion"}' +$ mosquitto_pub -h 127.0.0.1 -p 1883 -t "homeassistant/binary_sensor/garden/config" -m '{"name": "garden", "device_class": "motion", "state_topic": "homeassistant/binary_sensor/garden/state"}' ``` Update the state. @@ -249,11 +250,12 @@ Setting up a switch is similar but requires a `command_topic` as mentioned in th - Configuration topic: `homeassistant/switch/irrigation/config` - State topic: `homeassistant/switch/irrigation/state` -- Payload: `{"name": "garden", "command_topic": "homeassistant/switch/irrigation/set"}` +- Command topic: `homeassistant/switch/irrigation/set` +- Payload: `{"name": "garden", "command_topic": "homeassistant/switch/irrigation/set", "state_topic": "homeassistant/switch/irrigation/state"}` ```bash $ mosquitto_pub -h 127.0.0.1 -p 1883 -t "homeassistant/switch/irrigation/config" \ - -m '{"name": "garden", "command_topic": "homeassistant/switch/irrigation/set"}' + -m '{"name": "garden", "command_topic": "homeassistant/switch/irrigation/set", "state_topic": "homeassistant/switch/irrigation/state"}' ``` Set the state. From bf12a9c3bfc9fd4b9de8efc1dd93204b18b0abc7 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 10 May 2019 22:44:47 +0200 Subject: [PATCH 06/15] Update mqtt configuration example to use external broker (#9316) * Update mqtt.markdown * Update source/_docs/mqtt.markdown Co-Authored-By: emontnemery --- source/_docs/mqtt.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/_docs/mqtt.markdown b/source/_docs/mqtt.markdown index 072561f9912..30a57287968 100644 --- a/source/_docs/mqtt.markdown +++ b/source/_docs/mqtt.markdown @@ -11,14 +11,15 @@ footer: true MQTT (aka MQ Telemetry Transport) is a machine-to-machine or "Internet of Things" connectivity protocol on top of TCP/IP. It allows extremely lightweight publish/subscribe messaging transport. -To integrate MQTT into Home Assistant, add the following section to your `configuration.yaml` file. Keep in mind that the minimal setup will run with [an embedded MQTT broker](/docs/mqtt/broker#embedded-broker): +To integrate MQTT into Home Assistant, add the following section to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry mqtt: + broker: IP_ADDRESS ``` -For other setup methods, please refer to the [MQTT broker](/docs/mqtt/broker) documentation. +For detailed setup instructions, please refer to the [MQTT broker](/docs/mqtt/broker) documentation. ## {% linkable_title Additional features %} From 0d5f2ff4076eafc00160912460d60932657e5ea7 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Fri, 10 May 2019 22:50:21 +0200 Subject: [PATCH 07/15] :pencil2: Change EU Safety warning url for Orvibo (#9427) --- source/_components/orvibo.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/orvibo.markdown b/source/_components/orvibo.markdown index b36f3c97f3c..2dab44ae5d9 100644 --- a/source/_components/orvibo.markdown +++ b/source/_components/orvibo.markdown @@ -15,7 +15,7 @@ redirect_from: ---

-Please be aware that the product ORVIBO WIFI SMART SOCKET S20 (LGS-20) has been recalled by the European authorities due to safety concerns. For more information, please visit [RAPEX information](https://ec.europa.eu/consumers/consumers_safety/safety_products/rapex/alerts/?event=main.listNotifications&lng=en). +Please be aware that the product ORVIBO WIFI SMART SOCKET S20 (LGS-20) has been recalled by the European authorities due to safety concerns. For more information, please visit [RAPEX information](https://ec.europa.eu/consumers/consumers_safety/safety_products/rapex/alerts/?event=viewProduct&reference=A12/1577/15&lng=en).

From cbf6f5fe5af32a11a1183d67bddacaf9a8cf275d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBuralski?= <20515925+piotr-zuralski@users.noreply.github.com> Date: Sat, 11 May 2019 09:37:25 +0200 Subject: [PATCH 08/15] fix redirect_from annotation problem - some annotation where in the middle of the page, some were more than one time in header (#9431) --- source/_components/airvisual.markdown | 4 ---- source/_components/clicksend_tts.markdown | 3 +-- source/_components/darksky.markdown | 2 +- source/_components/econet.markdown | 2 +- source/_components/entur_public_transport.markdown | 6 +----- source/_components/ffmpeg_motion.markdown | 2 +- source/_components/iss.markdown | 2 +- source/_components/loopenergy.markdown | 2 +- source/_components/nello.markdown | 2 -- source/_components/openalpr_local.markdown | 2 +- source/_components/opensensemap.markdown | 2 +- source/_components/pollen.markdown | 4 ---- 12 files changed, 9 insertions(+), 24 deletions(-) diff --git a/source/_components/airvisual.markdown b/source/_components/airvisual.markdown index 9b66d39cb23..2b02bc3b079 100644 --- a/source/_components/airvisual.markdown +++ b/source/_components/airvisual.markdown @@ -140,8 +140,6 @@ When configured, the platform will create three sensors for each configured air - **Explanation:** AQI | Status | Description -redirect_from: - - /components/sensor.airvisual/ ------- | :----------------: | ---------- 0 - 50 | **Good** | Air quality is considered satisfactory, and air pollution poses little or no risk 51 - 100 | **Moderate** | Air quality is acceptable; however, for some pollutants there may be a moderate health concern for a very small number of people who are unusually sensitive to air pollution @@ -164,8 +162,6 @@ redirect_from: - **Explanation:** Pollutant | Symbol | More Info -redirect_from: - - /components/sensor.airvisual/ ------- | :----------------: | ---------- Particulate (<= 2.5 μm) | PM2.5 | [EPA: Particulate Matter (PM) Pollution ](https://www.epa.gov/pm-pollution) Particulate (<= 10 μm) | PM10 | [EPA: Particulate Matter (PM) Pollution ](https://www.epa.gov/pm-pollution) diff --git a/source/_components/clicksend_tts.markdown b/source/_components/clicksend_tts.markdown index 70b2738cbd3..2f3d9a74e1e 100644 --- a/source/_components/clicksend_tts.markdown +++ b/source/_components/clicksend_tts.markdown @@ -12,8 +12,7 @@ ha_category: - Notifications ha_release: 0.55 redirect_from: - - /components/notify.clicksendaudio/ -redirect_from: + - /components/notify.clicksendaudio/ - /components/notify.clicksend_tts/ --- diff --git a/source/_components/darksky.markdown b/source/_components/darksky.markdown index 47429782a68..67c302f9340 100644 --- a/source/_components/darksky.markdown +++ b/source/_components/darksky.markdown @@ -10,10 +10,10 @@ footer: true logo: dark_sky.png ha_category: Weather ha_release: "0.30" -redirect_from: /components/sensor.forecast/ ha_iot_class: Cloud Polling redirect_from: - /components/sensor.darksky/ + - /components/sensor.forecast/ --- The `darksky` platform uses the [Dark Sky](https://darksky.net/) web service as a source for meteorological data for your location. The location is based on the `longitude` and `latitude` coordinates configured in your `configuration.yaml` file. The coordinates are auto-detected but to take advantage of the hyper-local weather reported by Dark Sky, you can refine them down to your exact home address. GPS coordinates can be found by using [Google Maps](https://www.google.com/maps) and clicking on your home or [Openstreetmap](http://www.openstreetmap.org/). diff --git a/source/_components/econet.markdown b/source/_components/econet.markdown index 52c5ec15596..7623d0fa5e2 100644 --- a/source/_components/econet.markdown +++ b/source/_components/econet.markdown @@ -11,9 +11,9 @@ logo: econet.png ha_category: Water heater ha_release: 0.61 ha_iot_class: Cloud Polling -redirect_from: /components/climate.econet/ redirect_from: - /components/water_heater.econet/ + - /components/climate.econet/ --- The `econet` water heater platform is consuming the information provided by a [EcoNet enabled Rheem water heater](http://www.rheem.com/EcoNet/Home). This platform allows you to set the temperature, the operation mode, and enable vacation mode. diff --git a/source/_components/entur_public_transport.markdown b/source/_components/entur_public_transport.markdown index 2685aeddad3..e3c70d3277e 100644 --- a/source/_components/entur_public_transport.markdown +++ b/source/_components/entur_public_transport.markdown @@ -122,17 +122,13 @@ The stop id is the content after `id=` parameter in the url. Copy paste this int **Q:** I have multiple stop ids and have added whitelisting of a line. Now some of the stop places are showing `unknown`. **A:** A whitelisting of lines takes affect on all of the stops. So you have to whitelist all lines you are interested in on all stop places. - -redirect_from: - - /components/sensor.entur_public_transport/ + --- **Q:** I have added whitelisting of lines, and everything has worked as fine before, but now it has stopped updating all of a sudden. **A:** Some transport companies, such as Kolumbus in Rogaland, have running numbers on the end of their line ids. These gets periodically updated and will make the whitelisting invalid. The new line ids needs to be added again. Most of the time it iterates by one. -redirect_from: - - /components/sensor.entur_public_transport/ --- **Q:** Where do I find a line id to add to the whitelisting? diff --git a/source/_components/ffmpeg_motion.markdown b/source/_components/ffmpeg_motion.markdown index febba3a2d55..eb857eec050 100644 --- a/source/_components/ffmpeg_motion.markdown +++ b/source/_components/ffmpeg_motion.markdown @@ -10,8 +10,8 @@ footer: true logo: ffmpeg.png ha_category: Image Processing ha_release: 0.27 -redirect_from: /components/binary_sensor.ffmpeg/ redirect_from: + - /components/binary_sensor.ffmpeg/ - /components/binary_sensor.ffmpeg_motion/ --- diff --git a/source/_components/iss.markdown b/source/_components/iss.markdown index c47ab913ebb..06942b51906 100644 --- a/source/_components/iss.markdown +++ b/source/_components/iss.markdown @@ -10,8 +10,8 @@ footer: true logo: nasa.png ha_category: Binary Sensor ha_release: 0.36 -redirect_from: /components/sensor.iss/ redirect_from: + - /components/sensor.iss/ - /components/binary_sensor.iss/ --- diff --git a/source/_components/loopenergy.markdown b/source/_components/loopenergy.markdown index eb5162e03fa..21a73ab9cc4 100644 --- a/source/_components/loopenergy.markdown +++ b/source/_components/loopenergy.markdown @@ -11,8 +11,8 @@ logo: loop.png ha_category: Energy ha_release: 0.17 ha_iot_class: Cloud Push -redirect_from: /components/sensor.loop_energy/ redirect_from: + - /components/sensor.loop_energy/ - /components/sensor.loopenergy/ --- diff --git a/source/_components/nello.markdown b/source/_components/nello.markdown index d8dedd33761..f21525690ba 100644 --- a/source/_components/nello.markdown +++ b/source/_components/nello.markdown @@ -54,8 +54,6 @@ password: Every time someone rings the bell, a `nello_bell_ring` event will be fired. Field | Description -redirect_from: - - /components/lock.nello/ ----- | ----------- `address` | Postal address of the lock. `date` | Date when the event occurred. diff --git a/source/_components/openalpr_local.markdown b/source/_components/openalpr_local.markdown index 19005582ab0..9b480382bbe 100644 --- a/source/_components/openalpr_local.markdown +++ b/source/_components/openalpr_local.markdown @@ -10,8 +10,8 @@ footer: true logo: openalpr.png ha_category: Image Processing ha_release: 0.36 -redirect_from: /components/openalpr/ redirect_from: + - /components/openalpr/ - /components/image_processing.openalpr_local/ --- diff --git a/source/_components/opensensemap.markdown b/source/_components/opensensemap.markdown index 75fb2240d89..9d13c3e2395 100644 --- a/source/_components/opensensemap.markdown +++ b/source/_components/opensensemap.markdown @@ -11,8 +11,8 @@ logo: opensensemap.png ha_category: Health ha_release: 0.85 ha_iot_class: Cloud Polling -redirect_from: /components/air_pollutants.opensensemap/ redirect_from: + - /components/air_pollutants.opensensemap/ - /components/air_quality.opensensemap/ --- diff --git a/source/_components/pollen.markdown b/source/_components/pollen.markdown index 85a84cfe030..743517ea164 100644 --- a/source/_components/pollen.markdown +++ b/source/_components/pollen.markdown @@ -86,8 +86,6 @@ Any index-related sensor will have a value between 0.0 and 12.0. The values map to the following human-friendly ratings: Range | Rating -redirect_from: - - /components/sensor.pollen/ --------- | ----------- 0.0 - 2.4 | Low 2.5 - 4.8 | Low/Medium @@ -102,8 +100,6 @@ Several asthma-related sensors carry information regarding the top three Example values include: Pollutant | Symbol | More Info -redirect_from: - - /components/sensor.pollen/ --------- | ------ | --------- Particulate (<= 2.5 μm) | PM2.5 | [EPA: Particulate Matter (PM) Pollution](https://www.epa.gov/pm-pollution) Particulate (<= 10 μm) | PM10 | [EPA: Particulate Matter (PM) Pollution](https://www.epa.gov/pm-pollution) From 6cbcc1acdcc50ce8ec64490e86de70b113e6937d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBuralski?= <20515925+piotr-zuralski@users.noreply.github.com> Date: Sat, 11 May 2019 09:46:28 +0200 Subject: [PATCH 09/15] fixing ha_category components annotation (#9432) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fixing ha_category components annotation Signed-off-by: Piotr Żuralski * :pencil2: Tweak --- source/_components/acer_projector.markdown | 3 ++- source/_components/actiontec.markdown | 3 ++- source/_components/aftership.markdown | 3 ++- source/_components/airvisual.markdown | 3 ++- source/_components/aladdin_connect.markdown | 3 ++- source/_components/alarm_control_panel.ifttt.markdown | 3 ++- source/_components/alarm_control_panel.mqtt.markdown | 3 ++- source/_components/alarmdotcom.markdown | 3 ++- source/_components/alert.markdown | 3 ++- source/_components/alexa.flash_briefings.markdown | 3 ++- source/_components/alexa.intent.markdown | 3 ++- source/_components/alexa.markdown | 3 ++- source/_components/alexa.smart_home.markdown | 3 ++- source/_components/alpha_vantage.markdown | 3 ++- source/_components/amazon_polly.markdown | 3 ++- source/_components/ambient_station.markdown | 3 ++- source/_components/androidtv.markdown | 3 ++- source/_components/anel_pwrctrl.markdown | 3 ++- source/_components/anthemav.markdown | 3 ++- source/_components/api.markdown | 3 ++- source/_components/apns.markdown | 3 ++- source/_components/aquostv.markdown | 3 ++- source/_components/aruba.markdown | 3 ++- source/_components/arwn.markdown | 3 ++- source/_components/asterisk_cdr.markdown | 3 ++- source/_components/asterisk_mbox.markdown | 3 ++- source/_components/aurora.markdown | 3 ++- source/_components/auth.markdown | 3 ++- source/_components/automatic.markdown | 3 ++- source/_components/automation.markdown | 3 ++- source/_components/avion.markdown | 3 ++- source/_components/awair.markdown | 3 ++- source/_components/baidu.markdown | 3 ++- source/_components/bayesian.markdown | 3 ++- source/_components/bh1750.markdown | 3 ++- source/_components/binary_sensor.knx.markdown | 3 ++- source/_components/binary_sensor.modbus.markdown | 3 ++- source/_components/binary_sensor.mqtt.markdown | 3 ++- source/_components/binary_sensor.netatmo.markdown | 3 ++- source/_components/binary_sensor.rest.markdown | 3 ++- source/_components/binary_sensor.rflink.markdown | 3 ++- source/_components/binary_sensor.rfxtrx.markdown | 3 ++- source/_components/binary_sensor.template.markdown | 3 ++- source/_components/binary_sensor.xiaomi_aqara.markdown | 3 ++- source/_components/bitcoin.markdown | 3 ++- source/_components/blackbird.markdown | 3 ++- source/_components/blinksticklight.markdown | 3 ++- source/_components/blinkt.markdown | 3 ++- source/_components/blockchain.markdown | 3 ++- source/_components/bluesound.markdown | 3 ++- source/_components/bluetooth_le_tracker.markdown | 3 ++- source/_components/bluetooth_tracker.markdown | 3 ++- source/_components/bme280.markdown | 3 ++- source/_components/bme680.markdown | 3 ++- source/_components/braviatv.markdown | 3 ++- source/_components/broadcast.markdown | 3 ++- source/_components/brottsplatskartan.markdown | 3 ++- source/_components/browser.markdown | 3 ++- source/_components/brunt.markdown | 3 ++- source/_components/bt_home_hub_5.markdown | 3 ++- source/_components/bt_smarthub.markdown | 3 ++- source/_components/buienradar.markdown | 3 ++- source/_components/caldav.markdown | 3 ++- source/_components/calendar.google.markdown | 3 ++- source/_components/camera.ffmpeg.markdown | 3 ++- source/_components/camera.mqtt.markdown | 3 ++- source/_components/camera.netatmo.markdown | 3 ++- source/_components/cast.markdown | 3 ++- source/_components/cert_expiry.markdown | 3 ++- source/_components/channels.markdown | 3 ++- source/_components/cisco_ios.markdown | 3 ++- source/_components/cisco_mobility_express.markdown | 3 ++- source/_components/cisco_webex_teams.markdown | 3 ++- source/_components/ciscospark.markdown | 3 ++- source/_components/citybikes.markdown | 3 ++- source/_components/clementine.markdown | 3 ++- source/_components/clickatell.markdown | 3 ++- source/_components/clicksend.markdown | 3 ++- source/_components/climate.knx.markdown | 3 ++- source/_components/climate.modbus.markdown | 3 ++- source/_components/climate.mqtt.markdown | 3 ++- source/_components/climate.netatmo.markdown | 3 ++- source/_components/cloud.markdown | 3 ++- source/_components/cloudflare.markdown | 3 ++- source/_components/cmus.markdown | 3 ++- source/_components/co2signal.markdown | 3 ++- source/_components/coinmarketcap.markdown | 3 ++- source/_components/comed_hourly_pricing.markdown | 3 ++- source/_components/command_line.markdown | 3 ++- source/_components/config.markdown | 3 ++- source/_components/configurator.markdown | 3 ++- source/_components/conversation.markdown | 3 ++- source/_components/coolmaster.markdown | 3 ++- source/_components/counter.markdown | 3 ++- source/_components/cover.command_line.markdown | 3 ++- source/_components/cover.group.markdown | 3 ++- source/_components/cover.knx.markdown | 3 ++- source/_components/cover.mqtt.markdown | 3 ++- source/_components/cover.rflink.markdown | 3 ++- source/_components/cover.rfxtrx.markdown | 3 ++- source/_components/cover.template.markdown | 3 ++- source/_components/cover.xiaomi_aqara.markdown | 3 ++- source/_components/cppm.markdown | 3 ++- source/_components/cpuspeed.markdown | 3 ++- source/_components/crimereports.markdown | 3 ++- source/_components/cups.markdown | 3 ++- source/_components/currencylayer.markdown | 3 ++- source/_components/darksky.markdown | 3 ++- source/_components/datadog.markdown | 3 ++- source/_components/ddwrt.markdown | 3 ++- source/_components/decora.markdown | 3 ++- source/_components/decora_wifi.markdown | 3 ++- source/_components/default_config.markdown | 3 ++- source/_components/demo.markdown | 3 ++- source/_components/denon.markdown | 3 ++- source/_components/denonavr.markdown | 3 ++- source/_components/deutsche_bahn.markdown | 3 ++- source/_components/device_sun_light_trigger.markdown | 3 ++- source/_components/device_tracker.mqtt.markdown | 3 ++- source/_components/device_tracker.xiaomi.markdown | 3 ++- source/_components/dht.markdown | 3 ++- source/_components/dialogflow.markdown | 3 ++- source/_components/digitalloggers.markdown | 3 ++- source/_components/directv.markdown | 3 ++- source/_components/discogs.markdown | 3 ++- source/_components/discord.markdown | 3 ++- source/_components/discovery.markdown | 3 ++- source/_components/dispatcher.markdown | 3 ++- source/_components/dlib_face_detect.markdown | 3 ++- source/_components/dlib_face_identify.markdown | 3 ++- source/_components/dlink.markdown | 3 ++- source/_components/dlna_dmr.markdown | 3 ++- source/_components/dnsip.markdown | 3 ++- source/_components/dominos.markdown | 3 ++- source/_components/downloader.markdown | 3 ++- source/_components/dsmr.markdown | 3 ++- source/_components/dte_energy_bridge.markdown | 3 ++- source/_components/dublin_bus_transport.markdown | 3 ++- source/_components/duckdns.markdown | 3 ++- source/_components/duke_energy.markdown | 3 ++- source/_components/dunehd.markdown | 3 ++- source/_components/dwd_weather_warnings.markdown | 3 ++- source/_components/ebox.markdown | 3 ++- source/_components/ebusd.markdown | 3 ++- source/_components/ecoal_boiler.markdown | 3 ++- source/_components/econet.markdown | 3 ++- source/_components/eddystone_temperature.markdown | 3 ++- source/_components/edimax.markdown | 3 ++- source/_components/ee_brightbox.markdown | 3 ++- source/_components/efergy.markdown | 3 ++- source/_components/eliqonline.markdown | 3 ++- source/_components/emby.markdown | 3 ++- source/_components/emoncms.markdown | 3 ++- source/_components/emoncms_history.markdown | 3 ++- source/_components/emulated_hue.markdown | 3 ++- source/_components/emulated_roku.markdown | 3 ++- source/_components/enigma2.markdown | 3 ++- source/_components/enphase_envoy.markdown | 3 ++- source/_components/entur_public_transport.markdown | 3 ++- source/_components/envirophat.markdown | 3 ++- source/_components/ephember.markdown | 3 ++- source/_components/epson.markdown | 3 ++- source/_components/epsonworkforce.markdown | 3 ++- source/_components/eq3btsmart.markdown | 3 ++- source/_components/esphome.markdown | 3 ++- source/_components/etherscan.markdown | 3 ++- source/_components/everlights.markdown | 3 ++- source/_components/facebook.markdown | 3 ++- source/_components/facebox.markdown | 3 ++- source/_components/fail2ban.markdown | 3 ++- source/_components/familyhub.markdown | 3 ++- source/_components/fan.mqtt.markdown | 3 ++- source/_components/fan.template.markdown | 3 ++- source/_components/fan.xiaomi_miio.markdown | 3 ++- source/_components/fedex.markdown | 3 ++- source/_components/feedreader.markdown | 3 ++- source/_components/ffmpeg.markdown | 3 ++- source/_components/ffmpeg_motion.markdown | 3 ++- source/_components/ffmpeg_noise.markdown | 3 ++- source/_components/fido.markdown | 3 ++- source/_components/filesize.markdown | 3 ++- source/_components/filter.markdown | 3 ++- source/_components/fints.markdown | 3 ++- source/_components/fitbit.markdown | 3 ++- source/_components/fixer.markdown | 3 ++- source/_components/flexit.markdown | 3 ++- source/_components/flic.markdown | 3 ++- source/_components/flock.markdown | 3 ++- source/_components/flunearyou.markdown | 3 ++- source/_components/flux.markdown | 3 ++- source/_components/flux_led.markdown | 3 ++- source/_components/folder.markdown | 3 ++- source/_components/folder_watcher.markdown | 3 ++- source/_components/foobot.markdown | 3 ++- source/_components/foscam.markdown | 3 ++- source/_components/foursquare.markdown | 3 ++- source/_components/free_mobile.markdown | 3 ++- source/_components/freedns.markdown | 3 ++- source/_components/fritz.markdown | 3 ++- source/_components/fritzbox_callmonitor.markdown | 3 ++- source/_components/fritzbox_netmonitor.markdown | 3 ++- source/_components/fritzdect.markdown | 3 ++- source/_components/frontend.markdown | 3 ++- source/_components/frontier_silicon.markdown | 3 ++- source/_components/futurenow.markdown | 3 ++- source/_components/garadget.markdown | 3 ++- source/_components/gearbest.markdown | 3 ++- source/_components/geizhals.markdown | 3 ++- source/_components/generic.markdown | 3 ++- source/_components/generic_thermostat.markdown | 3 ++- source/_components/geo_json_events.markdown | 3 ++- source/_components/geo_rss_events.markdown | 3 ++- source/_components/github.markdown | 3 ++- source/_components/gitlab_ci.markdown | 3 ++- source/_components/gitter.markdown | 3 ++- source/_components/glances.markdown | 3 ++- source/_components/gntp.markdown | 3 ++- source/_components/goalfeed.markdown | 3 ++- source/_components/gogogate2.markdown | 3 ++- source/_components/google_assistant.markdown | 3 ++- source/_components/google_domains.markdown | 3 ++- source/_components/google_maps.markdown | 3 ++- source/_components/google_pubsub.markdown | 3 ++- source/_components/google_translate.markdown | 3 ++- source/_components/google_travel_time.markdown | 3 ++- source/_components/google_wifi.markdown | 3 ++- source/_components/gpmdp.markdown | 3 ++- source/_components/gpsd.markdown | 3 ++- source/_components/graphite.markdown | 3 ++- source/_components/greenwave.markdown | 3 ++- source/_components/group.markdown | 3 ++- source/_components/gstreamer.markdown | 3 ++- source/_components/gtfs.markdown | 3 ++- source/_components/gtt.markdown | 3 ++- source/_components/harman_kardon_avr.markdown | 3 ++- source/_components/harmony.markdown | 3 ++- source/_components/haveibeenpwned.markdown | 3 ++- source/_components/hddtemp.markdown | 3 ++- source/_components/hdmi_cec.markdown | 3 ++- source/_components/heatmiser.markdown | 3 ++- source/_components/heos.markdown | 3 ++- source/_components/hikvision.markdown | 3 ++- source/_components/hikvisioncam.markdown | 3 ++- source/_components/hipchat.markdown | 3 ++- source/_components/history.markdown | 3 ++- source/_components/history_graph.markdown | 3 ++- source/_components/history_stats.markdown | 3 ++- source/_components/hitron_coda.markdown | 3 ++- source/_components/homekit.markdown | 3 ++- source/_components/honeywell.markdown | 3 ++- source/_components/hook.markdown | 3 ++- source/_components/horizon.markdown | 3 ++- source/_components/hp_ilo.markdown | 3 ++- source/_components/html5.markdown | 3 ++- source/_components/htu21d.markdown | 3 ++- source/_components/huawei_router.markdown | 3 ++- source/_components/hunterdouglas_powerview.markdown | 3 ++- source/_components/hydroquebec.markdown | 3 ++- source/_components/hyperion.markdown | 3 ++- source/_components/ialarm.markdown | 3 ++- source/_components/icloud.markdown | 3 ++- source/_components/idteck_prox.markdown | 3 ++- source/_components/ifttt.markdown | 3 ++- source/_components/iglo.markdown | 3 ++- source/_components/ign_sismologia.markdown | 3 ++- source/_components/imap.markdown | 3 ++- source/_components/imap_email_content.markdown | 3 ++- source/_components/input_boolean.markdown | 3 ++- source/_components/input_datetime.markdown | 3 ++- source/_components/input_number.markdown | 3 ++- source/_components/input_select.markdown | 3 ++- source/_components/input_text.markdown | 3 ++- source/_components/intent_script.markdown | 3 ++- source/_components/ios.markdown | 3 ++- source/_components/ipma.markdown | 3 ++- source/_components/irish_rail_transport.markdown | 3 ++- source/_components/islamic_prayer_times.markdown | 3 ++- source/_components/iss.markdown | 3 ++- source/_components/itach.markdown | 3 ++- source/_components/itunes.markdown | 3 ++- source/_components/jewish_calendar.markdown | 3 ++- source/_components/kankun.markdown | 3 ++- source/_components/keenetic_ndms2.markdown | 3 ++- source/_components/keyboard.markdown | 3 ++- source/_components/keyboard_remote.markdown | 3 ++- source/_components/kiwi.markdown | 3 ++- source/_components/knx.markdown | 3 ++- source/_components/kwb.markdown | 3 ++- source/_components/lacrosse.markdown | 3 ++- source/_components/lannouncer.markdown | 3 ++- source/_components/lastfm.markdown | 3 ++- source/_components/launch_library.markdown | 3 ++- source/_components/lg_netcast.markdown | 3 ++- source/_components/lg_soundbar.markdown | 3 ++- source/_components/lifx.markdown | 3 ++- source/_components/lifx_cloud.markdown | 3 ++- source/_components/light.group.markdown | 3 ++- source/_components/light.knx.markdown | 3 ++- source/_components/light.mqtt.markdown | 3 ++- source/_components/light.rflink.markdown | 3 ++- source/_components/light.rfxtrx.markdown | 3 ++- source/_components/light.switch.markdown | 3 ++- source/_components/light.template.markdown | 3 ++- source/_components/light.xiaomi_aqara.markdown | 3 ++- source/_components/light.xiaomi_miio.markdown | 3 ++- source/_components/limitlessled.markdown | 3 ++- source/_components/linksys_ap.markdown | 3 ++- source/_components/linksys_smart.markdown | 3 ++- source/_components/linky.markdown | 3 ++- source/_components/linux_battery.markdown | 3 ++- source/_components/lirc.markdown | 3 ++- source/_components/liveboxplaytv.markdown | 3 ++- source/_components/llamalab_automate.markdown | 3 ++- source/_components/local_file.markdown | 3 ++- source/_components/locative.md | 3 ++- source/_components/lock.mqtt.markdown | 3 ++- source/_components/lock.template.markdown | 3 ++- source/_components/lock.xiaomi_aqara.markdown | 3 ++- source/_components/lockitron.markdown | 3 ++- source/_components/logbook.markdown | 3 ++- source/_components/logentries.markdown | 3 ++- source/_components/logger.markdown | 3 ++- source/_components/london_air.markdown | 3 ++- source/_components/london_underground.markdown | 3 ++- source/_components/loopenergy.markdown | 3 ++- source/_components/luci.markdown | 3 ++- source/_components/lw12wifi.markdown | 3 ++- source/_components/lyft.markdown | 3 ++- source/_components/magicseaweed.markdown | 3 ++- source/_components/manual.markdown | 3 ++- source/_components/manual_mqtt.markdown | 3 ++- source/_components/map.markdown | 3 ++- source/_components/marytts.markdown | 3 ++- source/_components/mastodon.markdown | 3 ++- source/_components/media_extractor.markdown | 3 ++- source/_components/mediaroom.markdown | 3 ++- source/_components/meraki.markdown | 3 ++- source/_components/message_bird.markdown | 3 ++- source/_components/met.markdown | 3 ++- source/_components/metoffice.markdown | 3 ++- source/_components/mhz19.markdown | 3 ++- source/_components/microsoft.markdown | 3 ++- source/_components/microsoft_face.markdown | 3 ++- source/_components/microsoft_face_detect.markdown | 3 ++- source/_components/microsoft_face_identify.markdown | 3 ++- source/_components/miflora.markdown | 3 ++- source/_components/mikrotik.markdown | 3 ++- source/_components/mill.markdown | 3 ++- source/_components/min_max.markdown | 3 ++- source/_components/mitemp_bt.markdown | 3 ++- source/_components/mjpeg.markdown | 3 ++- source/_components/mobile_app.markdown | 3 ++- source/_components/modbus.markdown | 3 ++- source/_components/modem_callerid.markdown | 3 ++- source/_components/mold_indicator.markdown | 3 ++- source/_components/monoprice.markdown | 3 ++- source/_components/moon.markdown | 3 ++- source/_components/mpchc.markdown | 3 ++- source/_components/mpd.markdown | 3 ++- source/_components/mqtt.markdown | 3 ++- source/_components/mqtt_eventstream.markdown | 3 ++- source/_components/mqtt_json.markdown | 3 ++- source/_components/mqtt_room.markdown | 3 ++- source/_components/mqtt_statestream.markdown | 3 ++- source/_components/mvglive.markdown | 3 ++- source/_components/mychevy.markdown | 3 ++- source/_components/myq.markdown | 3 ++- source/_components/mysensors.markdown | 3 ++- source/_components/mythicbeastsdns.markdown | 3 ++- source/_components/nad.markdown | 3 ++- source/_components/namecheapdns.markdown | 3 ++- source/_components/nanoleaf.markdown | 3 ++- source/_components/nederlandse_spoorwegen.markdown | 3 ++- source/_components/nello.markdown | 3 ++- source/_components/netatmo.markdown | 3 ++- source/_components/netatmo_public.markdown | 3 ++- source/_components/netdata.markdown | 3 ++- source/_components/netgear.markdown | 3 ++- source/_components/netio.markdown | 3 ++- source/_components/neurio_energy.markdown | 3 ++- source/_components/nfandroidtv.markdown | 3 ++- source/_components/niko_home_control.markdown | 3 ++- source/_components/nilu.markdown | 3 ++- source/_components/nissan_leaf.markdown | 3 ++- source/_components/nmap_tracker.markdown | 3 ++- source/_components/nmbs.markdown | 3 ++- source/_components/no_ip.markdown | 3 ++- source/_components/noaa_tides.markdown | 3 ++- source/_components/norway_air.markdown | 3 ++- source/_components/notify.command_line.markdown | 3 ++- source/_components/notify.group.markdown | 3 ++- source/_components/notify.knx.markdown | 3 ++- source/_components/notify.rest.markdown | 3 ++- source/_components/nsw_fuel_station.markdown | 3 ++- source/_components/nsw_rural_fire_service_feed.markdown | 3 ++- source/_components/nuimo_controller.markdown | 3 ++- source/_components/nuki.markdown | 3 ++- source/_components/nut.markdown | 3 ++- source/_components/nzbget.markdown | 3 ++- source/_components/oem.markdown | 3 ++- source/_components/ohmconnect.markdown | 3 ++- source/_components/onboarding.markdown | 3 ++- source/_components/onewire.markdown | 3 ++- source/_components/onkyo.markdown | 3 ++- source/_components/onvif.markdown | 3 ++- source/_components/openalpr_cloud.markdown | 3 ++- source/_components/openalpr_local.markdown | 3 ++- source/_components/opencv.markdown | 3 ++- source/_components/openevse.markdown | 3 ++- source/_components/openexchangerates.markdown | 3 ++- source/_components/opengarage.markdown | 3 ++- source/_components/openhardwaremonitor.markdown | 3 ++- source/_components/openhome.markdown | 3 ++- source/_components/opensensemap.markdown | 3 ++- source/_components/opensky.markdown | 3 ++- source/_components/openwrt.markdown | 3 ++- source/_components/opple.markdown | 3 ++- source/_components/orvibo.markdown | 3 ++- source/_components/osramlightify.markdown | 3 ++- source/_components/otp.markdown | 3 ++- source/_components/owntracks.markdown | 3 ++- source/_components/panasonic_bluray.markdown | 3 ++- source/_components/panasonic_viera.markdown | 3 ++- source/_components/pandora.markdown | 3 ++- source/_components/panel_custom.markdown | 3 ++- source/_components/panel_iframe.markdown | 3 ++- source/_components/pencom.markdown | 3 ++- source/_components/persistent_notification.markdown | 3 ++- source/_components/person.markdown | 3 ++- source/_components/philips_js.markdown | 3 ++- source/_components/pi_hole.markdown | 3 ++- source/_components/picotts.markdown | 3 ++- source/_components/piglow.markdown | 3 ++- source/_components/pioneer.markdown | 3 ++- source/_components/pjlink.markdown | 3 ++- source/_components/plant.markdown | 3 ++- source/_components/plum_lightpad.markdown | 3 ++- source/_components/pocketcasts.markdown | 3 ++- source/_components/pollen.markdown | 3 ++- source/_components/polling.markdown | 3 ++- source/_components/postnl.markdown | 3 ++- source/_components/prezzibenzina.markdown | 3 ++- source/_components/proliphix.markdown | 3 ++- source/_components/prometheus.markdown | 3 ++- source/_components/prowl.markdown | 3 ++- source/_components/proximity.markdown | 3 ++- source/_components/proxy.markdown | 3 ++- source/_components/ps4.markdown | 3 ++- source/_components/pulseaudio_loopback.markdown | 3 ++- source/_components/push.markdown | 3 ++- source/_components/pushetta.markdown | 3 ++- source/_components/pushover.markdown | 3 ++- source/_components/pushsafer.markdown | 3 ++- source/_components/pvoutput.markdown | 3 ++- source/_components/pyload.markdown | 3 ++- source/_components/python_script.markdown | 3 ++- source/_components/qbittorrent.markdown | 3 ++- source/_components/qnap.markdown | 3 ++- source/_components/qrcode.markdown | 3 ++- source/_components/quantum_gateway.markdown | 3 ++- source/_components/radarr.markdown | 3 ++- source/_components/radiotherm.markdown | 3 ++- source/_components/raspyrfm.markdown | 3 ++- source/_components/recollect_waste.markdown | 3 ++- source/_components/recorder.markdown | 3 ++- source/_components/recswitch.markdown | 3 ++- source/_components/reddit.markdown | 3 ++- source/_components/rejseplanen.markdown | 3 ++- source/_components/remember_the_milk.markdown | 3 ++- source/_components/remote.xiaomi_miio.markdown | 3 ++- source/_components/rest.markdown | 3 ++- source/_components/rest_command.markdown | 3 ++- source/_components/rflink.markdown | 3 ++- source/_components/rfxtrx.markdown | 3 ++- source/_components/ripple.markdown | 3 ++- source/_components/ritassist.markdown | 3 ++- source/_components/rmvtransport.markdown | 3 ++- source/_components/rocketchat.markdown | 3 ++- source/_components/roomba.markdown | 3 ++- source/_components/route53.markdown | 3 ++- source/_components/rova.markdown | 3 ++- source/_components/rpi_camera.markdown | 3 ++- source/_components/rpi_gpio_pwm.markdown | 3 ++- source/_components/rpi_rf.markdown | 3 ++- source/_components/rss_feed_template.markdown | 3 ++- source/_components/rtorrent.markdown | 3 ++- source/_components/russound_rio.markdown | 3 ++- source/_components/russound_rnet.markdown | 3 ++- source/_components/ruter.markdown | 3 ++- source/_components/samsungtv.markdown | 3 ++- source/_components/scene.knx.markdown | 3 ++- source/_components/scene.markdown | 3 ++- source/_components/scrape.markdown | 3 ++- source/_components/script.markdown | 3 ++- source/_components/season.markdown | 3 ++- source/_components/sendgrid.markdown | 3 ++- source/_components/sensibo.markdown | 3 ++- source/_components/sensor.buienradar.markdown | 3 ++- source/_components/sensor.command_line.markdown | 3 ++- source/_components/sensor.ios.markdown | 3 ++- source/_components/sensor.knx.markdown | 3 ++- source/_components/sensor.metoffice.markdown | 3 ++- source/_components/sensor.modbus.markdown | 3 ++- source/_components/sensor.mqtt.markdown | 3 ++- source/_components/sensor.netatmo.markdown | 3 ++- source/_components/sensor.rflink.markdown | 3 ++- source/_components/sensor.rfxtrx.markdown | 3 ++- source/_components/sensor.websocket_api.markdown | 3 ++- source/_components/sensor.xiaomi_aqara.markdown | 3 ++- source/_components/sensor.xiaomi_miio.markdown | 3 ++- source/_components/serial.markdown | 3 ++- source/_components/serial_pm.markdown | 3 ++- source/_components/sesame.markdown | 3 ++- source/_components/seven_segments.markdown | 3 ++- source/_components/seventeentrack.markdown | 3 ++- source/_components/shell_command.markdown | 3 ++- source/_components/shiftr.markdown | 3 ++- source/_components/shodan.markdown | 3 ++- source/_components/shopping_list.markdown | 3 ++- source/_components/sht31.markdown | 3 ++- source/_components/sigfox.markdown | 3 ++- source/_components/simplepush.markdown | 3 ++- source/_components/simulated.markdown | 3 ++- source/_components/sky_hub.markdown | 3 ++- source/_components/skybeacon.markdown | 3 ++- source/_components/slack.markdown | 3 ++- source/_components/sma.markdown | 3 ++- source/_components/smtp.markdown | 3 ++- source/_components/snapcast.markdown | 3 ++- source/_components/snips.markdown | 3 ++- source/_components/sochain.markdown | 3 ++- source/_components/socialblade.markdown | 3 ++- source/_components/solaredge.markdown | 3 ++- source/_components/sonarr.markdown | 3 ++- source/_components/songpal.markdown | 3 ++- source/_components/sonos.markdown | 3 ++- source/_components/sony_projector.markdown | 3 ++- source/_components/soundtouch.markdown | 3 ++- source/_components/spaceapi.markdown | 3 ++- source/_components/splunk.markdown | 3 ++- source/_components/spotify.markdown | 3 ++- source/_components/sql.markdown | 3 ++- source/_components/squeezebox.markdown | 3 ++- source/_components/srp_energy.markdown | 3 ++- source/_components/starlingbank.markdown | 3 ++- source/_components/startca.markdown | 3 ++- source/_components/statistics.markdown | 3 ++- source/_components/statsd.markdown | 3 ++- source/_components/steam_online.markdown | 3 ++- source/_components/stream.markdown | 2 +- source/_components/stride.markdown | 3 ++- source/_components/sun.markdown | 3 ++- source/_components/supervisord.markdown | 3 ++- source/_components/swiss_hydrological_data.markdown | 3 ++- source/_components/swiss_public_transport.markdown | 3 ++- source/_components/swisscom.markdown | 3 ++- source/_components/switch.command_line.markdown | 3 ++- source/_components/switch.knx.markdown | 3 ++- source/_components/switch.modbus.markdown | 3 ++- source/_components/switch.mqtt.markdown | 3 ++- source/_components/switch.rest.markdown | 3 ++- source/_components/switch.rflink.markdown | 3 ++- source/_components/switch.rfxtrx.markdown | 3 ++- source/_components/switch.template.markdown | 3 ++- source/_components/switch.xiaomi_aqara.markdown | 3 ++- source/_components/switch.xiaomi_miio.markdown | 3 ++- source/_components/switchbot.markdown | 3 ++- source/_components/switchmate.markdown | 3 ++- source/_components/syncthru.markdown | 3 ++- source/_components/synology.markdown | 3 ++- source/_components/synology_chat.markdown | 3 ++- source/_components/synology_srm.markdown | 3 ++- source/_components/synologydsm.markdown | 3 ++- source/_components/syslog.markdown | 3 ++- source/_components/system_health.markdown | 3 ++- source/_components/system_log.markdown | 3 ++- source/_components/systemmonitor.markdown | 3 ++- source/_components/sytadin.markdown | 3 ++- source/_components/tank_utility.markdown | 3 ++- source/_components/tapsaff.markdown | 3 ++- source/_components/tautulli.markdown | 3 ++- source/_components/ted5000.markdown | 3 ++- source/_components/teksavvy.markdown | 3 ++- source/_components/telegram.markdown | 3 ++- source/_components/telegram_bot.markdown | 3 ++- source/_components/telnet.markdown | 3 ++- source/_components/temper.markdown | 3 ++- source/_components/template.markdown | 3 ++- source/_components/tensorflow.markdown | 3 ++- source/_components/tfiac.markdown | 3 ++- source/_components/thermoworks_smoke.markdown | 3 ++- source/_components/thingspeak.markdown | 3 ++- source/_components/thomson.markdown | 3 ++- source/_components/threshold.markdown | 3 ++- source/_components/tikteck.markdown | 3 ++- source/_components/tile.markdown | 3 ++- source/_components/time_date.markdown | 3 ++- source/_components/timer.markdown | 3 ++- source/_components/tod.markdown | 3 ++- source/_components/todoist.markdown | 3 ++- source/_components/tof.markdown | 2 +- source/_components/tomato.markdown | 3 ++- source/_components/torque.markdown | 3 ++- source/_components/totalconnect.markdown | 3 ++- source/_components/touchline.markdown | 3 ++- source/_components/traccar.markdown | 3 ++- source/_components/trackr.markdown | 3 ++- source/_components/trafikverket_weatherstation.markdown | 3 ++- source/_components/transport_nsw.markdown | 3 ++- source/_components/travisci.markdown | 3 ++- source/_components/trend.markdown | 3 ++- source/_components/twilio.markdown | 3 ++- source/_components/twilio_call.markdown | 3 ++- source/_components/twilio_sms.markdown | 3 ++- source/_components/twitch.markdown | 3 ++- source/_components/twitter.markdown | 3 ++- source/_components/ubee.markdown | 3 ++- source/_components/uber.markdown | 3 ++- source/_components/ubus.markdown | 3 ++- source/_components/ue_smart_radio.markdown | 3 ++- source/_components/uk_transport.markdown | 3 ++- source/_components/unifi_direct.markdown | 3 ++- source/_components/universal.markdown | 3 ++- source/_components/upc_connect.markdown | 3 ++- source/_components/updater.markdown | 3 ++- source/_components/ups.markdown | 3 ++- source/_components/uptime.markdown | 3 ++- source/_components/uptimerobot.markdown | 3 ++- source/_components/uscis.markdown | 3 ++- source/_components/usgs_earthquakes_feed.markdown | 3 ++- source/_components/utility_meter.markdown | 3 ++- source/_components/uvc.markdown | 3 ++- source/_components/vacuum.mqtt.markdown | 3 ++- source/_components/vacuum.xiaomi_miio.markdown | 3 ++- source/_components/vasttrafik.markdown | 3 ++- source/_components/venstar.markdown | 3 ++- source/_components/version.markdown | 3 ++- source/_components/vesync.markdown | 3 ++- source/_components/viaggiatreno.markdown | 3 ++- source/_components/vizio.markdown | 3 ++- source/_components/vlc.markdown | 3 ++- source/_components/voicerss.markdown | 3 ++- source/_components/volkszaehler.markdown | 3 ++- source/_components/volumio.markdown | 3 ++- source/_components/volvooncall.markdown | 3 ++- source/_components/waqi.markdown | 3 ++- source/_components/waterfurnace.markdown | 3 ++- source/_components/watson_iot.markdown | 3 ++- source/_components/waze_travel_time.markdown | 3 ++- source/_components/weather.darksky.markdown | 3 ++- source/_components/webhooks.markdown | 3 ++- source/_components/weblink.markdown | 3 ++- source/_components/websocket_api.markdown | 3 ++- source/_components/whois.markdown | 3 ++- source/_components/workday.markdown | 3 ++- source/_components/worldclock.markdown | 3 ++- source/_components/worldtidesinfo.markdown | 3 ++- source/_components/worxlandroid.markdown | 3 ++- source/_components/wsdot.markdown | 3 ++- source/_components/wunderground.markdown | 3 ++- source/_components/wunderlist.markdown | 3 ++- source/_components/x10.markdown | 3 ++- source/_components/xbox_live.markdown | 3 ++- source/_components/xeoma.markdown | 3 ++- source/_components/xfinity.markdown | 3 ++- source/_components/xiaomi.markdown | 3 ++- source/_components/xiaomi_aqara.markdown | 3 ++- source/_components/xiaomi_miio.markdown | 3 ++- source/_components/xiaomi_tv.markdown | 3 ++- source/_components/xmpp.markdown | 3 ++- source/_components/yale_smart_alarm.markdown | 3 ++- source/_components/yamaha.markdown | 3 ++- source/_components/yamaha_musiccast.markdown | 3 ++- source/_components/yandextts.markdown | 3 ++- source/_components/yeelight.markdown | 3 ++- source/_components/yeelightsunflower.markdown | 3 ++- source/_components/yessssms.markdown | 3 ++- source/_components/yi.markdown | 3 ++- source/_components/yr.markdown | 3 ++- source/_components/zengge.markdown | 3 ++- source/_components/zeroconf.markdown | 3 ++- source/_components/zestimate.markdown | 3 ++- source/_components/zhong_hong.markdown | 3 ++- source/_components/ziggo_mediabox_xl.markdown | 3 ++- source/_components/zone.markdown | 3 ++- 685 files changed, 1368 insertions(+), 685 deletions(-) diff --git a/source/_components/acer_projector.markdown b/source/_components/acer_projector.markdown index 5c24f607eb9..f057915f22d 100644 --- a/source/_components/acer_projector.markdown +++ b/source/_components/acer_projector.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: acer.png -ha_category: Multimedia +ha_category: + - Multimedia ha_iot_class: Local Polling ha_release: 0.19 redirect_from: diff --git a/source/_components/actiontec.markdown b/source/_components/actiontec.markdown index d97a403a17d..837918b1b6d 100644 --- a/source/_components/actiontec.markdown +++ b/source/_components/actiontec.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: actiontec.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7 redirect_from: - /components/device_tracker.actiontec/ diff --git a/source/_components/aftership.markdown b/source/_components/aftership.markdown index 4620e6fde80..087e520876e 100644 --- a/source/_components/aftership.markdown +++ b/source/_components/aftership.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: aftership.png -ha_category: Postal Service +ha_category: + - Postal Service ha_release: 0.85 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/airvisual.markdown b/source/_components/airvisual.markdown index 2b02bc3b079..cc23835a5d5 100644 --- a/source/_components/airvisual.markdown +++ b/source/_components/airvisual.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: airvisual.jpg -ha_category: Health +ha_category: + - Health ha_release: 0.53 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/aladdin_connect.markdown b/source/_components/aladdin_connect.markdown index 64e9dac165a..cdf2ecfa394 100644 --- a/source/_components/aladdin_connect.markdown +++ b/source/_components/aladdin_connect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: aladdin_connect.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.75 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/alarm_control_panel.ifttt.markdown b/source/_components/alarm_control_panel.ifttt.markdown index 60628d14878..1cb7ebd51d6 100644 --- a/source/_components/alarm_control_panel.ifttt.markdown +++ b/source/_components/alarm_control_panel.ifttt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ifttt.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.66 --- diff --git a/source/_components/alarm_control_panel.mqtt.markdown b/source/_components/alarm_control_panel.mqtt.markdown index c7aebf5b465..2e2c6fca85e 100644 --- a/source/_components/alarm_control_panel.mqtt.markdown +++ b/source/_components/alarm_control_panel.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.7.4 ha_iot_class: Configurable --- diff --git a/source/_components/alarmdotcom.markdown b/source/_components/alarmdotcom.markdown index 01a85e9f327..a7e0cfb2064 100644 --- a/source/_components/alarmdotcom.markdown +++ b/source/_components/alarmdotcom.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: alarmdotcom.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.11 redirect_from: - /components/alarm_control_panel.alarmdotcom/ diff --git a/source/_components/alert.markdown b/source/_components/alert.markdown index 4eccd76a044..c7c5f63976b 100644 --- a/source/_components/alert.markdown +++ b/source/_components/alert.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.38 ha_qa_scale: internal --- diff --git a/source/_components/alexa.flash_briefings.markdown b/source/_components/alexa.flash_briefings.markdown index e03f316279c..d487946db2d 100644 --- a/source/_components/alexa.flash_briefings.markdown +++ b/source/_components/alexa.flash_briefings.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: amazon-alexa.png -ha_category: Voice +ha_category: + - Voice featured: false ha_release: "0.31" --- diff --git a/source/_components/alexa.intent.markdown b/source/_components/alexa.intent.markdown index 192d1552f3e..cb31bb9acb9 100644 --- a/source/_components/alexa.intent.markdown +++ b/source/_components/alexa.intent.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: amazon-alexa.png -ha_category: Voice +ha_category: + - Voice featured: false ha_release: "0.10" --- diff --git a/source/_components/alexa.markdown b/source/_components/alexa.markdown index b48e45ee3d5..f9bf1a3ba92 100644 --- a/source/_components/alexa.markdown +++ b/source/_components/alexa.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: amazon-alexa.png -ha_category: Voice +ha_category: + - Voice featured: true ha_release: "0.10" --- diff --git a/source/_components/alexa.smart_home.markdown b/source/_components/alexa.smart_home.markdown index b0d12b61cea..6a1bf1d8ed0 100644 --- a/source/_components/alexa.smart_home.markdown +++ b/source/_components/alexa.smart_home.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: amazon-alexa.png -ha_category: Voice +ha_category: + - Voice featured: false ha_release: "0.54" --- diff --git a/source/_components/alpha_vantage.markdown b/source/_components/alpha_vantage.markdown index 87be6a77649..65728778d9c 100644 --- a/source/_components/alpha_vantage.markdown +++ b/source/_components/alpha_vantage.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: alpha_vantage.png -ha_category: Finance +ha_category: + - Finance ha_iot_class: Cloud Polling ha_release: "0.60" redirect_from: diff --git a/source/_components/amazon_polly.markdown b/source/_components/amazon_polly.markdown index 015f971da98..1f14b27427a 100644 --- a/source/_components/amazon_polly.markdown +++ b/source/_components/amazon_polly.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: polly.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.37 redirect_from: - /components/tts.amazon_polly/ diff --git a/source/_components/ambient_station.markdown b/source/_components/ambient_station.markdown index 62191bc9d0f..6762eb5b210 100644 --- a/source/_components/ambient_station.markdown +++ b/source/_components/ambient_station.markdown @@ -6,7 +6,8 @@ date: 2018-11-15 08:00 sidebar: true comments: false logo: ambient_weather.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.85 ha_iot_class: Cloud Push redirect_from: diff --git a/source/_components/androidtv.markdown b/source/_components/androidtv.markdown index fb4e9f90544..e19d45d96a5 100644 --- a/source/_components/androidtv.markdown +++ b/source/_components/androidtv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: androidtv.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.7.6 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/anel_pwrctrl.markdown b/source/_components/anel_pwrctrl.markdown index d8c46a539df..cbb9741a303 100644 --- a/source/_components/anel_pwrctrl.markdown +++ b/source/_components/anel_pwrctrl.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: anel.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling ha_release: "0.30" redirect_from: diff --git a/source/_components/anthemav.markdown b/source/_components/anthemav.markdown index 8ae32865ad5..ca83e56e9fd 100644 --- a/source/_components/anthemav.markdown +++ b/source/_components/anthemav.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: anthemav.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Push ha_release: 0.37 redirect_from: diff --git a/source/_components/api.markdown b/source/_components/api.markdown index df8b0124133..5a52ecaadc1 100644 --- a/source/_components/api.markdown +++ b/source/_components/api.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - Other ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/apns.markdown b/source/_components/apns.markdown index ffd16348efa..038e599e17d 100644 --- a/source/_components/apns.markdown +++ b/source/_components/apns.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: apple.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.31 redirect_from: - /components/notify.apns/ diff --git a/source/_components/aquostv.markdown b/source/_components/aquostv.markdown index f1f19428c73..c69cfaefc23 100644 --- a/source/_components/aquostv.markdown +++ b/source/_components/aquostv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sharp_aquos.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.35 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/aruba.markdown b/source/_components/aruba.markdown index d23e4bc1f69..b2c9c179cf4 100644 --- a/source/_components/aruba.markdown +++ b/source/_components/aruba.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: aruba.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7 redirect_from: - /components/device_tracker.aruba/ diff --git a/source/_components/arwn.markdown b/source/_components/arwn.markdown index 945e5fd2a3c..e7bf2f46efa 100644 --- a/source/_components/arwn.markdown +++ b/source/_components/arwn.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.31 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/asterisk_cdr.markdown b/source/_components/asterisk_cdr.markdown index c9896fba083..59c27d946dd 100644 --- a/source/_components/asterisk_cdr.markdown +++ b/source/_components/asterisk_cdr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: asterisk.png -ha_category: Mailbox +ha_category: + - Mailbox ha_release: 0.79 redirect_from: - /components/mailbox.asterisk_cdr/ diff --git a/source/_components/asterisk_mbox.markdown b/source/_components/asterisk_mbox.markdown index 77fe435e615..d3c39d744b4 100644 --- a/source/_components/asterisk_mbox.markdown +++ b/source/_components/asterisk_mbox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: asterisk.png -ha_category: Mailbox +ha_category: + - Mailbox ha_iot_class: Local Push ha_release: 0.51 redirect_from: diff --git a/source/_components/aurora.markdown b/source/_components/aurora.markdown index b501dad4175..e8a4185a663 100644 --- a/source/_components/aurora.markdown +++ b/source/_components/aurora.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Environment +ha_category: + - Environment ha_release: 0.39 logo: noaa.png redirect_from: diff --git a/source/_components/auth.markdown b/source/_components/auth.markdown index 3a775af4a5d..f824be4c2e3 100644 --- a/source/_components/auth.markdown +++ b/source/_components/auth.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_release: 0.73 ha_qa_scale: internal --- diff --git a/source/_components/automatic.markdown b/source/_components/automatic.markdown index f5971dfabff..d61633029fe 100644 --- a/source/_components/automatic.markdown +++ b/source/_components/automatic.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: automatic.png -ha_category: Car +ha_category: + - Car ha_release: 0.28 ha_iot_class: Cloud Push redirect_from: diff --git a/source/_components/automation.markdown b/source/_components/automation.markdown index cc51419025d..19adad1599b 100644 --- a/source/_components/automation.markdown +++ b/source/_components/automation.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/avion.markdown b/source/_components/avion.markdown index 231143f122e..d8d82e8245f 100644 --- a/source/_components/avion.markdown +++ b/source/_components/avion.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Assumed State logo: avi-on.png ha_release: 0.37 diff --git a/source/_components/awair.markdown b/source/_components/awair.markdown index b501d25a1c3..f21d41eb257 100644 --- a/source/_components/awair.markdown +++ b/source/_components/awair.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: awair.jpg -ha_category: Health +ha_category: + - Health ha_release: 0.84 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/baidu.markdown b/source/_components/baidu.markdown index 93db86cc285..0bc6c21bf65 100644 --- a/source/_components/baidu.markdown +++ b/source/_components/baidu.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: baiducloud.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.59 redirect_from: - /components/tts.baidu/ diff --git a/source/_components/bayesian.markdown b/source/_components/bayesian.markdown index 700287f582b..8b62aa14653 100644 --- a/source/_components/bayesian.markdown +++ b/source/_components/bayesian.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.53 ha_qa_scale: internal diff --git a/source/_components/bh1750.markdown b/source/_components/bh1750.markdown index 90486f74cb3..4bd83fa5ce4 100644 --- a/source/_components/bh1750.markdown +++ b/source/_components/bh1750.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.48 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/binary_sensor.knx.markdown b/source/_components/binary_sensor.knx.markdown index 74f531994ee..f144ff47952 100644 --- a/source/_components/binary_sensor.knx.markdown +++ b/source/_components/binary_sensor.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.24 ha_iot_class: Local Polling --- diff --git a/source/_components/binary_sensor.modbus.markdown b/source/_components/binary_sensor.modbus.markdown index f278a9edb3d..4fd3dd2ffca 100644 --- a/source/_components/binary_sensor.modbus.markdown +++ b/source/_components/binary_sensor.modbus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: modbus.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.28 ha_iot_class: Local Push --- diff --git a/source/_components/binary_sensor.mqtt.markdown b/source/_components/binary_sensor.mqtt.markdown index 6b045b509e7..78c6252e272 100644 --- a/source/_components/binary_sensor.mqtt.markdown +++ b/source/_components/binary_sensor.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.9 ha_iot_class: Configurable --- diff --git a/source/_components/binary_sensor.netatmo.markdown b/source/_components/binary_sensor.netatmo.markdown index 8ef50d8737f..9fc62b62381 100644 --- a/source/_components/binary_sensor.netatmo.markdown +++ b/source/_components/binary_sensor.netatmo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.31 --- diff --git a/source/_components/binary_sensor.rest.markdown b/source/_components/binary_sensor.rest.markdown index f7949e2771e..46ece211e90 100644 --- a/source/_components/binary_sensor.rest.markdown +++ b/source/_components/binary_sensor.rest.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: restful.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: "0.10" ha_iot_class: Local Polling --- diff --git a/source/_components/binary_sensor.rflink.markdown b/source/_components/binary_sensor.rflink.markdown index d15cee62bb7..bfc0979f0a8 100644 --- a/source/_components/binary_sensor.rflink.markdown +++ b/source/_components/binary_sensor.rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_iot_class: Local Push ha_release: 0.81 --- diff --git a/source/_components/binary_sensor.rfxtrx.markdown b/source/_components/binary_sensor.rfxtrx.markdown index ab95973988d..571af036e8d 100644 --- a/source/_components/binary_sensor.rfxtrx.markdown +++ b/source/_components/binary_sensor.rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.48 --- diff --git a/source/_components/binary_sensor.template.markdown b/source/_components/binary_sensor.template.markdown index 3d9d17c7b71..a5648394bca 100644 --- a/source/_components/binary_sensor.template.markdown +++ b/source/_components/binary_sensor.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.12 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/binary_sensor.xiaomi_aqara.markdown b/source/_components/binary_sensor.xiaomi_aqara.markdown index 7d43dc7d2e5..30ee1d358cd 100644 --- a/source/_components/binary_sensor.xiaomi_aqara.markdown +++ b/source/_components/binary_sensor.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: "0.50" ha_iot_class: Local Push --- diff --git a/source/_components/bitcoin.markdown b/source/_components/bitcoin.markdown index 634540f8cd9..b5c3ad70b6b 100644 --- a/source/_components/bitcoin.markdown +++ b/source/_components/bitcoin.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bitcoin.png -ha_category: Finance +ha_category: + - Finance ha_release: pre 0.7 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/blackbird.markdown b/source/_components/blackbird.markdown index 2e01dec6cc3..aaca513c055 100644 --- a/source/_components/blackbird.markdown +++ b/source/_components/blackbird.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: monoprice.svg -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.68 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/blinksticklight.markdown b/source/_components/blinksticklight.markdown index 36e57210ecc..84549b1edc1 100644 --- a/source/_components/blinksticklight.markdown +++ b/source/_components/blinksticklight.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: blinkstick.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.7.5 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/blinkt.markdown b/source/_components/blinkt.markdown index 33eb2d842a8..82e8c0899b8 100644 --- a/source/_components/blinkt.markdown +++ b/source/_components/blinkt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Push ha_release: 0.44 redirect_from: diff --git a/source/_components/blockchain.markdown b/source/_components/blockchain.markdown index 5f749b427f8..aea54943db0 100644 --- a/source/_components/blockchain.markdown +++ b/source/_components/blockchain.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: blockchain.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.47 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/bluesound.markdown b/source/_components/bluesound.markdown index 85cf62cd9e7..8e1b4f1b972 100644 --- a/source/_components/bluesound.markdown +++ b/source/_components/bluesound.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bluesound.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.51 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/bluetooth_le_tracker.markdown b/source/_components/bluetooth_le_tracker.markdown index d5c27e1e6f8..c02b89fc100 100644 --- a/source/_components/bluetooth_le_tracker.markdown +++ b/source/_components/bluetooth_le_tracker.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bluetooth.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling ha_release: 0.27 redirect_from: diff --git a/source/_components/bluetooth_tracker.markdown b/source/_components/bluetooth_tracker.markdown index 97596b9c23b..26ee8eae907 100644 --- a/source/_components/bluetooth_tracker.markdown +++ b/source/_components/bluetooth_tracker.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bluetooth.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling ha_release: 0.18 redirect_from: diff --git a/source/_components/bme280.markdown b/source/_components/bme280.markdown index 4f2949eca6c..097b46240f5 100644 --- a/source/_components/bme280.markdown +++ b/source/_components/bme280.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.48 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/bme680.markdown b/source/_components/bme680.markdown index fb06b1ae37d..579da0493fa 100644 --- a/source/_components/bme680.markdown +++ b/source/_components/bme680.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.62 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/braviatv.markdown b/source/_components/braviatv.markdown index c2d09b6b11a..15ca122bfdf 100644 --- a/source/_components/braviatv.markdown +++ b/source/_components/braviatv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bravia.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.23 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/broadcast.markdown b/source/_components/broadcast.markdown index 633556693ba..5c865eeac30 100644 --- a/source/_components/broadcast.markdown +++ b/source/_components/broadcast.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: telegram.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.48 redirect_from: - /components/telegram_bot.broadcast/ diff --git a/source/_components/brottsplatskartan.markdown b/source/_components/brottsplatskartan.markdown index 7333aabc47a..9844385f1d8 100644 --- a/source/_components/brottsplatskartan.markdown +++ b/source/_components/brottsplatskartan.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Social +ha_category: + - Social logo: brottsplatskartan.png ha_release: 0.85 ha_iot_class: Cloud Polling diff --git a/source/_components/browser.markdown b/source/_components/browser.markdown index ddb68dda653..c0a1501a0f6 100644 --- a/source/_components/browser.markdown +++ b/source/_components/browser.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_qa_scale: internal ha_release: pre 0.7 --- diff --git a/source/_components/brunt.markdown b/source/_components/brunt.markdown index e8fd9d8f421..f1b62530d9d 100644 --- a/source/_components/brunt.markdown +++ b/source/_components/brunt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: brunt.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.75 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/bt_home_hub_5.markdown b/source/_components/bt_home_hub_5.markdown index c2482d7decd..3b18f59ce59 100644 --- a/source/_components/bt_home_hub_5.markdown +++ b/source/_components/bt_home_hub_5.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.22 redirect_from: - /components/device_tracker.bt_home_hub_5/ diff --git a/source/_components/bt_smarthub.markdown b/source/_components/bt_smarthub.markdown index 8b58068c49b..4c60da14f48 100644 --- a/source/_components/bt_smarthub.markdown +++ b/source/_components/bt_smarthub.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: bt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.82 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/buienradar.markdown b/source/_components/buienradar.markdown index 396ca454e29..67056c84e15 100644 --- a/source/_components/buienradar.markdown +++ b/source/_components/buienradar.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: buienradar.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.47 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/caldav.markdown b/source/_components/caldav.markdown index cda8f15c19a..4116c6122a7 100644 --- a/source/_components/caldav.markdown +++ b/source/_components/caldav.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Cloud Polling ha_release: "0.60" redirect_from: diff --git a/source/_components/calendar.google.markdown b/source/_components/calendar.google.markdown index 62495dca086..82502250b31 100644 --- a/source/_components/calendar.google.markdown +++ b/source/_components/calendar.google.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google_calendar.png -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Cloud Polling ha_release: 0.33 --- diff --git a/source/_components/camera.ffmpeg.markdown b/source/_components/camera.ffmpeg.markdown index 739ba765621..f47dcef0de6 100644 --- a/source/_components/camera.ffmpeg.markdown +++ b/source/_components/camera.ffmpeg.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ffmpeg.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.26 ha_iot_class: Local Polling --- diff --git a/source/_components/camera.mqtt.markdown b/source/_components/camera.mqtt.markdown index a058e15b055..54d3a965af5 100644 --- a/source/_components/camera.mqtt.markdown +++ b/source/_components/camera.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.43 ha_iot_class: Configurable --- diff --git a/source/_components/camera.netatmo.markdown b/source/_components/camera.netatmo.markdown index 094466b802a..8741159d0fb 100644 --- a/source/_components/camera.netatmo.markdown +++ b/source/_components/camera.netatmo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.22 ha_iot_class: Local Polling --- diff --git a/source/_components/cast.markdown b/source/_components/cast.markdown index d595b9e7741..8bec9f32f5b 100644 --- a/source/_components/cast.markdown +++ b/source/_components/cast.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google_cast.png -ha_category: Media Player +ha_category: + - Media Player featured: true ha_release: pre 0.7 ha_iot_class: Local Polling diff --git a/source/_components/cert_expiry.markdown b/source/_components/cert_expiry.markdown index bb61a611841..a4dc3144eb0 100644 --- a/source/_components/cert_expiry.markdown +++ b/source/_components/cert_expiry.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Network +ha_category: + - Network ha_release: 0.44 ha_iot_class: Configurable redirect_from: diff --git a/source/_components/channels.markdown b/source/_components/channels.markdown index 1840bf0f11b..f5a79bdb99a 100644 --- a/source/_components/channels.markdown +++ b/source/_components/channels.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: channels.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.65 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/cisco_ios.markdown b/source/_components/cisco_ios.markdown index 9514aa7417c..a51701b2de4 100644 --- a/source/_components/cisco_ios.markdown +++ b/source/_components/cisco_ios.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cisco.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.33 redirect_from: - /components/device_tracker.cisco_ios/ diff --git a/source/_components/cisco_mobility_express.markdown b/source/_components/cisco_mobility_express.markdown index 075bdbbe1d5..8260e3d26c5 100644 --- a/source/_components/cisco_mobility_express.markdown +++ b/source/_components/cisco_mobility_express.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cisco.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: "0.90" --- diff --git a/source/_components/cisco_webex_teams.markdown b/source/_components/cisco_webex_teams.markdown index 3dd7b40764d..a2d49717d66 100644 --- a/source/_components/cisco_webex_teams.markdown +++ b/source/_components/cisco_webex_teams.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cisco_webex_teams.png -ha_category: Notifications +ha_category: + - Notifications ha_release: "0.40" --- diff --git a/source/_components/ciscospark.markdown b/source/_components/ciscospark.markdown index 52d429b7633..d7e95ef19a9 100644 --- a/source/_components/ciscospark.markdown +++ b/source/_components/ciscospark.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ciscospark.png -ha_category: Notifications +ha_category: + - Notifications ha_release: "0.40" redirect_from: - /components/notify.ciscospark/ diff --git a/source/_components/citybikes.markdown b/source/_components/citybikes.markdown index 316d61b9fd8..ef003ed52d8 100644 --- a/source/_components/citybikes.markdown +++ b/source/_components/citybikes.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: citybikes.png -ha_category: Transport +ha_category: + - Transport ha_release: 0.49 redirect_from: - /components/sensor.citybikes/ diff --git a/source/_components/clementine.markdown b/source/_components/clementine.markdown index 612929aa0f3..2d5f57bd85d 100644 --- a/source/_components/clementine.markdown +++ b/source/_components/clementine.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: clementine.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.39 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/clickatell.markdown b/source/_components/clickatell.markdown index 559319a4f5e..15718dab4b3 100644 --- a/source/_components/clickatell.markdown +++ b/source/_components/clickatell.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: clickatell.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.56 redirect_from: - /components/notify.clickatell/ diff --git a/source/_components/clicksend.markdown b/source/_components/clicksend.markdown index edcc4a361eb..406de2dd060 100644 --- a/source/_components/clicksend.markdown +++ b/source/_components/clicksend.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: clicksend.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.48 redirect_from: - /components/notify.clicksend/ diff --git a/source/_components/climate.knx.markdown b/source/_components/climate.knx.markdown index 6cfe8f565e4..f99b2b3bd38 100644 --- a/source/_components/climate.knx.markdown +++ b/source/_components/climate.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.25 ha_iot_class: Local Polling --- diff --git a/source/_components/climate.modbus.markdown b/source/_components/climate.modbus.markdown index 916bb77e312..74838e0d420 100644 --- a/source/_components/climate.modbus.markdown +++ b/source/_components/climate.modbus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: modbus.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.68 ha_iot_class: Local Polling --- diff --git a/source/_components/climate.mqtt.markdown b/source/_components/climate.mqtt.markdown index 6a33821148b..56d4c30c389 100644 --- a/source/_components/climate.mqtt.markdown +++ b/source/_components/climate.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.55 ha_iot_class: Local Polling --- diff --git a/source/_components/climate.netatmo.markdown b/source/_components/climate.netatmo.markdown index 6d71ba0b796..7239c7c0596 100644 --- a/source/_components/climate.netatmo.markdown +++ b/source/_components/climate.netatmo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.31 ha_iot_class: Cloud Polling --- diff --git a/source/_components/cloud.markdown b/source/_components/cloud.markdown index 0f7b2a61b7c..57aa21a6988 100644 --- a/source/_components/cloud.markdown +++ b/source/_components/cloud.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: nabu-casa.svg ha_release: "0.60" -ha_category: Voice +ha_category: + - Voice ha_iot_class: Cloud Push --- diff --git a/source/_components/cloudflare.markdown b/source/_components/cloudflare.markdown index c085413ad05..548db436602 100644 --- a/source/_components/cloudflare.markdown +++ b/source/_components/cloudflare.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cloudflare.png -ha_category: Network +ha_category: + - Network ha_release: 0.74 --- diff --git a/source/_components/cmus.markdown b/source/_components/cmus.markdown index 96edada65c8..6950fbb2dcf 100644 --- a/source/_components/cmus.markdown +++ b/source/_components/cmus.markdown @@ -8,7 +8,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.23 redirect_from: diff --git a/source/_components/co2signal.markdown b/source/_components/co2signal.markdown index 26b855070c7..4c283286897 100644 --- a/source/_components/co2signal.markdown +++ b/source/_components/co2signal.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: co2signal.png -ha_category: Environment +ha_category: + - Environment ha_release: 0.87 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/coinmarketcap.markdown b/source/_components/coinmarketcap.markdown index 31b35511540..86190bc4be4 100644 --- a/source/_components/coinmarketcap.markdown +++ b/source/_components/coinmarketcap.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: coinmarketcap.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.28 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/comed_hourly_pricing.markdown b/source/_components/comed_hourly_pricing.markdown index dac7229a7b0..0128b33836b 100644 --- a/source/_components/comed_hourly_pricing.markdown +++ b/source/_components/comed_hourly_pricing.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: comed.png -ha_category: Energy +ha_category: + - Energy ha_release: "0.40" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/command_line.markdown b/source/_components/command_line.markdown index 7dee888b9a6..3fe4193a592 100644 --- a/source/_components/command_line.markdown +++ b/source/_components/command_line.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: command_line.png -ha_category: Utility +ha_category: + - Utility ha_release: 0.12 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/config.markdown b/source/_components/config.markdown index b697cec5e82..46613b40517 100644 --- a/source/_components/config.markdown +++ b/source/_components/config.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Front end +ha_category: + - Front end ha_release: 0.39 ha_qa_scale: internal --- diff --git a/source/_components/configurator.markdown b/source/_components/configurator.markdown index 27c9bfde146..bb862023a4c 100644 --- a/source/_components/configurator.markdown +++ b/source/_components/configurator.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/conversation.markdown b/source/_components/conversation.markdown index a6a459873b3..511a5de5aae 100644 --- a/source/_components/conversation.markdown +++ b/source/_components/conversation.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Voice" +ha_category: + - "Voice" ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/coolmaster.markdown b/source/_components/coolmaster.markdown index 77d58d15a93..e11d76da089 100644 --- a/source/_components/coolmaster.markdown +++ b/source/_components/coolmaster.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: coolautomation.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.88 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/counter.markdown b/source/_components/counter.markdown index 56053272647..0a605611d53 100644 --- a/source/_components/counter.markdown +++ b/source/_components/counter.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.53 ha_qa_scale: internal --- diff --git a/source/_components/cover.command_line.markdown b/source/_components/cover.command_line.markdown index 3d1429c223d..3ebb35ddc3f 100644 --- a/source/_components/cover.command_line.markdown +++ b/source/_components/cover.command_line.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: command_line.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.14 ha_iot_class: Local Polling --- diff --git a/source/_components/cover.group.markdown b/source/_components/cover.group.markdown index 581cddc4b1b..5512be8fefb 100644 --- a/source/_components/cover.group.markdown +++ b/source/_components/cover.group.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Cover +ha_category: + - Cover ha_release: 0.66 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/cover.knx.markdown b/source/_components/cover.knx.markdown index d7861c41429..77c17dd6d3d 100644 --- a/source/_components/cover.knx.markdown +++ b/source/_components/cover.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.48 ha_iot_class: Local Polling --- diff --git a/source/_components/cover.mqtt.markdown b/source/_components/cover.mqtt.markdown index 5b0a3894d4f..0a4b21a5623 100644 --- a/source/_components/cover.mqtt.markdown +++ b/source/_components/cover.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Cover +ha_category: + - Cover ha_iot_class: Configurable ha_release: 0.18 --- diff --git a/source/_components/cover.rflink.markdown b/source/_components/cover.rflink.markdown index 72cecf77daf..5ad0066782a 100644 --- a/source/_components/cover.rflink.markdown +++ b/source/_components/cover.rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.55 --- diff --git a/source/_components/cover.rfxtrx.markdown b/source/_components/cover.rfxtrx.markdown index f5e366efbcc..c098a1d9bf9 100644 --- a/source/_components/cover.rfxtrx.markdown +++ b/source/_components/cover.rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.27 --- diff --git a/source/_components/cover.template.markdown b/source/_components/cover.template.markdown index 6c693c74201..41d8dc689f7 100644 --- a/source/_components/cover.template.markdown +++ b/source/_components/cover.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Cover +ha_category: + - Cover ha_release: 0.48 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/cover.xiaomi_aqara.markdown b/source/_components/cover.xiaomi_aqara.markdown index ea54bf27449..ea8de2ac3fe 100644 --- a/source/_components/cover.xiaomi_aqara.markdown +++ b/source/_components/cover.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Cover +ha_category: + - Cover ha_release: "0.50" ha_iot_class: Local Push --- diff --git a/source/_components/cppm.markdown b/source/_components/cppm.markdown index 9b6f86e9f71..db74e277978 100644 --- a/source/_components/cppm.markdown +++ b/source/_components/cppm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: aruba.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: "0.90" ha_iot_class: Local Polling --- diff --git a/source/_components/cpuspeed.markdown b/source/_components/cpuspeed.markdown index 5fd749415e2..af09719b0df 100644 --- a/source/_components/cpuspeed.markdown +++ b/source/_components/cpuspeed.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cpu.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: pre 0.7 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/crimereports.markdown b/source/_components/crimereports.markdown index eb99649977f..da79b588027 100644 --- a/source/_components/crimereports.markdown +++ b/source/_components/crimereports.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Social +ha_category: + - Social logo: crimereports.png ha_release: 0.42 ha_iot_class: Cloud Polling diff --git a/source/_components/cups.markdown b/source/_components/cups.markdown index ff4602f55a6..e9caecc22cc 100644 --- a/source/_components/cups.markdown +++ b/source/_components/cups.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: cups.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.32 redirect_from: diff --git a/source/_components/currencylayer.markdown b/source/_components/currencylayer.markdown index a789f462ff8..d4ad7c6dc9b 100644 --- a/source/_components/currencylayer.markdown +++ b/source/_components/currencylayer.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Finance +ha_category: + - Finance logo: currencylayer.png ha_iot_class: Cloud Polling ha_release: 0.32 diff --git a/source/_components/darksky.markdown b/source/_components/darksky.markdown index 67c302f9340..d1942794a56 100644 --- a/source/_components/darksky.markdown +++ b/source/_components/darksky.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dark_sky.png -ha_category: Weather +ha_category: + - Weather ha_release: "0.30" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/datadog.markdown b/source/_components/datadog.markdown index c78a0c8bd46..e2e5eaed0a6 100644 --- a/source/_components/datadog.markdown +++ b/source/_components/datadog.markdown @@ -8,7 +8,8 @@ comments: false sharing: true logo: datadog.png footer: true -ha_category: History +ha_category: + - History ha_release: 0.45 --- diff --git a/source/_components/ddwrt.markdown b/source/_components/ddwrt.markdown index 83a717068fb..fd83c351c4f 100644 --- a/source/_components/ddwrt.markdown +++ b/source/_components/ddwrt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ddwrt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: pre 0.7 redirect_from: - /components/device_tracker.ddwrt/ diff --git a/source/_components/decora.markdown b/source/_components/decora.markdown index 4207d98f333..cb9a96aaef8 100644 --- a/source/_components/decora.markdown +++ b/source/_components/decora.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling logo: leviton.png ha_release: 0.37 diff --git a/source/_components/decora_wifi.markdown b/source/_components/decora_wifi.markdown index 8f39f571fa0..cfd60b0dcdc 100644 --- a/source/_components/decora_wifi.markdown +++ b/source/_components/decora_wifi.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Cloud Polling logo: leviton.png ha_release: 0.51 diff --git a/source/_components/default_config.markdown b/source/_components/default_config.markdown index 37f13fac5bf..94da14c0739 100644 --- a/source/_components/default_config.markdown +++ b/source/_components/default_config.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_release: 0.88 --- diff --git a/source/_components/demo.markdown b/source/_components/demo.markdown index 1048aa1c236..ed6d3f8844c 100644 --- a/source/_components/demo.markdown +++ b/source/_components/demo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/denon.markdown b/source/_components/denon.markdown index 5c4d5ed7c8f..41d886f922b 100644 --- a/source/_components/denon.markdown +++ b/source/_components/denon.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: denon.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.7.2 redirect_from: diff --git a/source/_components/denonavr.markdown b/source/_components/denonavr.markdown index 95bd30fcc7a..cebda75749d 100644 --- a/source/_components/denonavr.markdown +++ b/source/_components/denonavr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: denon.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.7.2 redirect_from: diff --git a/source/_components/deutsche_bahn.markdown b/source/_components/deutsche_bahn.markdown index 126f60bf1fb..cc653756249 100644 --- a/source/_components/deutsche_bahn.markdown +++ b/source/_components/deutsche_bahn.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Transport +ha_category: + - Transport logo: db.png ha_iot_class: Cloud Polling ha_release: 0.14 diff --git a/source/_components/device_sun_light_trigger.markdown b/source/_components/device_sun_light_trigger.markdown index fd037b48c40..71e98fc27fc 100644 --- a/source/_components/device_sun_light_trigger.markdown +++ b/source/_components/device_sun_light_trigger.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_qa_scale: internal ha_release: pre 0.7 --- diff --git a/source/_components/device_tracker.mqtt.markdown b/source/_components/device_tracker.mqtt.markdown index a370e6f10e2..459ea2e3a48 100644 --- a/source/_components/device_tracker.mqtt.markdown +++ b/source/_components/device_tracker.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Configurable ha_release: 0.7.3 --- diff --git a/source/_components/device_tracker.xiaomi.markdown b/source/_components/device_tracker.xiaomi.markdown index 7f9494c2af5..5bf0ab35e72 100644 --- a/source/_components/device_tracker.xiaomi.markdown +++ b/source/_components/device_tracker.xiaomi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.36 --- diff --git a/source/_components/dht.markdown b/source/_components/dht.markdown index 752a988f636..153956e1234 100644 --- a/source/_components/dht.markdown +++ b/source/_components/dht.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: DIY +ha_category: + - DIY ha_release: 0.7 logo: dht.png ha_iot_class: Local Polling diff --git a/source/_components/dialogflow.markdown b/source/_components/dialogflow.markdown index c1f384b73cd..b3596b1f561 100644 --- a/source/_components/dialogflow.markdown +++ b/source/_components/dialogflow.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dialogflow.png -ha_category: Voice +ha_category: + - Voice ha_release: 0.56 redirect_from: /components/apiai/ --- diff --git a/source/_components/digitalloggers.markdown b/source/_components/digitalloggers.markdown index aac007f2c68..8270bef0e13 100644 --- a/source/_components/digitalloggers.markdown +++ b/source/_components/digitalloggers.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: digitalloggers.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.35 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/directv.markdown b/source/_components/directv.markdown index 0864d461a99..97d6cc9b61c 100644 --- a/source/_components/directv.markdown +++ b/source/_components/directv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: directv.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.25 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/discogs.markdown b/source/_components/discogs.markdown index a9aec0b8172..1fed3dfb5bf 100644 --- a/source/_components/discogs.markdown +++ b/source/_components/discogs.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Multimedia +ha_category: + - Multimedia ha_release: 0.61 logo: discogs.png ha_iot_class: Cloud Polling diff --git a/source/_components/discord.markdown b/source/_components/discord.markdown index d633db119e2..1cd00bab30e 100644 --- a/source/_components/discord.markdown +++ b/source/_components/discord.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: discord.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.37 redirect_from: - /components/notify.discord/ diff --git a/source/_components/discovery.markdown b/source/_components/discovery.markdown index eeb782a8b9c..90810424ea1 100644 --- a/source/_components/discovery.markdown +++ b/source/_components/discovery.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/dispatcher.markdown b/source/_components/dispatcher.markdown index 34cc5eb72e2..8b961db7b03 100644 --- a/source/_components/dispatcher.markdown +++ b/source/_components/dispatcher.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Camera +ha_category: + - Camera logo: camcorder.png ha_release: "0.40" ha_iot_class: Configurable diff --git a/source/_components/dlib_face_detect.markdown b/source/_components/dlib_face_detect.markdown index 5c39e38e8d8..5ba7c2ca0d9 100644 --- a/source/_components/dlib_face_detect.markdown +++ b/source/_components/dlib_face_detect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dlib.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.44 redirect_from: - /components/image_processing.dlib_face_detect/ diff --git a/source/_components/dlib_face_identify.markdown b/source/_components/dlib_face_identify.markdown index 19b4eea5494..1a496513195 100644 --- a/source/_components/dlib_face_identify.markdown +++ b/source/_components/dlib_face_identify.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dlib.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.44 redirect_from: - /components/image_processing.dlib_face_identify/ diff --git a/source/_components/dlink.markdown b/source/_components/dlink.markdown index a8b80131d7f..c05b4db9056 100644 --- a/source/_components/dlink.markdown +++ b/source/_components/dlink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dlink.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling ha_release: 0.14 redirect_from: diff --git a/source/_components/dlna_dmr.markdown b/source/_components/dlna_dmr.markdown index f985145c58d..16b29ef8f03 100644 --- a/source/_components/dlna_dmr.markdown +++ b/source/_components/dlna_dmr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dlna.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.76 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/dnsip.markdown b/source/_components/dnsip.markdown index e2950706cf1..117e5910e03 100644 --- a/source/_components/dnsip.markdown +++ b/source/_components/dnsip.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Network +ha_category: + - Network ha_iot_class: Cloud Polling ha_release: "0.40" redirect_from: diff --git a/source/_components/dominos.markdown b/source/_components/dominos.markdown index 20ea8157c4b..4fdd41e3bc3 100644 --- a/source/_components/dominos.markdown +++ b/source/_components/dominos.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dominos.png -ha_category: Other +ha_category: + - Other ha_iot_class: Cloud Polling ha_release: 0.59 --- diff --git a/source/_components/downloader.markdown b/source/_components/downloader.markdown index 0e77a6bb719..37844a8da15 100644 --- a/source/_components/downloader.markdown +++ b/source/_components/downloader.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Downloading +ha_category: + - Downloading ha_release: pre 0.7 ha_qa_scale: internal --- diff --git a/source/_components/dsmr.markdown b/source/_components/dsmr.markdown index 464e30e8c5d..b5ab05cf326 100644 --- a/source/_components/dsmr.markdown +++ b/source/_components/dsmr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netbeheernederland.jpg -ha_category: Energy +ha_category: + - Energy ha_release: 0.34 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/dte_energy_bridge.markdown b/source/_components/dte_energy_bridge.markdown index 06fc202d4df..3af953f521e 100644 --- a/source/_components/dte_energy_bridge.markdown +++ b/source/_components/dte_energy_bridge.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dte_energy.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.21 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/dublin_bus_transport.markdown b/source/_components/dublin_bus_transport.markdown index 467aab58e71..d59ce3e0ebd 100644 --- a/source/_components/dublin_bus_transport.markdown +++ b/source/_components/dublin_bus_transport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dublin_bus.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.36 redirect_from: diff --git a/source/_components/duckdns.markdown b/source/_components/duckdns.markdown index cb1ef278c8a..9e34593fdfc 100644 --- a/source/_components/duckdns.markdown +++ b/source/_components/duckdns.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: duckdns.png -ha_category: Network +ha_category: + - Network ha_release: 0.55 --- diff --git a/source/_components/duke_energy.markdown b/source/_components/duke_energy.markdown index fb5baf87888..27621e1a897 100644 --- a/source/_components/duke_energy.markdown +++ b/source/_components/duke_energy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: duke_energy.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.74 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/dunehd.markdown b/source/_components/dunehd.markdown index 4577a68abcd..8f99d50807c 100644 --- a/source/_components/dunehd.markdown +++ b/source/_components/dunehd.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: dunehd.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.34 redirect_from: diff --git a/source/_components/dwd_weather_warnings.markdown b/source/_components/dwd_weather_warnings.markdown index c60e8895b29..838ed29b4c2 100644 --- a/source/_components/dwd_weather_warnings.markdown +++ b/source/_components/dwd_weather_warnings.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true #logo: dwdwarnapp.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.51 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/ebox.markdown b/source/_components/ebox.markdown index 3180ddb4803..130a7ef7a67 100644 --- a/source/_components/ebox.markdown +++ b/source/_components/ebox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ebox.png -ha_category: Network +ha_category: + - Network ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/ebusd.markdown b/source/_components/ebusd.markdown index 3d178f26eed..7b33fd61eb8 100644 --- a/source/_components/ebusd.markdown +++ b/source/_components/ebusd.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Local Polling ha_release: 0.88 redirect_from: diff --git a/source/_components/ecoal_boiler.markdown b/source/_components/ecoal_boiler.markdown index 24f9ba1d49b..1d963a80c02 100644 --- a/source/_components/ecoal_boiler.markdown +++ b/source/_components/ecoal_boiler.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true # logo: raspberry-pi.png -ha_category: Water heater +ha_category: + - Water heater ha_release: 0.87 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/econet.markdown b/source/_components/econet.markdown index 7623d0fa5e2..9753313bd3d 100644 --- a/source/_components/econet.markdown +++ b/source/_components/econet.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: econet.png -ha_category: Water heater +ha_category: + - Water heater ha_release: 0.61 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/eddystone_temperature.markdown b/source/_components/eddystone_temperature.markdown index 7df67a5eb5d..5fd1384f143 100644 --- a/source/_components/eddystone_temperature.markdown +++ b/source/_components/eddystone_temperature.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: eddystone.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.42 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/edimax.markdown b/source/_components/edimax.markdown index be6f43f2df6..fa82a66b07b 100644 --- a/source/_components/edimax.markdown +++ b/source/_components/edimax.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: edimax.png -ha_category: Switch +ha_category: + - Switch ha_release: pre 0.7 redirect_from: - /components/switch.edimax/ diff --git a/source/_components/ee_brightbox.markdown b/source/_components/ee_brightbox.markdown index b53cfa99fa3..3af7fe694df 100644 --- a/source/_components/ee_brightbox.markdown +++ b/source/_components/ee_brightbox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ee.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.87 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/efergy.markdown b/source/_components/efergy.markdown index 97bf5ea2515..e2ebb91456a 100644 --- a/source/_components/efergy.markdown +++ b/source/_components/efergy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: efergy.png -ha_category: Energy +ha_category: + - Energy ha_release: pre 0.7 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/eliqonline.markdown b/source/_components/eliqonline.markdown index 7ca31176657..efa95897494 100644 --- a/source/_components/eliqonline.markdown +++ b/source/_components/eliqonline.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: eliq.png -ha_category: Energy +ha_category: + - Energy ha_release: "0.10" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/emby.markdown b/source/_components/emby.markdown index c8768a47513..019fe8ad9a1 100644 --- a/source/_components/emby.markdown +++ b/source/_components/emby.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: emby.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.32 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/emoncms.markdown b/source/_components/emoncms.markdown index 82fb5fa8a44..d25b2ae9740 100644 --- a/source/_components/emoncms.markdown +++ b/source/_components/emoncms.markdown @@ -8,7 +8,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.29 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/emoncms_history.markdown b/source/_components/emoncms_history.markdown index 0cc83e62982..aed353c14c9 100644 --- a/source/_components/emoncms_history.markdown +++ b/source/_components/emoncms_history.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: emoncms.png -ha_category: History +ha_category: + - History ha_release: 0.31 --- diff --git a/source/_components/emulated_hue.markdown b/source/_components/emulated_hue.markdown index 1f29ba67abb..2eea6c16acd 100644 --- a/source/_components/emulated_hue.markdown +++ b/source/_components/emulated_hue.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.27 ha_iot_class: Local Push ha_qa_scale: internal diff --git a/source/_components/emulated_roku.markdown b/source/_components/emulated_roku.markdown index 3a3bf3bd50a..ce3a6b14a85 100644 --- a/source/_components/emulated_roku.markdown +++ b/source/_components/emulated_roku.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.86 ha_iot_class: Local Push --- diff --git a/source/_components/enigma2.markdown b/source/_components/enigma2.markdown index 867d219d12e..59d1498b3f4 100644 --- a/source/_components/enigma2.markdown +++ b/source/_components/enigma2.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openwebif.png -ha_category: Media Player +ha_category: + - Media Player featured: false ha_release: "0.90" ha_iot_class: "Local Polling" diff --git a/source/_components/enphase_envoy.markdown b/source/_components/enphase_envoy.markdown index baca2f6a613..e34f48b633b 100644 --- a/source/_components/enphase_envoy.markdown +++ b/source/_components/enphase_envoy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: enphase-logo.svg -ha_category: Energy +ha_category: + - Energy ha_release: 0.76 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/entur_public_transport.markdown b/source/_components/entur_public_transport.markdown index e3c70d3277e..1f618f85524 100644 --- a/source/_components/entur_public_transport.markdown +++ b/source/_components/entur_public_transport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: entur.svg -ha_category: Transport +ha_category: + - Transport ha_release: 0.84 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/envirophat.markdown b/source/_components/envirophat.markdown index 900417a6fa0..72c0c11bcc1 100644 --- a/source/_components/envirophat.markdown +++ b/source/_components/envirophat.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Polling ha_release: 0.44 redirect_from: diff --git a/source/_components/ephember.markdown b/source/_components/ephember.markdown index e98d2d9ff1c..9d3d2cd9cdf 100644 --- a/source/_components/ephember.markdown +++ b/source/_components/ephember.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ephcontrolsember.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.57 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/epson.markdown b/source/_components/epson.markdown index 70acba4d7f7..edf50dfa218 100644 --- a/source/_components/epson.markdown +++ b/source/_components/epson.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: epson.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.72 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/epsonworkforce.markdown b/source/_components/epsonworkforce.markdown index 61c4e62b28a..9c3e5ee1d3f 100644 --- a/source/_components/epsonworkforce.markdown +++ b/source/_components/epsonworkforce.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: epson.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.92 ha_iot_class: Local Polling --- diff --git a/source/_components/eq3btsmart.markdown b/source/_components/eq3btsmart.markdown index 4cfd77aad33..3f80f7cb217 100644 --- a/source/_components/eq3btsmart.markdown +++ b/source/_components/eq3btsmart.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: eq3.gif -ha_category: Climate +ha_category: + - Climate ha_iot_class: Local Polling ha_release: 0.18 redirect_from: diff --git a/source/_components/esphome.markdown b/source/_components/esphome.markdown index 1374f5f3054..49f54e9f7ec 100644 --- a/source/_components/esphome.markdown +++ b/source/_components/esphome.markdown @@ -9,7 +9,8 @@ sharing: true featured: true footer: true logo: esphome.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.85 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/etherscan.markdown b/source/_components/etherscan.markdown index 5dd8601022a..e3152596a5e 100644 --- a/source/_components/etherscan.markdown +++ b/source/_components/etherscan.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: etherscan.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.47 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/everlights.markdown b/source/_components/everlights.markdown index 4c21ffe879d..849a042a8a6 100644 --- a/source/_components/everlights.markdown +++ b/source/_components/everlights.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: everlights.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.87 redirect_from: diff --git a/source/_components/facebook.markdown b/source/_components/facebook.markdown index 68a6490a41b..c051fbc3fc7 100644 --- a/source/_components/facebook.markdown +++ b/source/_components/facebook.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: facebook.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.36 redirect_from: - /components/notify.facebook/ diff --git a/source/_components/facebox.markdown b/source/_components/facebox.markdown index ba9e77ed373..21a818b2bb4 100644 --- a/source/_components/facebox.markdown +++ b/source/_components/facebox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: machine-box.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.70 redirect_from: - /components/image_processing.facebox/ diff --git a/source/_components/fail2ban.markdown b/source/_components/fail2ban.markdown index 13d7fb946b8..9249e71ca79 100644 --- a/source/_components/fail2ban.markdown +++ b/source/_components/fail2ban.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Network +ha_category: + - Network ha_iot_class: Local Polling logo: fail2ban.png ha_release: 0.57 diff --git a/source/_components/familyhub.markdown b/source/_components/familyhub.markdown index 63b523f8212..fb5ba25d73a 100644 --- a/source/_components/familyhub.markdown +++ b/source/_components/familyhub.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: familyhub.png -ha_category: Camera +ha_category: + - Camera ha_release: "0.70" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/fan.mqtt.markdown b/source/_components/fan.mqtt.markdown index 28c6649e9d9..07fe6d93ba6 100644 --- a/source/_components/fan.mqtt.markdown +++ b/source/_components/fan.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Fan +ha_category: + - Fan ha_release: 0.27 ha_iot_class: Configurable --- diff --git a/source/_components/fan.template.markdown b/source/_components/fan.template.markdown index c0affecac78..49e6dd81df6 100644 --- a/source/_components/fan.template.markdown +++ b/source/_components/fan.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Fan +ha_category: + - Fan ha_release: 0.69 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/fan.xiaomi_miio.markdown b/source/_components/fan.xiaomi_miio.markdown index 97e1747dab6..7e1bcf92b68 100644 --- a/source/_components/fan.xiaomi_miio.markdown +++ b/source/_components/fan.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Fan +ha_category: + - Fan ha_iot_class: Local Polling ha_release: 0.57 --- diff --git a/source/_components/fedex.markdown b/source/_components/fedex.markdown index bb22d2db344..182a0df191b 100644 --- a/source/_components/fedex.markdown +++ b/source/_components/fedex.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: fedex.png -ha_category: Postal Service +ha_category: + - Postal Service ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/feedreader.markdown b/source/_components/feedreader.markdown index 5ed987b90d1..cebea072cd9 100644 --- a/source/_components/feedreader.markdown +++ b/source/_components/feedreader.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rss.gif -ha_category: Other +ha_category: + - Other ha_release: 0.18 --- diff --git a/source/_components/ffmpeg.markdown b/source/_components/ffmpeg.markdown index 642faa60818..a051d575f55 100644 --- a/source/_components/ffmpeg.markdown +++ b/source/_components/ffmpeg.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ffmpeg.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.29 --- diff --git a/source/_components/ffmpeg_motion.markdown b/source/_components/ffmpeg_motion.markdown index eb857eec050..2e35be038ba 100644 --- a/source/_components/ffmpeg_motion.markdown +++ b/source/_components/ffmpeg_motion.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ffmpeg.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.27 redirect_from: - /components/binary_sensor.ffmpeg/ diff --git a/source/_components/ffmpeg_noise.markdown b/source/_components/ffmpeg_noise.markdown index 0b210357710..3dd7870c378 100644 --- a/source/_components/ffmpeg_noise.markdown +++ b/source/_components/ffmpeg_noise.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ffmpeg.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.27 redirect_from: - /components/binary_sensor.ffmpeg_noise/ diff --git a/source/_components/fido.markdown b/source/_components/fido.markdown index 2cf8b9d0f41..b4de25d306d 100644 --- a/source/_components/fido.markdown +++ b/source/_components/fido.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: fido.png -ha_category: Network +ha_category: + - Network ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/filesize.markdown b/source/_components/filesize.markdown index a34a371c8b3..a50862e11f2 100644 --- a/source/_components/filesize.markdown +++ b/source/_components/filesize.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: file.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.64 redirect_from: diff --git a/source/_components/filter.markdown b/source/_components/filter.markdown index eb2a7a3096e..6f75c5cc6e5 100644 --- a/source/_components/filter.markdown +++ b/source/_components/filter.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Utility +ha_category: + - Utility ha_release: 0.65 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/fints.markdown b/source/_components/fints.markdown index be75b289e6d..84aeff38ab6 100644 --- a/source/_components/fints.markdown +++ b/source/_components/fints.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Finance +ha_category: + - Finance ha_release: "0.70" ha_iot_class: Local Push redirect_from: diff --git a/source/_components/fitbit.markdown b/source/_components/fitbit.markdown index 94076e4181c..b841e48f400 100644 --- a/source/_components/fitbit.markdown +++ b/source/_components/fitbit.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: fitbit.png -ha_category: Health +ha_category: + - Health ha_iot_class: Cloud Polling ha_release: 0.19 redirect_from: diff --git a/source/_components/fixer.markdown b/source/_components/fixer.markdown index bb878df0e08..08779752fdf 100644 --- a/source/_components/fixer.markdown +++ b/source/_components/fixer.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Finance +ha_category: + - Finance logo: fixer-io.png ha_iot_class: Cloud Polling ha_release: 0.23 diff --git a/source/_components/flexit.markdown b/source/_components/flexit.markdown index 7be1b7f111a..1b08eb41014 100644 --- a/source/_components/flexit.markdown +++ b/source/_components/flexit.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: flexit.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.47 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/flic.markdown b/source/_components/flic.markdown index bfc10d5abf5..0601178647b 100644 --- a/source/_components/flic.markdown +++ b/source/_components/flic.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: flic.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_iot_class: Local Push ha_release: 0.35 redirect_from: diff --git a/source/_components/flock.markdown b/source/_components/flock.markdown index 819abf0bc57..f136a27578b 100644 --- a/source/_components/flock.markdown +++ b/source/_components/flock.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: flock.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.71 redirect_from: - /components/notify.flock/ diff --git a/source/_components/flunearyou.markdown b/source/_components/flunearyou.markdown index 382a9e7b2f1..f51b98556be 100644 --- a/source/_components/flunearyou.markdown +++ b/source/_components/flunearyou.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: flunearyou.png -ha_category: Health +ha_category: + - Health ha_release: 0.83 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/flux.markdown b/source/_components/flux.markdown index 886f2ca76a2..955d2ff9ee8 100644 --- a/source/_components/flux.markdown +++ b/source/_components/flux.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Automation +ha_category: + - Automation ha_release: 0.21 logo: home-assistant.png ha_qa_scale: internal diff --git a/source/_components/flux_led.markdown b/source/_components/flux_led.markdown index dbb445013fd..08eb44b4584 100644 --- a/source/_components/flux_led.markdown +++ b/source/_components/flux_led.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: magic_light.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.25 redirect_from: diff --git a/source/_components/folder.markdown b/source/_components/folder.markdown index 994b81934e6..bdd09519a1c 100644 --- a/source/_components/folder.markdown +++ b/source/_components/folder.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: file.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.64 redirect_from: diff --git a/source/_components/folder_watcher.markdown b/source/_components/folder_watcher.markdown index 94ef47a20ce..b6d4112e92d 100644 --- a/source/_components/folder_watcher.markdown +++ b/source/_components/folder_watcher.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.67 ha_qa_scale: internal diff --git a/source/_components/foobot.markdown b/source/_components/foobot.markdown index 6ffd85fa51a..b4a06b50c31 100644 --- a/source/_components/foobot.markdown +++ b/source/_components/foobot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: foobot.png -ha_category: Health +ha_category: + - Health ha_release: 0.66 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/foscam.markdown b/source/_components/foscam.markdown index 5794736839a..2c1ee27945d 100644 --- a/source/_components/foscam.markdown +++ b/source/_components/foscam.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: foscam.png -ha_category: Camera +ha_category: + - Camera ha_iot_class: Local Polling ha_release: 0.7.3 redirect_from: diff --git a/source/_components/foursquare.markdown b/source/_components/foursquare.markdown index 1c507ab63a2..a08d86d7120 100644 --- a/source/_components/foursquare.markdown +++ b/source/_components/foursquare.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: foursquare.png -ha_category: Social +ha_category: + - Social ha_release: 0.26 ha_iot_class: Cloud Polling and Cloud Push --- diff --git a/source/_components/free_mobile.markdown b/source/_components/free_mobile.markdown index 06b0664206b..7b231a1182d 100644 --- a/source/_components/free_mobile.markdown +++ b/source/_components/free_mobile.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: free_mobile.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.11 redirect_from: - /components/notify.free_mobile/ diff --git a/source/_components/freedns.markdown b/source/_components/freedns.markdown index 73c2160c7a9..c31040e44a5 100644 --- a/source/_components/freedns.markdown +++ b/source/_components/freedns.markdown @@ -8,7 +8,8 @@ comments: false sharing: true logo: afraid_freedns.png footer: true -ha_category: Network +ha_category: + - Network ha_release: 0.67 --- diff --git a/source/_components/fritz.markdown b/source/_components/fritz.markdown index aa5507b46d2..9572f1068f1 100644 --- a/source/_components/fritz.markdown +++ b/source/_components/fritz.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: avm.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: "0.10" redirect_from: - /components/device_tracker.fritz/ diff --git a/source/_components/fritzbox_callmonitor.markdown b/source/_components/fritzbox_callmonitor.markdown index 442d8352d0a..e36b630a673 100644 --- a/source/_components/fritzbox_callmonitor.markdown +++ b/source/_components/fritzbox_callmonitor.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: avm.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.27 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/fritzbox_netmonitor.markdown b/source/_components/fritzbox_netmonitor.markdown index 3e5bb1423e3..078db2dead6 100644 --- a/source/_components/fritzbox_netmonitor.markdown +++ b/source/_components/fritzbox_netmonitor.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: avm.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.36 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/fritzdect.markdown b/source/_components/fritzdect.markdown index 6ffd6cbf191..e5ece61a230 100644 --- a/source/_components/fritzdect.markdown +++ b/source/_components/fritzdect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: avm.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling ha_release: 0.38 redirect_from: diff --git a/source/_components/frontend.markdown b/source/_components/frontend.markdown index 476b29b1883..d287be2d843 100644 --- a/source/_components/frontend.markdown +++ b/source/_components/frontend.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - Other ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/frontier_silicon.markdown b/source/_components/frontier_silicon.markdown index c8c5af2489c..aa34ceca451 100644 --- a/source/_components/frontier_silicon.markdown +++ b/source/_components/frontier_silicon.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Push ha_release: "0.40" redirect_from: diff --git a/source/_components/futurenow.markdown b/source/_components/futurenow.markdown index 164cc6b7b88..db9c7526842 100644 --- a/source/_components/futurenow.markdown +++ b/source/_components/futurenow.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: p5.png -ha_category: Light +ha_category: + - Light ha_release: 0.75 redirect_from: - /components/light.futurenow/ diff --git a/source/_components/garadget.markdown b/source/_components/garadget.markdown index 89f7c5a8933..df0e457bae0 100644 --- a/source/_components/garadget.markdown +++ b/source/_components/garadget.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: garadget.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.32 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/gearbest.markdown b/source/_components/gearbest.markdown index f200db1fe53..1b1cb38c5cd 100644 --- a/source/_components/gearbest.markdown +++ b/source/_components/gearbest.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gearbest.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: "0.60" redirect_from: diff --git a/source/_components/geizhals.markdown b/source/_components/geizhals.markdown index 723586795d8..f38675845af 100644 --- a/source/_components/geizhals.markdown +++ b/source/_components/geizhals.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: geizhals.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: 0.51 redirect_from: diff --git a/source/_components/generic.markdown b/source/_components/generic.markdown index 1da0c675a57..b3d0aa213d6 100644 --- a/source/_components/generic.markdown +++ b/source/_components/generic.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Camera +ha_category: + - Camera logo: home-assistant.png ha_release: pre 0.7 ha_iot_class: Configurable diff --git a/source/_components/generic_thermostat.markdown b/source/_components/generic_thermostat.markdown index df63fdc9130..73ebdecab89 100644 --- a/source/_components/generic_thermostat.markdown +++ b/source/_components/generic_thermostat.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Climate +ha_category: + - Climate ha_release: pre 0.7 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/geo_json_events.markdown b/source/_components/geo_json_events.markdown index c601ed29273..828a406e276 100644 --- a/source/_components/geo_json_events.markdown +++ b/source/_components/geo_json_events.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: geo_location.png -ha_category: Geolocation +ha_category: + - Geolocation ha_iot_class: Cloud Polling ha_release: 0.79 redirect_from: diff --git a/source/_components/geo_rss_events.markdown b/source/_components/geo_rss_events.markdown index e889927ccdf..f20cea15d50 100644 --- a/source/_components/geo_rss_events.markdown +++ b/source/_components/geo_rss_events.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rss.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: 0.55 redirect_from: diff --git a/source/_components/github.markdown b/source/_components/github.markdown index a80bc6d3205..d8f8fe50440 100644 --- a/source/_components/github.markdown +++ b/source/_components/github.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: github.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.88 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/gitlab_ci.markdown b/source/_components/gitlab_ci.markdown index 1c3d0ce0c30..e3e2cccc40c 100644 --- a/source/_components/gitlab_ci.markdown +++ b/source/_components/gitlab_ci.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gitlab.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.80 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/gitter.markdown b/source/_components/gitter.markdown index 9977a294700..e6c638da140 100644 --- a/source/_components/gitter.markdown +++ b/source/_components/gitter.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gitter.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.47 redirect_from: - /components/sensor.gitter/ diff --git a/source/_components/glances.markdown b/source/_components/glances.markdown index d693106f1fe..8fb45cbc0be 100644 --- a/source/_components/glances.markdown +++ b/source/_components/glances.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: glances.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.7.3 redirect_from: diff --git a/source/_components/gntp.markdown b/source/_components/gntp.markdown index e82eb4d6fb9..8b0357ca4b3 100644 --- a/source/_components/gntp.markdown +++ b/source/_components/gntp.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gntp.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.16 redirect_from: - /components/notify.gntp/ diff --git a/source/_components/goalfeed.markdown b/source/_components/goalfeed.markdown index 474e8a0351f..9874df36e4a 100644 --- a/source/_components/goalfeed.markdown +++ b/source/_components/goalfeed.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: goalfeed.png -ha_category: Other +ha_category: + - Other ha_release: 0.63 --- diff --git a/source/_components/gogogate2.markdown b/source/_components/gogogate2.markdown index a6be2d23220..26656bf7d98 100644 --- a/source/_components/gogogate2.markdown +++ b/source/_components/gogogate2.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gogogate2.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.67 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/google_assistant.markdown b/source/_components/google_assistant.markdown index 412eff60a5f..a25cd42e2af 100644 --- a/source/_components/google_assistant.markdown +++ b/source/_components/google_assistant.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google-assistant.png -ha_category: Voice +ha_category: + - Voice featured: true ha_release: 0.56 --- diff --git a/source/_components/google_domains.markdown b/source/_components/google_domains.markdown index 0fcebeca094..bbbf3a95f13 100644 --- a/source/_components/google_domains.markdown +++ b/source/_components/google_domains.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google_domains.png -ha_category: Network +ha_category: + - Network ha_release: 0.57 --- diff --git a/source/_components/google_maps.markdown b/source/_components/google_maps.markdown index 28af816d622..e99833dd5eb 100644 --- a/source/_components/google_maps.markdown +++ b/source/_components/google_maps.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: google_maps.png ha_release: 0.67 -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Cloud Polling redirect_from: - /components/device_tracker.google_maps/ diff --git a/source/_components/google_pubsub.markdown b/source/_components/google_pubsub.markdown index 6cf43e12793..f644e671fe3 100644 --- a/source/_components/google_pubsub.markdown +++ b/source/_components/google_pubsub.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google-pubsub.png -ha_category: History +ha_category: + - History ha_release: 0.88 --- diff --git a/source/_components/google_translate.markdown b/source/_components/google_translate.markdown index 7dc9826f101..e7978829b57 100644 --- a/source/_components/google_translate.markdown +++ b/source/_components/google_translate.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.35 redirect_from: - /components/tts.google/ diff --git a/source/_components/google_travel_time.markdown b/source/_components/google_travel_time.markdown index 0defe09f654..56838a2b52a 100644 --- a/source/_components/google_travel_time.markdown +++ b/source/_components/google_travel_time.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: google_maps.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.19 redirect_from: diff --git a/source/_components/google_wifi.markdown b/source/_components/google_wifi.markdown index dc9a38210dd..1c4bd6a8a85 100644 --- a/source/_components/google_wifi.markdown +++ b/source/_components/google_wifi.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: System Monitor +ha_category: + - System Monitor logo: google_wifi.png ha_iot_class: Local Polling ha_release: "0.50" diff --git a/source/_components/gpmdp.markdown b/source/_components/gpmdp.markdown index fc1387533eb..20a96fd89d1 100644 --- a/source/_components/gpmdp.markdown +++ b/source/_components/gpmdp.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gpmdp.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: "0.20" redirect_from: diff --git a/source/_components/gpsd.markdown b/source/_components/gpsd.markdown index fe1261145f8..4e51ca7adac 100644 --- a/source/_components/gpsd.markdown +++ b/source/_components/gpsd.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: gpsd.png -ha_category: Utility +ha_category: + - Utility ha_release: 0.26 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/graphite.markdown b/source/_components/graphite.markdown index a5ac12376b8..15dfbc74b05 100644 --- a/source/_components/graphite.markdown +++ b/source/_components/graphite.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: graphite.png -ha_category: History +ha_category: + - History ha_release: 0.13 --- diff --git a/source/_components/greenwave.markdown b/source/_components/greenwave.markdown index c0c4752e9c0..23f123b69fe 100644 --- a/source/_components/greenwave.markdown +++ b/source/_components/greenwave.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: greenwavereality.png -ha_category: Light +ha_category: + - Light ha_release: 0.61 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/group.markdown b/source/_components/group.markdown index 84be9fe3dbf..095b9522dae 100644 --- a/source/_components/group.markdown +++ b/source/_components/group.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Organization +ha_category: + - Organization ha_qa_scale: internal ha_release: pre 0.7 --- diff --git a/source/_components/gstreamer.markdown b/source/_components/gstreamer.markdown index 8cf3206ddfa..6221cd61178 100644 --- a/source/_components/gstreamer.markdown +++ b/source/_components/gstreamer.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Media Player +ha_category: + - Media Player logo: gstreamer.png ha_release: 0.39 ha_iot_class: Local Push diff --git a/source/_components/gtfs.markdown b/source/_components/gtfs.markdown index d69b79452db..2416c97cedb 100644 --- a/source/_components/gtfs.markdown +++ b/source/_components/gtfs.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: train.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Local Polling ha_release: 0.17 redirect_from: diff --git a/source/_components/gtt.markdown b/source/_components/gtt.markdown index 1cc91043c42..e72d52af96b 100644 --- a/source/_components/gtt.markdown +++ b/source/_components/gtt.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Transport +ha_category: + - Transport logo: gtt.png ha_iot_class: Cloud Polling ha_release: 0.85 diff --git a/source/_components/harman_kardon_avr.markdown b/source/_components/harman_kardon_avr.markdown index 0a35de92486..6d6d1a28ad9 100644 --- a/source/_components/harman_kardon_avr.markdown +++ b/source/_components/harman_kardon_avr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: harman_kardon.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.85 redirect_from: diff --git a/source/_components/harmony.markdown b/source/_components/harmony.markdown index 764291714cd..2d492e009b1 100644 --- a/source/_components/harmony.markdown +++ b/source/_components/harmony.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: logitech.png -ha_category: Remote +ha_category: + - Remote ha_iot_class: Local Push ha_release: 0.34 redirect_from: diff --git a/source/_components/haveibeenpwned.markdown b/source/_components/haveibeenpwned.markdown index aaddab15622..cf7326d03ac 100644 --- a/source/_components/haveibeenpwned.markdown +++ b/source/_components/haveibeenpwned.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: haveibeenpwned.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.31 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/hddtemp.markdown b/source/_components/hddtemp.markdown index 449e4c7ac8e..1577dbb8775 100644 --- a/source/_components/hddtemp.markdown +++ b/source/_components/hddtemp.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.32 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/hdmi_cec.markdown b/source/_components/hdmi_cec.markdown index 9eae12c680f..4cb56e11a41 100644 --- a/source/_components/hdmi_cec.markdown +++ b/source/_components/hdmi_cec.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Automation +ha_category: + - Automation logo: hdmi.png ha_release: 0.23 ha_iot_class: Local Push diff --git a/source/_components/heatmiser.markdown b/source/_components/heatmiser.markdown index 06a6b78b939..7a3834a8bcd 100644 --- a/source/_components/heatmiser.markdown +++ b/source/_components/heatmiser.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: heatmiser.png -ha_category: Climate +ha_category: + - Climate ha_release: "0.10" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/heos.markdown b/source/_components/heos.markdown index 3c059b100c4..df86a5ba811 100644 --- a/source/_components/heos.markdown +++ b/source/_components/heos.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: heos.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.92 ha_iot_class: Local Push --- diff --git a/source/_components/hikvision.markdown b/source/_components/hikvision.markdown index 60a80a7c340..b59068d4517 100644 --- a/source/_components/hikvision.markdown +++ b/source/_components/hikvision.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hikvision.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.35 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/hikvisioncam.markdown b/source/_components/hikvisioncam.markdown index be37e776ee0..e6c544b04d9 100644 --- a/source/_components/hikvisioncam.markdown +++ b/source/_components/hikvisioncam.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hikvision.png -ha_category: Switch +ha_category: + - Switch ha_release: pre 0.7 redirect_from: - /components/switch.hikvisioncam/ diff --git a/source/_components/hipchat.markdown b/source/_components/hipchat.markdown index 966b7555284..7caba355984 100644 --- a/source/_components/hipchat.markdown +++ b/source/_components/hipchat.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hipchat.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.52 redirect_from: - /components/notify.hipchat/ diff --git a/source/_components/history.markdown b/source/_components/history.markdown index c2829753734..52bfedae60d 100644 --- a/source/_components/history.markdown +++ b/source/_components/history.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: History +ha_category: + - History ha_release: pre 0.7 ha_qa_scale: internal --- diff --git a/source/_components/history_graph.markdown b/source/_components/history_graph.markdown index 58ba97e9947..8d3dcfb083d 100644 --- a/source/_components/history_graph.markdown +++ b/source/_components/history_graph.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: History +ha_category: + - History logo: home-assistant.png ha_release: 0.55 ha_qa_scale: internal diff --git a/source/_components/history_stats.markdown b/source/_components/history_stats.markdown index 330acfc8704..17facd9a152 100644 --- a/source/_components/history_stats.markdown +++ b/source/_components/history_stats.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.39 ha_qa_scale: internal diff --git a/source/_components/hitron_coda.markdown b/source/_components/hitron_coda.markdown index ccd355b059f..379f44132a7 100644 --- a/source/_components/hitron_coda.markdown +++ b/source/_components/hitron_coda.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hitron.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.58 redirect_from: - /components/device_tracker.hitron_coda/ diff --git a/source/_components/homekit.markdown b/source/_components/homekit.markdown index 14cb836681c..1afeace2b50 100644 --- a/source/_components/homekit.markdown +++ b/source/_components/homekit.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Voice +ha_category: + - Voice ha_release: 0.64 logo: apple-homekit.png --- diff --git a/source/_components/honeywell.markdown b/source/_components/honeywell.markdown index 6ba8a1bdec8..bab02288bdf 100644 --- a/source/_components/honeywell.markdown +++ b/source/_components/honeywell.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: honeywell.png -ha_category: Climate +ha_category: + - Climate ha_release: pre 0.7 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/hook.markdown b/source/_components/hook.markdown index 0ef60023221..d37cba8f1ae 100644 --- a/source/_components/hook.markdown +++ b/source/_components/hook.markdown @@ -7,7 +7,8 @@ comments: false sharing: true footer: true logo: hook.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Assumed State ha_release: 0.34 redirect_from: diff --git a/source/_components/horizon.markdown b/source/_components/horizon.markdown index 6c65aa6d619..61b49c76999 100644 --- a/source/_components/horizon.markdown +++ b/source/_components/horizon.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: unitymedia.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.72 redirect_from: diff --git a/source/_components/hp_ilo.markdown b/source/_components/hp_ilo.markdown index c2a1a672d29..da2dc4603ae 100644 --- a/source/_components/hp_ilo.markdown +++ b/source/_components/hp_ilo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hewlett_packard_enterprise.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.27 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/html5.markdown b/source/_components/html5.markdown index bc698d07781..c9803894e97 100644 --- a/source/_components/html5.markdown +++ b/source/_components/html5.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: html5.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.27 redirect_from: - /components/notify.html5/ diff --git a/source/_components/htu21d.markdown b/source/_components/htu21d.markdown index 48b1f91ff78..a7ffd731ea3 100644 --- a/source/_components/htu21d.markdown +++ b/source/_components/htu21d.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.48 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/huawei_router.markdown b/source/_components/huawei_router.markdown index fad31c43f05..31ecacd2b4d 100644 --- a/source/_components/huawei_router.markdown +++ b/source/_components/huawei_router.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: huawei.svg -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.51 redirect_from: - /components/device_tracker.huawei_router/ diff --git a/source/_components/hunterdouglas_powerview.markdown b/source/_components/hunterdouglas_powerview.markdown index f047bf62c2d..6dac3997625 100644 --- a/source/_components/hunterdouglas_powerview.markdown +++ b/source/_components/hunterdouglas_powerview.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hunter-douglas-powerview.png -ha_category: Scene +ha_category: + - Scene ha_release: 0.15 redirect_from: - /components/scene.hunterdouglas_powerview/ diff --git a/source/_components/hydroquebec.markdown b/source/_components/hydroquebec.markdown index 62a69560686..8c061b92914 100644 --- a/source/_components/hydroquebec.markdown +++ b/source/_components/hydroquebec.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hydroquebec.svg -ha_category: Energy +ha_category: + - Energy ha_release: 0.35 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/hyperion.markdown b/source/_components/hyperion.markdown index 6f780836b44..3d9397635b6 100644 --- a/source/_components/hyperion.markdown +++ b/source/_components/hyperion.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: hyperion.png -ha_category: Light +ha_category: + - Light ha_release: 0.7.6 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/ialarm.markdown b/source/_components/ialarm.markdown index 6be1758afcb..446f65cadcc 100644 --- a/source/_components/ialarm.markdown +++ b/source/_components/ialarm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: antifurto365-ialarm.png -ha_category: Alarm +ha_category: + - Alarm ha_release: "0.60" redirect_from: - /components/alarm_control_panel.ialarm/ diff --git a/source/_components/icloud.markdown b/source/_components/icloud.markdown index f90fa283bd0..46da072f17d 100644 --- a/source/_components/icloud.markdown +++ b/source/_components/icloud.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: icloud.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: "0.10" redirect_from: - /components/device_tracker.icloud/ diff --git a/source/_components/idteck_prox.markdown b/source/_components/idteck_prox.markdown index 7899e7eb5f2..92145873a5d 100644 --- a/source/_components/idteck_prox.markdown +++ b/source/_components/idteck_prox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: idteck.jpg -ha_category: Other +ha_category: + - Other ha_release: 0.85 ha_iot_class: Local Push --- diff --git a/source/_components/ifttt.markdown b/source/_components/ifttt.markdown index a440d36053e..a926362e593 100644 --- a/source/_components/ifttt.markdown +++ b/source/_components/ifttt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ifttt.png -ha_category: Automation +ha_category: + - Automation featured: true ha_iot_class: Cloud Push ha_release: 0.80 diff --git a/source/_components/iglo.markdown b/source/_components/iglo.markdown index 9c5b5bf9ccb..2263ced9b8c 100644 --- a/source/_components/iglo.markdown +++ b/source/_components/iglo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: iglo.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.61 redirect_from: diff --git a/source/_components/ign_sismologia.markdown b/source/_components/ign_sismologia.markdown index 193aa76d157..dab95336634 100644 --- a/source/_components/ign_sismologia.markdown +++ b/source/_components/ign_sismologia.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ign-sismologia.png -ha_category: Geolocation +ha_category: + - Geolocation ha_iot_class: Cloud Polling ha_release: 0.92 --- diff --git a/source/_components/imap.markdown b/source/_components/imap.markdown index bcc364e3fd8..cd675022fe7 100644 --- a/source/_components/imap.markdown +++ b/source/_components/imap.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: smtp.png -ha_category: Mailbox +ha_category: + - Mailbox ha_release: 0.25 ha_iot_class: Cloud Push redirect_from: diff --git a/source/_components/imap_email_content.markdown b/source/_components/imap_email_content.markdown index 39a1ee111c1..8e2888bfe32 100644 --- a/source/_components/imap_email_content.markdown +++ b/source/_components/imap_email_content.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: smtp.png -ha_category: Mailbox +ha_category: + - Mailbox ha_iot_class: Cloud Push ha_release: 0.25 redirect_from: diff --git a/source/_components/input_boolean.markdown b/source/_components/input_boolean.markdown index 54785486fa8..711f800b147 100644 --- a/source/_components/input_boolean.markdown +++ b/source/_components/input_boolean.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_qa_scale: internal ha_release: 0.11 --- diff --git a/source/_components/input_datetime.markdown b/source/_components/input_datetime.markdown index 5a3d8aa005e..24af729cd29 100644 --- a/source/_components/input_datetime.markdown +++ b/source/_components/input_datetime.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.55 ha_qa_scale: internal --- diff --git a/source/_components/input_number.markdown b/source/_components/input_number.markdown index 840803033f3..1fd23355f1f 100644 --- a/source/_components/input_number.markdown +++ b/source/_components/input_number.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.55 redirect_from: /components/input_slider/ ha_qa_scale: internal diff --git a/source/_components/input_select.markdown b/source/_components/input_select.markdown index 92a27d6c851..9da10404134 100644 --- a/source/_components/input_select.markdown +++ b/source/_components/input_select.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.13 ha_qa_scale: internal --- diff --git a/source/_components/input_text.markdown b/source/_components/input_text.markdown index a35e70bf7d9..2cfa1bd7686 100644 --- a/source/_components/input_text.markdown +++ b/source/_components/input_text.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.53 ha_qa_scale: internal --- diff --git a/source/_components/intent_script.markdown b/source/_components/intent_script.markdown index f31d44d64c6..20a0c06074a 100644 --- a/source/_components/intent_script.markdown +++ b/source/_components/intent_script.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Intent +ha_category: + - Intent ha_release: "0.50" ha_qa_scale: internal --- diff --git a/source/_components/ios.markdown b/source/_components/ios.markdown index 213b7ac553a..bbad6b84642 100644 --- a/source/_components/ios.markdown +++ b/source/_components/ios.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: apple.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.31 ha_iot_class: Configurable --- diff --git a/source/_components/ipma.markdown b/source/_components/ipma.markdown index 901d6aa5f29..dfb2a64f705 100644 --- a/source/_components/ipma.markdown +++ b/source/_components/ipma.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ipma.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.72 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/irish_rail_transport.markdown b/source/_components/irish_rail_transport.markdown index 1a95369e73d..49328e6e658 100644 --- a/source/_components/irish_rail_transport.markdown +++ b/source/_components/irish_rail_transport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: irishrail.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.57 redirect_from: diff --git a/source/_components/islamic_prayer_times.markdown b/source/_components/islamic_prayer_times.markdown index 3d9dc474c85..c66dde38efc 100644 --- a/source/_components/islamic_prayer_times.markdown +++ b/source/_components/islamic_prayer_times.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: 0.85 redirect_from: diff --git a/source/_components/iss.markdown b/source/_components/iss.markdown index 06942b51906..34d47020994 100644 --- a/source/_components/iss.markdown +++ b/source/_components/iss.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nasa.png -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.36 redirect_from: - /components/sensor.iss/ diff --git a/source/_components/itach.markdown b/source/_components/itach.markdown index 2b3dc247ba2..9c39c7aeb99 100644 --- a/source/_components/itach.markdown +++ b/source/_components/itach.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: globalcache.png -ha_category: Remote +ha_category: + - Remote ha_iot_class: Assumed State ha_release: 0.39 redirect_from: diff --git a/source/_components/itunes.markdown b/source/_components/itunes.markdown index bdcff155e51..5a1c5fddbeb 100644 --- a/source/_components/itunes.markdown +++ b/source/_components/itunes.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: itunes.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.7.3 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/jewish_calendar.markdown b/source/_components/jewish_calendar.markdown index a141896c500..ae53869a010 100644 --- a/source/_components/jewish_calendar.markdown +++ b/source/_components/jewish_calendar.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Local Polling ha_release: 0.79 redirect_from: diff --git a/source/_components/kankun.markdown b/source/_components/kankun.markdown index 7063413bb36..57c9e938b08 100644 --- a/source/_components/kankun.markdown +++ b/source/_components/kankun.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Switch +ha_category: + - Switch ha_release: 0.36 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/keenetic_ndms2.markdown b/source/_components/keenetic_ndms2.markdown index c419e278695..f3e7eb66d54 100644 --- a/source/_components/keenetic_ndms2.markdown +++ b/source/_components/keenetic_ndms2.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: keenetic.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.54 redirect_from: - /components/device_tracker.keenetic_ndms2/ diff --git a/source/_components/keyboard.markdown b/source/_components/keyboard.markdown index b3bf0d474f1..45a044c1e33 100644 --- a/source/_components/keyboard.markdown +++ b/source/_components/keyboard.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: keyboard.png -ha_category: Automation +ha_category: + - Automation ha_release: pre 0.7 --- diff --git a/source/_components/keyboard_remote.markdown b/source/_components/keyboard_remote.markdown index dea4f38e672..a01c19964a0 100644 --- a/source/_components/keyboard_remote.markdown +++ b/source/_components/keyboard_remote.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: keyboard.png -ha_category: Other +ha_category: + - Other ha_release: 0.29 ha_iot_class: Local Push --- diff --git a/source/_components/kiwi.markdown b/source/_components/kiwi.markdown index 4f3288db1d3..701baab7a95 100644 --- a/source/_components/kiwi.markdown +++ b/source/_components/kiwi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: kiwi.png -ha_category: Lock +ha_category: + - Lock ha_release: 0.72 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/knx.markdown b/source/_components/knx.markdown index fd54c269940..3217c688da8 100644 --- a/source/_components/knx.markdown +++ b/source/_components/knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.24 ha_iot_class: Local Polling --- diff --git a/source/_components/kwb.markdown b/source/_components/kwb.markdown index ddc1bec6874..bb4736616f9 100644 --- a/source/_components/kwb.markdown +++ b/source/_components/kwb.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: kwb.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Local Polling ha_release: "0.40" redirect_from: diff --git a/source/_components/lacrosse.markdown b/source/_components/lacrosse.markdown index 9a276d8a6da..63a6885d369 100644 --- a/source/_components/lacrosse.markdown +++ b/source/_components/lacrosse.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.58 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/lannouncer.markdown b/source/_components/lannouncer.markdown index fb7742e226f..eb52832c2e6 100644 --- a/source/_components/lannouncer.markdown +++ b/source/_components/lannouncer.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lannouncer.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.36 redirect_from: - /components/notify.lannouncer/ diff --git a/source/_components/lastfm.markdown b/source/_components/lastfm.markdown index 6873ac9a271..10657b58fc5 100644 --- a/source/_components/lastfm.markdown +++ b/source/_components/lastfm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lastfm.png -ha_category: Social +ha_category: + - Social ha_iot_class: Cloud Polling ha_release: "0.20" redirect_from: diff --git a/source/_components/launch_library.markdown b/source/_components/launch_library.markdown index d98c75c2bdd..9d1d8a38c48 100644 --- a/source/_components/launch_library.markdown +++ b/source/_components/launch_library.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rocket.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: 0.83 redirect_from: diff --git a/source/_components/lg_netcast.markdown b/source/_components/lg_netcast.markdown index 18ec9531ea0..e5b59c32db2 100644 --- a/source/_components/lg_netcast.markdown +++ b/source/_components/lg_netcast.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lg.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: "0.20" redirect_from: diff --git a/source/_components/lg_soundbar.markdown b/source/_components/lg_soundbar.markdown index 3e33d4cd41e..14e54ca98a1 100644 --- a/source/_components/lg_soundbar.markdown +++ b/source/_components/lg_soundbar.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lg.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.81 redirect_from: diff --git a/source/_components/lifx.markdown b/source/_components/lifx.markdown index 021bb195f79..4a966855d21 100644 --- a/source/_components/lifx.markdown +++ b/source/_components/lifx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lifx.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.81 redirect_from: /components/light.lifx/ diff --git a/source/_components/lifx_cloud.markdown b/source/_components/lifx_cloud.markdown index 322d908c645..d253fc98dcc 100644 --- a/source/_components/lifx_cloud.markdown +++ b/source/_components/lifx_cloud.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lifx.png -ha_category: Scene +ha_category: + - Scene ha_release: 0.43 redirect_from: - /components/scene.lifx_cloud/ diff --git a/source/_components/light.group.markdown b/source/_components/light.group.markdown index 82a1361d668..1af62ea6f99 100644 --- a/source/_components/light.group.markdown +++ b/source/_components/light.group.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_release: 0.65 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/light.knx.markdown b/source/_components/light.knx.markdown index 93c53033a23..794efa26195 100644 --- a/source/_components/light.knx.markdown +++ b/source/_components/light.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Light +ha_category: + - Light ha_release: 0.44 ha_iot_class: Local Polling --- diff --git a/source/_components/light.mqtt.markdown b/source/_components/light.mqtt.markdown index 8975bd52682..d68d9605dd7 100644 --- a/source/_components/light.mqtt.markdown +++ b/source/_components/light.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Light +ha_category: + - Light ha_iot_class: Configurable redirect_from: - /components/light.mqtt_json/ diff --git a/source/_components/light.rflink.markdown b/source/_components/light.rflink.markdown index bc2868f99cc..2dd1812b75f 100644 --- a/source/_components/light.rflink.markdown +++ b/source/_components/light.rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Light +ha_category: + - Light ha_release: 0.38 ha_iot_class: Assumed State --- diff --git a/source/_components/light.rfxtrx.markdown b/source/_components/light.rfxtrx.markdown index 131142b79e2..38a84f2554e 100644 --- a/source/_components/light.rfxtrx.markdown +++ b/source/_components/light.rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Light +ha_category: + - Light ha_release: 0.7.5 ha_iot_class: Assumed State --- diff --git a/source/_components/light.switch.markdown b/source/_components/light.switch.markdown index f187cef71f3..15aff42e555 100644 --- a/source/_components/light.switch.markdown +++ b/source/_components/light.switch.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_release: 0.83 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/light.template.markdown b/source/_components/light.template.markdown index ce085f84866..f51d239cd96 100644 --- a/source/_components/light.template.markdown +++ b/source/_components/light.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_release: 0.46 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/light.xiaomi_aqara.markdown b/source/_components/light.xiaomi_aqara.markdown index 4dd1964a733..76627f37d38 100644 --- a/source/_components/light.xiaomi_aqara.markdown +++ b/source/_components/light.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Light +ha_category: + - Light ha_release: "0.50" ha_iot_class: Local Push --- diff --git a/source/_components/light.xiaomi_miio.markdown b/source/_components/light.xiaomi_miio.markdown index a1a01f6705f..7b03b3f3c12 100644 --- a/source/_components/light.xiaomi_miio.markdown +++ b/source/_components/light.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: philips.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.53 --- diff --git a/source/_components/limitlessled.markdown b/source/_components/limitlessled.markdown index e5a72bf4402..f5853c4d083 100644 --- a/source/_components/limitlessled.markdown +++ b/source/_components/limitlessled.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: limitlessled_logo.png -ha_category: Light +ha_category: + - Light ha_iot_class: Assumed State ha_release: pre 0.7 redirect_from: diff --git a/source/_components/linksys_ap.markdown b/source/_components/linksys_ap.markdown index 8ce19827f60..905a41f895b 100644 --- a/source/_components/linksys_ap.markdown +++ b/source/_components/linksys_ap.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Presence Detection +ha_category: + - Presence Detection logo: linksys.png ha_release: 0.37 redirect_from: diff --git a/source/_components/linksys_smart.markdown b/source/_components/linksys_smart.markdown index 88dd0a10523..40218e7173a 100644 --- a/source/_components/linksys_smart.markdown +++ b/source/_components/linksys_smart.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Presence Detection +ha_category: + - Presence Detection logo: linksys.png ha_release: 0.48 redirect_from: diff --git a/source/_components/linky.markdown b/source/_components/linky.markdown index 493a8d36621..d969d68c6b2 100644 --- a/source/_components/linky.markdown +++ b/source/_components/linky.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: enedis.png ha_release: 0.79 -ha_category: Energy +ha_category: + - Energy ha_iot_class: Cloud Polling redirect_from: - /components/sensor.linky/ diff --git a/source/_components/linux_battery.markdown b/source/_components/linux_battery.markdown index 1f436800dab..e91589b9442 100644 --- a/source/_components/linux_battery.markdown +++ b/source/_components/linux_battery.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: linux_battery.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.28 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/lirc.markdown b/source/_components/lirc.markdown index 409ef2b261a..0b25e8bcbd9 100644 --- a/source/_components/lirc.markdown +++ b/source/_components/lirc.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lirc.gif -ha_category: Automation +ha_category: + - Automation ha_release: 0.21 ha_iot_class: Local Push --- diff --git a/source/_components/liveboxplaytv.markdown b/source/_components/liveboxplaytv.markdown index 2fab9a68b8e..796f25f8bc2 100644 --- a/source/_components/liveboxplaytv.markdown +++ b/source/_components/liveboxplaytv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: orange.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.38 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/llamalab_automate.markdown b/source/_components/llamalab_automate.markdown index 290eb5a599f..0c4444bd6d8 100644 --- a/source/_components/llamalab_automate.markdown +++ b/source/_components/llamalab_automate.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: llamalab_automate.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.27 redirect_from: - /components/notify.llamalab_automate/ diff --git a/source/_components/local_file.markdown b/source/_components/local_file.markdown index d5cdd4e298c..84ac707ae03 100644 --- a/source/_components/local_file.markdown +++ b/source/_components/local_file.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: file.png -ha_category: Camera +ha_category: + - Camera ha_iot_class: Local Polling ha_release: 0.22 redirect_from: diff --git a/source/_components/locative.md b/source/_components/locative.md index ddb862a5f6c..7aeecdfa8a3 100644 --- a/source/_components/locative.md +++ b/source/_components/locative.md @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: locative.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.86 ha_iot_class: Cloud Push redirect_from: diff --git a/source/_components/lock.mqtt.markdown b/source/_components/lock.mqtt.markdown index a457b54578a..c647e9a44e2 100644 --- a/source/_components/lock.mqtt.markdown +++ b/source/_components/lock.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Lock +ha_category: + - Lock ha_release: 0.15 ha_iot_class: Configurable --- diff --git a/source/_components/lock.template.markdown b/source/_components/lock.template.markdown index 03e884f600e..b7282a64b61 100644 --- a/source/_components/lock.template.markdown +++ b/source/_components/lock.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Lock +ha_category: + - Lock ha_release: 0.81 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/lock.xiaomi_aqara.markdown b/source/_components/lock.xiaomi_aqara.markdown index e98a8fb8be5..c0172ab57a3 100644 --- a/source/_components/lock.xiaomi_aqara.markdown +++ b/source/_components/lock.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Lock +ha_category: + - Lock ha_release: 0.71 ha_iot_class: Local Push --- diff --git a/source/_components/lockitron.markdown b/source/_components/lockitron.markdown index 92f30537e5c..ac7875556cd 100644 --- a/source/_components/lockitron.markdown +++ b/source/_components/lockitron.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lockitron.png -ha_category: Lock +ha_category: + - Lock ha_iot_class: Cloud Polling ha_release: 0.42 redirect_from: diff --git a/source/_components/logbook.markdown b/source/_components/logbook.markdown index f5cea083542..51ec7583b94 100644 --- a/source/_components/logbook.markdown +++ b/source/_components/logbook.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: logbook.png -ha_category: "History" +ha_category: + - History ha_release: 0.7 --- diff --git a/source/_components/logentries.markdown b/source/_components/logentries.markdown index 2b619593580..48d8e16dc08 100644 --- a/source/_components/logentries.markdown +++ b/source/_components/logentries.markdown @@ -8,7 +8,8 @@ comments: false sharing: true logo: logentries.png footer: true -ha_category: "History" +ha_category: + - History ha_release: 0.13 --- diff --git a/source/_components/logger.markdown b/source/_components/logger.markdown index 50d6b8394fc..bfeb048e5a1 100644 --- a/source/_components/logger.markdown +++ b/source/_components/logger.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Utility" +ha_category: + - Utility ha_qa_scale: internal ha_release: 0.8 --- diff --git a/source/_components/london_air.markdown b/source/_components/london_air.markdown index 800caa80ef3..14d7cf26387 100644 --- a/source/_components/london_air.markdown +++ b/source/_components/london_air.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: waqi.png -ha_category: Health +ha_category: + - Health ha_iot_class: Cloud Polling ha_release: 0.52 redirect_from: diff --git a/source/_components/london_underground.markdown b/source/_components/london_underground.markdown index ca0c732ff6c..e2a3237d0d9 100644 --- a/source/_components/london_underground.markdown +++ b/source/_components/london_underground.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: london_underground.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.49 redirect_from: diff --git a/source/_components/loopenergy.markdown b/source/_components/loopenergy.markdown index 21a73ab9cc4..8fb48ffdb78 100644 --- a/source/_components/loopenergy.markdown +++ b/source/_components/loopenergy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: loop.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.17 ha_iot_class: Cloud Push redirect_from: diff --git a/source/_components/luci.markdown b/source/_components/luci.markdown index b9d44f81502..40e34119d92 100644 --- a/source/_components/luci.markdown +++ b/source/_components/luci.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openwrt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: pre 0.7 redirect_from: - /components/device_tracker.luci/ diff --git a/source/_components/lw12wifi.markdown b/source/_components/lw12wifi.markdown index 9bd61883ba2..6177029aafe 100644 --- a/source/_components/lw12wifi.markdown +++ b/source/_components/lw12wifi.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling logo: lagute.png ha_release: 0.71 diff --git a/source/_components/lyft.markdown b/source/_components/lyft.markdown index c7e5ab2d6bb..6fc53741317 100644 --- a/source/_components/lyft.markdown +++ b/source/_components/lyft.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: lyft.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.41 redirect_from: diff --git a/source/_components/magicseaweed.markdown b/source/_components/magicseaweed.markdown index 9f8aea8d0f9..6aa596a1323 100644 --- a/source/_components/magicseaweed.markdown +++ b/source/_components/magicseaweed.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: magicseaweed.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.75 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/manual.markdown b/source/_components/manual.markdown index e15bb465de5..688704cd64c 100644 --- a/source/_components/manual.markdown +++ b/source/_components/manual.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.7.6 ha_qa_scale: internal redirect_from: diff --git a/source/_components/manual_mqtt.markdown b/source/_components/manual_mqtt.markdown index a3de0f646a8..ac75fdb9543 100644 --- a/source/_components/manual_mqtt.markdown +++ b/source/_components/manual_mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Alarm +ha_category: + - Alarm ha_release: "0.50" redirect_from: - /components/alarm_control_panel.manual_mqtt/ diff --git a/source/_components/map.markdown b/source/_components/map.markdown index 7825caac884..4db8024e468 100644 --- a/source/_components/map.markdown +++ b/source/_components/map.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - Other ha_qa_scale: internal ha_release: 0.56 --- diff --git a/source/_components/marytts.markdown b/source/_components/marytts.markdown index 190951d2a4d..c55f7a86f84 100644 --- a/source/_components/marytts.markdown +++ b/source/_components/marytts.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: marytts.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.43 redirect_from: - /components/tts.marytts/ diff --git a/source/_components/mastodon.markdown b/source/_components/mastodon.markdown index 373c6444db6..49ae65074f7 100644 --- a/source/_components/mastodon.markdown +++ b/source/_components/mastodon.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mastodon.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.67 redirect_from: - /components/notify.mastodon/ diff --git a/source/_components/media_extractor.markdown b/source/_components/media_extractor.markdown index 33c788c3dc8..ccbfaff639e 100644 --- a/source/_components/media_extractor.markdown +++ b/source/_components/media_extractor.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.49 ha_qa_scale: internal --- diff --git a/source/_components/mediaroom.markdown b/source/_components/mediaroom.markdown index 84c22310e60..e28fdac628a 100644 --- a/source/_components/mediaroom.markdown +++ b/source/_components/mediaroom.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mediaroom.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.63 redirect_from: diff --git a/source/_components/meraki.markdown b/source/_components/meraki.markdown index 0d5f0da505a..f83aad46993 100644 --- a/source/_components/meraki.markdown +++ b/source/_components/meraki.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: meraki.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: "0.60" redirect_from: - /components/device_tracker.meraki/ diff --git a/source/_components/message_bird.markdown b/source/_components/message_bird.markdown index c208c8ee3cb..aa32b1b98b4 100644 --- a/source/_components/message_bird.markdown +++ b/source/_components/message_bird.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: message_bird.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.16 redirect_from: - /components/notify.message_bird/ diff --git a/source/_components/met.markdown b/source/_components/met.markdown index a3f90eb9e8a..9e970b9abec 100644 --- a/source/_components/met.markdown +++ b/source/_components/met.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: metno.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.79 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/metoffice.markdown b/source/_components/metoffice.markdown index 95fb7c50049..7a5e787a859 100644 --- a/source/_components/metoffice.markdown +++ b/source/_components/metoffice.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: metoffice.jpg -ha_category: Weather +ha_category: + - Weather ha_release: 0.42 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/mhz19.markdown b/source/_components/mhz19.markdown index 68d18bea3f3..c01ff9d43fb 100644 --- a/source/_components/mhz19.markdown +++ b/source/_components/mhz19.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mhz19_logo.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.27 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/microsoft.markdown b/source/_components/microsoft.markdown index 85ff5e4b220..496a3513dec 100644 --- a/source/_components/microsoft.markdown +++ b/source/_components/microsoft.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: microsoft.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.57 redirect_from: - /components/tts.microsoft/ diff --git a/source/_components/microsoft_face.markdown b/source/_components/microsoft_face.markdown index ee8554d0424..d26dffb6c0c 100644 --- a/source/_components/microsoft_face.markdown +++ b/source/_components/microsoft_face.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: microsoft.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.37 --- diff --git a/source/_components/microsoft_face_detect.markdown b/source/_components/microsoft_face_detect.markdown index 7aa5fa5e79f..0391fb387b4 100644 --- a/source/_components/microsoft_face_detect.markdown +++ b/source/_components/microsoft_face_detect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: microsoft.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.38 redirect_from: - /components/image_processing.microsoft_face_detect/ diff --git a/source/_components/microsoft_face_identify.markdown b/source/_components/microsoft_face_identify.markdown index cf148a10447..f3408dbb8f5 100644 --- a/source/_components/microsoft_face_identify.markdown +++ b/source/_components/microsoft_face_identify.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: microsoft.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.37 redirect_from: - /components/image_processing.microsoft_face_identify/ diff --git a/source/_components/miflora.markdown b/source/_components/miflora.markdown index 1f546b09233..72d157dee8a 100644 --- a/source/_components/miflora.markdown +++ b/source/_components/miflora.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: miflora.png -ha_category: Environment +ha_category: + - Environment ha_release: 0.29 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/mikrotik.markdown b/source/_components/mikrotik.markdown index 3f847c5eced..2ae7375363f 100644 --- a/source/_components/mikrotik.markdown +++ b/source/_components/mikrotik.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mikrotik.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.44 redirect_from: - /components/device_tracker.mikrotik/ diff --git a/source/_components/mill.markdown b/source/_components/mill.markdown index 3a1f8c76431..b5efbaf4741 100644 --- a/source/_components/mill.markdown +++ b/source/_components/mill.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mill.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.81 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/min_max.markdown b/source/_components/min_max.markdown index 5ea75b7473c..28a6ca136e5 100644 --- a/source/_components/min_max.markdown +++ b/source/_components/min_max.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.31 ha_qa_scale: internal diff --git a/source/_components/mitemp_bt.markdown b/source/_components/mitemp_bt.markdown index a70b76c3da6..93c8ead2496 100644 --- a/source/_components/mitemp_bt.markdown +++ b/source/_components/mitemp_bt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.69 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/mjpeg.markdown b/source/_components/mjpeg.markdown index f8fdad9f88b..428b710f2b7 100644 --- a/source/_components/mjpeg.markdown +++ b/source/_components/mjpeg.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Camera +ha_category: + - Camera ha_release: pre 0.7 ha_iot_class: Configurable redirect_from: diff --git a/source/_components/mobile_app.markdown b/source/_components/mobile_app.markdown index cdb7634c304..ef2ab766b9a 100644 --- a/source/_components/mobile_app.markdown +++ b/source/_components/mobile_app.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - "Other" ha_release: 0.89 ha_qa_scale: internal --- diff --git a/source/_components/modbus.markdown b/source/_components/modbus.markdown index 86b9232747b..77ddbcee795 100644 --- a/source/_components/modbus.markdown +++ b/source/_components/modbus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: modbus.png -ha_category: Hub +ha_category: + - Hub ha_release: pre 0.7 ha_iot_class: Local Push --- diff --git a/source/_components/modem_callerid.markdown b/source/_components/modem_callerid.markdown index 91ce1fbb8e7..ca8a08b1964 100644 --- a/source/_components/modem_callerid.markdown +++ b/source/_components/modem_callerid.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_release: "0.40" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/mold_indicator.markdown b/source/_components/mold_indicator.markdown index d11ed34710b..65f3ac9d1a5 100644 --- a/source/_components/mold_indicator.markdown +++ b/source/_components/mold_indicator.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Environment +ha_category: + - Environment ha_release: "0.20" ha_iot_class: Local Polling ha_qa_scale: internal diff --git a/source/_components/monoprice.markdown b/source/_components/monoprice.markdown index 408eb69a48e..5fe57db0fc9 100644 --- a/source/_components/monoprice.markdown +++ b/source/_components/monoprice.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: monoprice.svg -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.56 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/moon.markdown b/source/_components/moon.markdown index 1c143d9e5f2..fc14c92ca13 100644 --- a/source/_components/moon.markdown +++ b/source/_components/moon.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Environment +ha_category: + - Environment ha_iot_class: Local Polling ha_release: 0.38 ha_qa_scale: internal diff --git a/source/_components/mpchc.markdown b/source/_components/mpchc.markdown index 32849e0f8c9..6793fe01e97 100644 --- a/source/_components/mpchc.markdown +++ b/source/_components/mpchc.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mpchc.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.25 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/mpd.markdown b/source/_components/mpd.markdown index 6c95687b98a..c17885ebf74 100644 --- a/source/_components/mpd.markdown +++ b/source/_components/mpd.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mpd.png -ha_category: Media Player +ha_category: + - Media Player ha_release: pre 0.7 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/mqtt.markdown b/source/_components/mqtt.markdown index fe98b223e87..58be848946c 100644 --- a/source/_components/mqtt.markdown +++ b/source/_components/mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Hub +ha_category: + - Hub featured: true ha_release: pre 0.7 ha_iot_class: Local Push diff --git a/source/_components/mqtt_eventstream.markdown b/source/_components/mqtt_eventstream.markdown index 4ea0c5439ad..b35a2e57d49 100644 --- a/source/_components/mqtt_eventstream.markdown +++ b/source/_components/mqtt_eventstream.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Other +ha_category: + - Other ha_release: 0.11 ha_iot_class: Configurable --- diff --git a/source/_components/mqtt_json.markdown b/source/_components/mqtt_json.markdown index 0a0413c3dfc..9d4494d5b8a 100644 --- a/source/_components/mqtt_json.markdown +++ b/source/_components/mqtt_json.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Configurable ha_release: 0.44 redirect_from: diff --git a/source/_components/mqtt_room.markdown b/source/_components/mqtt_room.markdown index 3ee3c59c805..362edcb75db 100644 --- a/source/_components/mqtt_room.markdown +++ b/source/_components/mqtt_room.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.27 ha_iot_class: Configurable redirect_from: diff --git a/source/_components/mqtt_statestream.markdown b/source/_components/mqtt_statestream.markdown index 822187cbb48..14ea333bc5b 100644 --- a/source/_components/mqtt_statestream.markdown +++ b/source/_components/mqtt_statestream.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Other +ha_category: + - Other ha_release: 0.54 ha_iot_class: Configurable --- diff --git a/source/_components/mvglive.markdown b/source/_components/mvglive.markdown index 433b45ddaac..fcec67914b8 100644 --- a/source/_components/mvglive.markdown +++ b/source/_components/mvglive.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mvg.png -ha_category: Transport +ha_category: + - Transport ha_release: 0.42 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/mychevy.markdown b/source/_components/mychevy.markdown index 3f91dbdc9e3..5d681a94199 100644 --- a/source/_components/mychevy.markdown +++ b/source/_components/mychevy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: chevy.png -ha_category: Car +ha_category: + - Car ha_release: 0.62 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/myq.markdown b/source/_components/myq.markdown index e8aed2020cf..4eba68ac803 100644 --- a/source/_components/myq.markdown +++ b/source/_components/myq.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: myq.png -ha_category: Cover +ha_category: + - Cover ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/mysensors.markdown b/source/_components/mysensors.markdown index bd5861b72aa..386daaeeb30 100644 --- a/source/_components/mysensors.markdown +++ b/source/_components/mysensors.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mysensors.png -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Push ha_release: 0.73 --- diff --git a/source/_components/mythicbeastsdns.markdown b/source/_components/mythicbeastsdns.markdown index b12e0b95ffc..b5db1384f6b 100644 --- a/source/_components/mythicbeastsdns.markdown +++ b/source/_components/mythicbeastsdns.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Network +ha_category: + - Network ha_release: 0.85 ha_iot_class: Cloud Push logo: mythic_beasts.png diff --git a/source/_components/nad.markdown b/source/_components/nad.markdown index 8e838d591c9..bcdec4b48ca 100644 --- a/source/_components/nad.markdown +++ b/source/_components/nad.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nad.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.36 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/namecheapdns.markdown b/source/_components/namecheapdns.markdown index 95ebe8e032b..b0798ab5004 100644 --- a/source/_components/namecheapdns.markdown +++ b/source/_components/namecheapdns.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: namecheap.png -ha_category: Network +ha_category: + - Network ha_release: 0.56 --- diff --git a/source/_components/nanoleaf.markdown b/source/_components/nanoleaf.markdown index a3c614a99fc..2a404a0e267 100644 --- a/source/_components/nanoleaf.markdown +++ b/source/_components/nanoleaf.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nanoleaf_light.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.67 redirect_from: diff --git a/source/_components/nederlandse_spoorwegen.markdown b/source/_components/nederlandse_spoorwegen.markdown index b0030317a09..7849eb5abdd 100644 --- a/source/_components/nederlandse_spoorwegen.markdown +++ b/source/_components/nederlandse_spoorwegen.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nederlandse_spoorwegen.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.57 redirect_from: diff --git a/source/_components/nello.markdown b/source/_components/nello.markdown index f21525690ba..4dc7c326c53 100644 --- a/source/_components/nello.markdown +++ b/source/_components/nello.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nello.png -ha_category: Lock +ha_category: + - Lock ha_release: 0.52 ha_iot_class: Cloud Polling diff --git a/source/_components/netatmo.markdown b/source/_components/netatmo.markdown index 9797d3f08fa..ae756c71fc9 100644 --- a/source/_components/netatmo.markdown +++ b/source/_components/netatmo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Hub +ha_category: + - Hub ha_release: "0.20" ha_iot_class: Cloud Polling --- diff --git a/source/_components/netatmo_public.markdown b/source/_components/netatmo_public.markdown index e269286e530..8796584f90d 100644 --- a/source/_components/netatmo_public.markdown +++ b/source/_components/netatmo_public.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Environment +ha_category: + - Environment ha_iot_class: Cloud Polling ha_release: 0.77 redirect_from: diff --git a/source/_components/netdata.markdown b/source/_components/netdata.markdown index 7e5b7d31bf6..a1e9444d8a5 100644 --- a/source/_components/netdata.markdown +++ b/source/_components/netdata.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netdata.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.35 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/netgear.markdown b/source/_components/netgear.markdown index b2ea11bc4c9..1aade18f142 100644 --- a/source/_components/netgear.markdown +++ b/source/_components/netgear.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netgear.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling ha_release: pre 0.7 redirect_from: diff --git a/source/_components/netio.markdown b/source/_components/netio.markdown index af1a9fe9305..99cfd8ebfda 100644 --- a/source/_components/netio.markdown +++ b/source/_components/netio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netio.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling ha_release: 0.24 redirect_from: diff --git a/source/_components/neurio_energy.markdown b/source/_components/neurio_energy.markdown index 00eeb4aed3b..f5453f39fe0 100644 --- a/source/_components/neurio_energy.markdown +++ b/source/_components/neurio_energy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: neurio.png -ha_category: Energy +ha_category: + - Energy ha_iot_class: Cloud Polling ha_release: 0.14 redirect_from: diff --git a/source/_components/nfandroidtv.markdown b/source/_components/nfandroidtv.markdown index 3bd95cb9af1..dfd81f0853f 100644 --- a/source/_components/nfandroidtv.markdown +++ b/source/_components/nfandroidtv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nfandroidtv.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.32 redirect_from: - /components/notify.nfandroidtv/ diff --git a/source/_components/niko_home_control.markdown b/source/_components/niko_home_control.markdown index 93a083d1260..20a688fb88c 100644 --- a/source/_components/niko_home_control.markdown +++ b/source/_components/niko_home_control.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.82 redirect_from: diff --git a/source/_components/nilu.markdown b/source/_components/nilu.markdown index d8bf9736804..001c590ff43 100644 --- a/source/_components/nilu.markdown +++ b/source/_components/nilu.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nilu_logo.png -ha_category: Health +ha_category: + - Health ha_iot_class: Cloud Polling ha_release: 0.87 redirect_from: diff --git a/source/_components/nissan_leaf.markdown b/source/_components/nissan_leaf.markdown index d728b969d6b..3eeb5148480 100644 --- a/source/_components/nissan_leaf.markdown +++ b/source/_components/nissan_leaf.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nissan.png -ha_category: Car +ha_category: + - Car ha_release: 0.89 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/nmap_tracker.markdown b/source/_components/nmap_tracker.markdown index eac47f5ca07..1003cc26778 100644 --- a/source/_components/nmap_tracker.markdown +++ b/source/_components/nmap_tracker.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nmap.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7 redirect_from: - /components/device_tracker.nmap_tracker/ diff --git a/source/_components/nmbs.markdown b/source/_components/nmbs.markdown index 84b568a90c0..32c295f201e 100644 --- a/source/_components/nmbs.markdown +++ b/source/_components/nmbs.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sncb_nmbs.gif -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.85 redirect_from: diff --git a/source/_components/no_ip.markdown b/source/_components/no_ip.markdown index 6fd472b8de5..c5b87a62c44 100644 --- a/source/_components/no_ip.markdown +++ b/source/_components/no_ip.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: noip.png -ha_category: Network +ha_category: + - Network ha_release: 0.57 --- diff --git a/source/_components/noaa_tides.markdown b/source/_components/noaa_tides.markdown index 0a1cd487b9c..7ccddd4bbe6 100644 --- a/source/_components/noaa_tides.markdown +++ b/source/_components/noaa_tides.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Environment +ha_category: + - Environment ha_release: 0.75 logo: noaa.png redirect_from: diff --git a/source/_components/norway_air.markdown b/source/_components/norway_air.markdown index fe72ae16b91..068c9678a22 100644 --- a/source/_components/norway_air.markdown +++ b/source/_components/norway_air.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: metno.png -ha_category: Health +ha_category: + - Health ha_iot_class: Cloud Polling ha_release: 0.88 --- diff --git a/source/_components/notify.command_line.markdown b/source/_components/notify.command_line.markdown index 844973bbdd1..b9105f1981b 100644 --- a/source/_components/notify.command_line.markdown +++ b/source/_components/notify.command_line.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: command_line.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.14 --- diff --git a/source/_components/notify.group.markdown b/source/_components/notify.group.markdown index b4eb9b5e3a4..d0b8d247d2b 100644 --- a/source/_components/notify.group.markdown +++ b/source/_components/notify.group.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.26 ha_qa_scale: internal --- diff --git a/source/_components/notify.knx.markdown b/source/_components/notify.knx.markdown index d83b0db54ac..e0fc018b947 100644 --- a/source/_components/notify.knx.markdown +++ b/source/_components/notify.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.53 ha_iot_class: Local Push --- diff --git a/source/_components/notify.rest.markdown b/source/_components/notify.rest.markdown index 0a6876b178e..66928eecbae 100644 --- a/source/_components/notify.rest.markdown +++ b/source/_components/notify.rest.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: restful.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.13 --- diff --git a/source/_components/nsw_fuel_station.markdown b/source/_components/nsw_fuel_station.markdown index fe2db48da49..96eb596d703 100644 --- a/source/_components/nsw_fuel_station.markdown +++ b/source/_components/nsw_fuel_station.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: fuelcheck.png -ha_category: Car +ha_category: + - Car ha_release: 0.72 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/nsw_rural_fire_service_feed.markdown b/source/_components/nsw_rural_fire_service_feed.markdown index eced9e62ee3..264208357a3 100644 --- a/source/_components/nsw_rural_fire_service_feed.markdown +++ b/source/_components/nsw_rural_fire_service_feed.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nsw-rural-fire-service.png -ha_category: Geolocation +ha_category: + - Geolocation ha_iot_class: Cloud Polling ha_release: 0.81 redirect_from: diff --git a/source/_components/nuimo_controller.markdown b/source/_components/nuimo_controller.markdown index 7a844803f35..89925b02407 100644 --- a/source/_components/nuimo_controller.markdown +++ b/source/_components/nuimo_controller.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nuimo.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.29 ha_iot_class: Local Polling --- diff --git a/source/_components/nuki.markdown b/source/_components/nuki.markdown index 7b127486342..0b862989f82 100644 --- a/source/_components/nuki.markdown +++ b/source/_components/nuki.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nuki.png -ha_category: Lock +ha_category: + - Lock ha_release: 0.38 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/nut.markdown b/source/_components/nut.markdown index 160ef32b825..ebb70c5d2e1 100644 --- a/source/_components/nut.markdown +++ b/source/_components/nut.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: nut.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.34 redirect_from: diff --git a/source/_components/nzbget.markdown b/source/_components/nzbget.markdown index 23b8fc09ae7..2a91ac2877c 100644 --- a/source/_components/nzbget.markdown +++ b/source/_components/nzbget.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Downloading +ha_category: + - Downloading logo: nzbget.png ha_iot_class: Local Polling ha_release: 0.17 diff --git a/source/_components/oem.markdown b/source/_components/oem.markdown index 0d13d535938..82de0925bfa 100644 --- a/source/_components/oem.markdown +++ b/source/_components/oem.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: oem.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.39 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/ohmconnect.markdown b/source/_components/ohmconnect.markdown index 94c9a313b00..8ddfdbec2cc 100644 --- a/source/_components/ohmconnect.markdown +++ b/source/_components/ohmconnect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: "ohmconnect.png" -ha_category: Energy +ha_category: + - Energy ha_iot_class: Cloud Polling ha_release: 0.26 redirect_from: diff --git a/source/_components/onboarding.markdown b/source/_components/onboarding.markdown index fa50caaf358..56236903277 100644 --- a/source/_components/onboarding.markdown +++ b/source/_components/onboarding.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_release: 0.73 ha_qa_scale: internal --- diff --git a/source/_components/onewire.markdown b/source/_components/onewire.markdown index 04d726bb308..f571786b323 100644 --- a/source/_components/onewire.markdown +++ b/source/_components/onewire.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: onewire.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.12 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/onkyo.markdown b/source/_components/onkyo.markdown index 5f6d4bbaae3..948ecf0797f 100644 --- a/source/_components/onkyo.markdown +++ b/source/_components/onkyo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: onkyo.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.17 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/onvif.markdown b/source/_components/onvif.markdown index 68ab64006d4..e33e21c7287 100644 --- a/source/_components/onvif.markdown +++ b/source/_components/onvif.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: onvif.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.47 redirect_from: - /components/camera.onvif/ diff --git a/source/_components/openalpr_cloud.markdown b/source/_components/openalpr_cloud.markdown index ad26894a9cf..1c86ceeedc5 100644 --- a/source/_components/openalpr_cloud.markdown +++ b/source/_components/openalpr_cloud.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openalpr.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.36 redirect_from: - /components/image_processing.openalpr_cloud/ diff --git a/source/_components/openalpr_local.markdown b/source/_components/openalpr_local.markdown index 9b480382bbe..920d293d5c4 100644 --- a/source/_components/openalpr_local.markdown +++ b/source/_components/openalpr_local.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openalpr.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.36 redirect_from: - /components/openalpr/ diff --git a/source/_components/opencv.markdown b/source/_components/opencv.markdown index 653fbb54ae4..97f5dd71cab 100644 --- a/source/_components/opencv.markdown +++ b/source/_components/opencv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: opencv.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.47 redirect_from: - /components/image_processing.opencv/ diff --git a/source/_components/openevse.markdown b/source/_components/openevse.markdown index 1fd5850c1aa..a2b33f9467f 100644 --- a/source/_components/openevse.markdown +++ b/source/_components/openevse.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openevse.png -ha_category: Car +ha_category: + - Car ha_release: 0.38 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/openexchangerates.markdown b/source/_components/openexchangerates.markdown index fd594a1e729..d6e93cb9806 100644 --- a/source/_components/openexchangerates.markdown +++ b/source/_components/openexchangerates.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Finance +ha_category: + - Finance logo: openexchangerates.png ha_iot_class: Cloud Polling ha_release: 0.23 diff --git a/source/_components/opengarage.markdown b/source/_components/opengarage.markdown index 41a05057040..b746fd3b52c 100644 --- a/source/_components/opengarage.markdown +++ b/source/_components/opengarage.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: opengarage.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.44 redirect_from: - /components/cover.opengarage/ diff --git a/source/_components/openhardwaremonitor.markdown b/source/_components/openhardwaremonitor.markdown index 1774c46adcc..eff34caca5a 100644 --- a/source/_components/openhardwaremonitor.markdown +++ b/source/_components/openhardwaremonitor.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openhardwaremonitor.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.48 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/openhome.markdown b/source/_components/openhome.markdown index ce96a4284c6..ac3916a1a53 100644 --- a/source/_components/openhome.markdown +++ b/source/_components/openhome.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: linn.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.39 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/opensensemap.markdown b/source/_components/opensensemap.markdown index 9d13c3e2395..de1687f07da 100644 --- a/source/_components/opensensemap.markdown +++ b/source/_components/opensensemap.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: opensensemap.png -ha_category: Health +ha_category: + - Health ha_release: 0.85 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/opensky.markdown b/source/_components/opensky.markdown index 0349c880d1c..50643203c77 100644 --- a/source/_components/opensky.markdown +++ b/source/_components/opensky.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: opensky.png -ha_category: Transport +ha_category: + - Transport ha_release: 0.43 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/openwrt.markdown b/source/_components/openwrt.markdown index 54369d810d7..f9cf6785c48 100644 --- a/source/_components/openwrt.markdown +++ b/source/_components/openwrt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openwrt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: pre 0.7 redirect_from: - /components/device_tracker.openwrt/ diff --git a/source/_components/opple.markdown b/source/_components/opple.markdown index 6cc0af86629..5b8dd124269 100644 --- a/source/_components/opple.markdown +++ b/source/_components/opple.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: opple.png -ha_category: Light +ha_category: + - Light ha_release: "0.80" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/orvibo.markdown b/source/_components/orvibo.markdown index 2dab44ae5d9..670a5100f04 100644 --- a/source/_components/orvibo.markdown +++ b/source/_components/orvibo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: orvibo.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.8 redirect_from: - /components/switch.orvibo/ diff --git a/source/_components/osramlightify.markdown b/source/_components/osramlightify.markdown index e2cb6836873..d67ee99b32f 100644 --- a/source/_components/osramlightify.markdown +++ b/source/_components/osramlightify.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: osramlightify.png -ha_category: Light +ha_category: + - Light ha_release: 0.21 redirect_from: - /components/light.osramlightify/ diff --git a/source/_components/otp.markdown b/source/_components/otp.markdown index e1d32861079..204925a2a2b 100644 --- a/source/_components/otp.markdown +++ b/source/_components/otp.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.49 ha_qa_scale: internal diff --git a/source/_components/owntracks.markdown b/source/_components/owntracks.markdown index 5d2d05777c7..7dc33ac5b0e 100644 --- a/source/_components/owntracks.markdown +++ b/source/_components/owntracks.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: owntracks.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7.4 redirect_from: - /components/device_tracker.owntracks/ diff --git a/source/_components/panasonic_bluray.markdown b/source/_components/panasonic_bluray.markdown index 9769793d517..16d043a9518 100644 --- a/source/_components/panasonic_bluray.markdown +++ b/source/_components/panasonic_bluray.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: panasonic.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.83 redirect_from: diff --git a/source/_components/panasonic_viera.markdown b/source/_components/panasonic_viera.markdown index 31bb21ca04b..359356075ea 100644 --- a/source/_components/panasonic_viera.markdown +++ b/source/_components/panasonic_viera.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: panasonic.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.17 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/pandora.markdown b/source/_components/pandora.markdown index b4e77af9f20..7d8849a67b2 100644 --- a/source/_components/pandora.markdown +++ b/source/_components/pandora.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pandora.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.22 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/panel_custom.markdown b/source/_components/panel_custom.markdown index 49ec76dc699..89eb17fc89e 100644 --- a/source/_components/panel_custom.markdown +++ b/source/_components/panel_custom.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Front end +ha_category: + - Front end ha_release: 0.26 ha_qa_scale: internal --- diff --git a/source/_components/panel_iframe.markdown b/source/_components/panel_iframe.markdown index 6b3e58faee8..e3c420f5964 100644 --- a/source/_components/panel_iframe.markdown +++ b/source/_components/panel_iframe.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Front end +ha_category: + - Front end ha_release: 0.25 ha_qa_scale: internal --- diff --git a/source/_components/pencom.markdown b/source/_components/pencom.markdown index a7fb39c3150..fb1cb2da507 100644 --- a/source/_components/pencom.markdown +++ b/source/_components/pencom.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pencom.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.85 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/persistent_notification.markdown b/source/_components/persistent_notification.markdown index d43ab0b4361..eb8985c99e8 100644 --- a/source/_components/persistent_notification.markdown +++ b/source/_components/persistent_notification.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_release: 0.23 ha_qa_scale: internal --- diff --git a/source/_components/person.markdown b/source/_components/person.markdown index ef3e0a54ffa..332936306c8 100644 --- a/source/_components/person.markdown +++ b/source/_components/person.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_qa_scale: internal ha_release: 0.88 --- diff --git a/source/_components/philips_js.markdown b/source/_components/philips_js.markdown index 26ff515dfb8..36cd7db54ce 100644 --- a/source/_components/philips_js.markdown +++ b/source/_components/philips_js.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: philips.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: 0.34 redirect_from: diff --git a/source/_components/pi_hole.markdown b/source/_components/pi_hole.markdown index e9aad4a5c80..c8c9d5bd1d0 100644 --- a/source/_components/pi_hole.markdown +++ b/source/_components/pi_hole.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling logo: pi_hole.png ha_release: 0.28 diff --git a/source/_components/picotts.markdown b/source/_components/picotts.markdown index f5f8bf11c0a..2dee48aaa6d 100644 --- a/source/_components/picotts.markdown +++ b/source/_components/picotts.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.36 redirect_from: - /components/tts.picotts/ diff --git a/source/_components/piglow.markdown b/source/_components/piglow.markdown index 4d82807c1cf..e9dfb6c52fe 100644 --- a/source/_components/piglow.markdown +++ b/source/_components/piglow.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.37 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/pioneer.markdown b/source/_components/pioneer.markdown index f5dd14757da..a81ebdcdbd3 100644 --- a/source/_components/pioneer.markdown +++ b/source/_components/pioneer.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pioneer.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.19 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/pjlink.markdown b/source/_components/pjlink.markdown index 04665c52661..7e434f164b4 100644 --- a/source/_components/pjlink.markdown +++ b/source/_components/pjlink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pjlink.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.76 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/plant.markdown b/source/_components/plant.markdown index 83aeab9f7f5..7ba67c60fff 100644 --- a/source/_components/plant.markdown +++ b/source/_components/plant.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Environment +ha_category: + - Environment ha_release: 0.44 ha_qa_scale: internal --- diff --git a/source/_components/plum_lightpad.markdown b/source/_components/plum_lightpad.markdown index 43105d8ebda..59b3314b18d 100644 --- a/source/_components/plum_lightpad.markdown +++ b/source/_components/plum_lightpad.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Push logo: plum.png ha_release: 0.85 diff --git a/source/_components/pocketcasts.markdown b/source/_components/pocketcasts.markdown index b0c16009109..b39cae4a855 100644 --- a/source/_components/pocketcasts.markdown +++ b/source/_components/pocketcasts.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pocketcasts.png -ha_category: Multimedia +ha_category: + - Multimedia ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/pollen.markdown b/source/_components/pollen.markdown index 743517ea164..6748aa5d80f 100644 --- a/source/_components/pollen.markdown +++ b/source/_components/pollen.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pollen.jpg -ha_category: Health +ha_category: + - Health ha_release: 0.63 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/polling.markdown b/source/_components/polling.markdown index be5e970d5fa..0108a7bf825 100644 --- a/source/_components/polling.markdown +++ b/source/_components/polling.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: telegram.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.42 redirect_from: - /components/telegram_bot.polling/ diff --git a/source/_components/postnl.markdown b/source/_components/postnl.markdown index 26d0aac22f8..d38f4e3d181 100644 --- a/source/_components/postnl.markdown +++ b/source/_components/postnl.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: postnl.png -ha_category: Postal Service +ha_category: + - Postal Service ha_release: 0.69 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/prezzibenzina.markdown b/source/_components/prezzibenzina.markdown index ff386498a1a..fa5affd3061 100644 --- a/source/_components/prezzibenzina.markdown +++ b/source/_components/prezzibenzina.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: prezzibenzina.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.85 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/proliphix.markdown b/source/_components/proliphix.markdown index c72e56f3773..ce5e25e1d76 100644 --- a/source/_components/proliphix.markdown +++ b/source/_components/proliphix.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: proliphix.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.11 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/prometheus.markdown b/source/_components/prometheus.markdown index f6e09c07ba3..1d31b5affa2 100644 --- a/source/_components/prometheus.markdown +++ b/source/_components/prometheus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true logo: prometheus.png footer: true -ha_category: "History" +ha_category: + - "History" ha_release: 0.49 --- diff --git a/source/_components/prowl.markdown b/source/_components/prowl.markdown index bee530edee5..59d427b5446 100644 --- a/source/_components/prowl.markdown +++ b/source/_components/prowl.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: prowl.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.52 redirect_from: - /components/notify.prowl/ diff --git a/source/_components/proximity.markdown b/source/_components/proximity.markdown index 1c2cc0563cc..1c708cdac4a 100644 --- a/source/_components/proximity.markdown +++ b/source/_components/proximity.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.13 ha_qa_scale: internal --- diff --git a/source/_components/proxy.markdown b/source/_components/proxy.markdown index 766681c613c..1b958e342bc 100644 --- a/source/_components/proxy.markdown +++ b/source/_components/proxy.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Camera +ha_category: + - Camera ha_release: 0.65 redirect_from: - /components/camera.proxy/ diff --git a/source/_components/ps4.markdown b/source/_components/ps4.markdown index 299673e4b8e..24a360a73c8 100644 --- a/source/_components/ps4.markdown +++ b/source/_components/ps4.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ps4.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.89 ha_iot_class: Local Polling --- diff --git a/source/_components/pulseaudio_loopback.markdown b/source/_components/pulseaudio_loopback.markdown index e9c70439655..5d60c9f99e7 100644 --- a/source/_components/pulseaudio_loopback.markdown +++ b/source/_components/pulseaudio_loopback.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pulseaudio.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.16 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/push.markdown b/source/_components/push.markdown index 7e3e61d3d1d..fe5596fe4d6 100644 --- a/source/_components/push.markdown +++ b/source/_components/push.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: camcorder.png -ha_category: Camera +ha_category: + - Camera ha_iot_class: Local Push ha_release: 0.74 redirect_from: diff --git a/source/_components/pushetta.markdown b/source/_components/pushetta.markdown index 2229b595531..40c729e7d8b 100644 --- a/source/_components/pushetta.markdown +++ b/source/_components/pushetta.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pushetta.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.pushetta/ diff --git a/source/_components/pushover.markdown b/source/_components/pushover.markdown index 2d5b6371fd2..0371d118917 100644 --- a/source/_components/pushover.markdown +++ b/source/_components/pushover.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pushover.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.pushover/ diff --git a/source/_components/pushsafer.markdown b/source/_components/pushsafer.markdown index 793ad2ae473..426ebc631a7 100644 --- a/source/_components/pushsafer.markdown +++ b/source/_components/pushsafer.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pushsafer.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.39 redirect_from: - /components/notify.pushsafer/ diff --git a/source/_components/pvoutput.markdown b/source/_components/pvoutput.markdown index 13213ce5610..82993d2b07f 100644 --- a/source/_components/pvoutput.markdown +++ b/source/_components/pvoutput.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pvoutput.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.33 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/pyload.markdown b/source/_components/pyload.markdown index e79ea449a1b..b3e6a833ba2 100644 --- a/source/_components/pyload.markdown +++ b/source/_components/pyload.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: pyload.png -ha_category: Downloading +ha_category: + - Downloading ha_release: 0.58 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/python_script.markdown b/source/_components/python_script.markdown index 58f17ee1c31..b6ff87d258e 100644 --- a/source/_components/python_script.markdown +++ b/source/_components/python_script.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.47 ha_qa_scale: internal --- diff --git a/source/_components/qbittorrent.markdown b/source/_components/qbittorrent.markdown index 09003f1f861..d25d73eba57 100644 --- a/source/_components/qbittorrent.markdown +++ b/source/_components/qbittorrent.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: qbittorrent.png -ha_category: Downloading +ha_category: + - Downloading ha_release: 0.84 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/qnap.markdown b/source/_components/qnap.markdown index a65727a0038..bfdc37cfb56 100644 --- a/source/_components/qnap.markdown +++ b/source/_components/qnap.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: qnap.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.38 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/qrcode.markdown b/source/_components/qrcode.markdown index e0d9aa500b6..b19a820cd4f 100644 --- a/source/_components/qrcode.markdown +++ b/source/_components/qrcode.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.87 redirect_from: - /components/image_processing.qrcode/ diff --git a/source/_components/quantum_gateway.markdown b/source/_components/quantum_gateway.markdown index 8d43cfb24fd..2747c206742 100644 --- a/source/_components/quantum_gateway.markdown +++ b/source/_components/quantum_gateway.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Presence Detection +ha_category: + - Presence Detection logo: fios.svg ha_release: 0.81 redirect_from: diff --git a/source/_components/radarr.markdown b/source/_components/radarr.markdown index 1b78fdfbec3..877bb163ceb 100644 --- a/source/_components/radarr.markdown +++ b/source/_components/radarr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: radarr.png -ha_category: Downloading +ha_category: + - Downloading ha_release: 0.47 redirect_from: - /components/sensor.radarr/ diff --git a/source/_components/radiotherm.markdown b/source/_components/radiotherm.markdown index 1d9d12d4134..2bf1be5021a 100644 --- a/source/_components/radiotherm.markdown +++ b/source/_components/radiotherm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: radiotherm.png -ha_category: Climate +ha_category: + - Climate ha_iot_class: Local Polling ha_release: 0.7.6 redirect_from: diff --git a/source/_components/raspyrfm.markdown b/source/_components/raspyrfm.markdown index 771620b5016..4c7c3180a9e 100644 --- a/source/_components/raspyrfm.markdown +++ b/source/_components/raspyrfm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: seegelsysteme.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.85 ha_iot_class: Assumed State redirect_from: diff --git a/source/_components/recollect_waste.markdown b/source/_components/recollect_waste.markdown index 2650dcbedf9..0b75a4cdf98 100644 --- a/source/_components/recollect_waste.markdown +++ b/source/_components/recollect_waste.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: recollect-waste.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.87 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/recorder.markdown b/source/_components/recorder.markdown index 86b3963f12b..6035c987ee8 100644 --- a/source/_components/recorder.markdown +++ b/source/_components/recorder.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "History" +ha_category: + - "History" ha_release: pre 0.7 ha_qa_scale: internal --- diff --git a/source/_components/recswitch.markdown b/source/_components/recswitch.markdown index 4b15b1672af..f6bc3102354 100644 --- a/source/_components/recswitch.markdown +++ b/source/_components/recswitch.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: "ankuoo_recswitch.png" ha_release: 0.81 -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling redirect_from: - /components/switch.recswitch/ diff --git a/source/_components/reddit.markdown b/source/_components/reddit.markdown index ace5471d53a..608f1b1d4a7 100644 --- a/source/_components/reddit.markdown +++ b/source/_components/reddit.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: reddit.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.89 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/rejseplanen.markdown b/source/_components/rejseplanen.markdown index b1c1946d3be..c25a921d1ac 100644 --- a/source/_components/rejseplanen.markdown +++ b/source/_components/rejseplanen.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rejseplanen.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.88 redirect_from: diff --git a/source/_components/remember_the_milk.markdown b/source/_components/remember_the_milk.markdown index f27a0bbcc99..890c7fed736 100644 --- a/source/_components/remember_the_milk.markdown +++ b/source/_components/remember_the_milk.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rememberthemilk.png -ha_category: Calendar +ha_category: + - Calendar ha_release: 0.57 --- diff --git a/source/_components/remote.xiaomi_miio.markdown b/source/_components/remote.xiaomi_miio.markdown index 31b3e45d135..8f46fce2d06 100644 --- a/source/_components/remote.xiaomi_miio.markdown +++ b/source/_components/remote.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Remote +ha_category: + - Remote ha_release: 0.63 ha_iot_class: Local Polling --- diff --git a/source/_components/rest.markdown b/source/_components/rest.markdown index 3ff473c8b47..1230e9a34f3 100644 --- a/source/_components/rest.markdown +++ b/source/_components/rest.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: restful.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.7.4 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/rest_command.markdown b/source/_components/rest_command.markdown index 19dcf7049cd..bde8f82b077 100644 --- a/source/_components/rest_command.markdown +++ b/source/_components/rest_command.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: restful.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.36 ha_iot_class: Local Push --- diff --git a/source/_components/rflink.markdown b/source/_components/rflink.markdown index 7be07531702..8ab36707493 100644 --- a/source/_components/rflink.markdown +++ b/source/_components/rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.38 --- diff --git a/source/_components/rfxtrx.markdown b/source/_components/rfxtrx.markdown index 2215c2f171e..2c933f81c1e 100644 --- a/source/_components/rfxtrx.markdown +++ b/source/_components/rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Hub +ha_category: + - Hub ha_release: pre 0.7 --- diff --git a/source/_components/ripple.markdown b/source/_components/ripple.markdown index 935913f93ad..71d7d66d372 100644 --- a/source/_components/ripple.markdown +++ b/source/_components/ripple.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ripple.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.47 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/ritassist.markdown b/source/_components/ritassist.markdown index edaf92965ef..81cad07f613 100644 --- a/source/_components/ritassist.markdown +++ b/source/_components/ritassist.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ritassist.png -ha_category: Car +ha_category: + - Car ha_iot_class: Cloud Polling ha_release: 0.76 redirect_from: diff --git a/source/_components/rmvtransport.markdown b/source/_components/rmvtransport.markdown index ce16a9613bf..a133f813677 100644 --- a/source/_components/rmvtransport.markdown +++ b/source/_components/rmvtransport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: RMV.png -ha_category: Transport +ha_category: + - Transport ha_release: 0.76 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/rocketchat.markdown b/source/_components/rocketchat.markdown index b63421203b2..19c07d7e10a 100644 --- a/source/_components/rocketchat.markdown +++ b/source/_components/rocketchat.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rocketchat.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.56 redirect_from: - /components/notify.rocketchat/ diff --git a/source/_components/roomba.markdown b/source/_components/roomba.markdown index 7ad11fab00b..4633d20ca54 100644 --- a/source/_components/roomba.markdown +++ b/source/_components/roomba.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: irobot_roomba.png -ha_category: Vacuum +ha_category: + - Vacuum ha_release: 0.51 redirect_from: - /components/vacuum.roomba/ diff --git a/source/_components/route53.markdown b/source/_components/route53.markdown index 9eb7e2485cb..a69cf2f170b 100644 --- a/source/_components/route53.markdown +++ b/source/_components/route53.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: route53.png -ha_category: Network +ha_category: + - Network ha_release: 0.81 --- diff --git a/source/_components/rova.markdown b/source/_components/rova.markdown index 5dcaa1e3be2..c0b810a0939 100644 --- a/source/_components/rova.markdown +++ b/source/_components/rova.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rova.jpg -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.87 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/rpi_camera.markdown b/source/_components/rpi_camera.markdown index d15eb9f5baa..1af3b0db255 100644 --- a/source/_components/rpi_camera.markdown +++ b/source/_components/rpi_camera.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Polling ha_release: 0.17 redirect_from: diff --git a/source/_components/rpi_gpio_pwm.markdown b/source/_components/rpi_gpio_pwm.markdown index 7f9b0183c03..d84a84c54fe 100644 --- a/source/_components/rpi_gpio_pwm.markdown +++ b/source/_components/rpi_gpio_pwm.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Push ha_release: 0.43 logo: raspberry-pi.png diff --git a/source/_components/rpi_rf.markdown b/source/_components/rpi_rf.markdown index f833eb3edf0..09873b3b4fe 100644 --- a/source/_components/rpi_rf.markdown +++ b/source/_components/rpi_rf.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.19 ha_iot_class: Assumed State redirect_from: diff --git a/source/_components/rss_feed_template.markdown b/source/_components/rss_feed_template.markdown index 4c8612ae2e1..31ebb4251cc 100644 --- a/source/_components/rss_feed_template.markdown +++ b/source/_components/rss_feed_template.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Front end +ha_category: + - Front end ha_release: 0.44 ha_qa_scale: internal --- diff --git a/source/_components/rtorrent.markdown b/source/_components/rtorrent.markdown index a1065d75418..6c94690f97f 100644 --- a/source/_components/rtorrent.markdown +++ b/source/_components/rtorrent.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rtorrent.png -ha_category: Downloading +ha_category: + - Downloading ha_release: 0.81 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/russound_rio.markdown b/source/_components/russound_rio.markdown index 744e767e898..582c37d959f 100644 --- a/source/_components/russound_rio.markdown +++ b/source/_components/russound_rio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: russound.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.49 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/russound_rnet.markdown b/source/_components/russound_rnet.markdown index 17b0ac98865..e1f75962433 100644 --- a/source/_components/russound_rnet.markdown +++ b/source/_components/russound_rnet.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: russound.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.25 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/ruter.markdown b/source/_components/ruter.markdown index facb56a8537..c43758a4c90 100644 --- a/source/_components/ruter.markdown +++ b/source/_components/ruter.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ruter.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.83 redirect_from: diff --git a/source/_components/samsungtv.markdown b/source/_components/samsungtv.markdown index 87fbd0703a5..f1368c96cad 100644 --- a/source/_components/samsungtv.markdown +++ b/source/_components/samsungtv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: samsung.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.13 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/scene.knx.markdown b/source/_components/scene.knx.markdown index 80789b6a566..e53322c85d2 100644 --- a/source/_components/scene.knx.markdown +++ b/source/_components/scene.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Scene +ha_category: + - Scene ha_release: 0.63 --- diff --git a/source/_components/scene.markdown b/source/_components/scene.markdown index ca1cd569cf9..96b29b24cff 100644 --- a/source/_components/scene.markdown +++ b/source/_components/scene.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Organization +ha_category: + - Organization ha_qa_scale: internal ha_release: 0.15 --- diff --git a/source/_components/scrape.markdown b/source/_components/scrape.markdown index 458e8876e1f..e4e88648cb1 100644 --- a/source/_components/scrape.markdown +++ b/source/_components/scrape.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.31 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/script.markdown b/source/_components/script.markdown index 53ff27c05f5..901f7dcf579 100644 --- a/source/_components/script.markdown +++ b/source/_components/script.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_qa_scale: internal ha_release: 0.7 --- diff --git a/source/_components/season.markdown b/source/_components/season.markdown index 162301e095d..8a9ed712437 100644 --- a/source/_components/season.markdown +++ b/source/_components/season.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Utility +ha_category: + - Utility logo: home-assistant.png ha_iot_class: Local Polling ha_release: 0.53 diff --git a/source/_components/sendgrid.markdown b/source/_components/sendgrid.markdown index 08ceedf5b25..93d4a98bbf2 100644 --- a/source/_components/sendgrid.markdown +++ b/source/_components/sendgrid.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sendgrid.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.14 redirect_from: - /components/notify.sendgrid/ diff --git a/source/_components/sensibo.markdown b/source/_components/sensibo.markdown index 9c9afc789ea..3a91fafc777 100644 --- a/source/_components/sensibo.markdown +++ b/source/_components/sensibo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sensibo.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.44 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/sensor.buienradar.markdown b/source/_components/sensor.buienradar.markdown index e6c19423742..7c1b0022237 100644 --- a/source/_components/sensor.buienradar.markdown +++ b/source/_components/sensor.buienradar.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: buienradar.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.47 ha_iot_class: Cloud Polling --- diff --git a/source/_components/sensor.command_line.markdown b/source/_components/sensor.command_line.markdown index c18ed199c6c..502e7175b96 100644 --- a/source/_components/sensor.command_line.markdown +++ b/source/_components/sensor.command_line.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: command_line.png -ha_category: Utility +ha_category: + - Utility ha_release: pre 0.7 ha_iot_class: Local Polling --- diff --git a/source/_components/sensor.ios.markdown b/source/_components/sensor.ios.markdown index 42ccc3cbbe7..a263e1bba78 100644 --- a/source/_components/sensor.ios.markdown +++ b/source/_components/sensor.ios.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: apple.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.31 ha_iot_class: Local Push --- diff --git a/source/_components/sensor.knx.markdown b/source/_components/sensor.knx.markdown index 6ccfb5f3521..88b5a2239f5 100644 --- a/source/_components/sensor.knx.markdown +++ b/source/_components/sensor.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.29 ha_iot_class: Local Push --- diff --git a/source/_components/sensor.metoffice.markdown b/source/_components/sensor.metoffice.markdown index 04d8f610bc2..478f9029645 100644 --- a/source/_components/sensor.metoffice.markdown +++ b/source/_components/sensor.metoffice.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: metoffice.jpg -ha_category: Weather +ha_category: + - Weather ha_release: 0.42 ha_iot_class: Cloud Polling --- diff --git a/source/_components/sensor.modbus.markdown b/source/_components/sensor.modbus.markdown index 81ab438079b..e0218005bdd 100644 --- a/source/_components/sensor.modbus.markdown +++ b/source/_components/sensor.modbus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: modbus.png -ha_category: Sensor +ha_category: + - Sensor ha_release: pre 0.7 ha_iot_class: Local Push --- diff --git a/source/_components/sensor.mqtt.markdown b/source/_components/sensor.mqtt.markdown index fe808d76995..b81dd39137d 100644 --- a/source/_components/sensor.mqtt.markdown +++ b/source/_components/sensor.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.7 ha_iot_class: Configurable --- diff --git a/source/_components/sensor.netatmo.markdown b/source/_components/sensor.netatmo.markdown index b7312eb8ba8..ec2daed0c2f 100644 --- a/source/_components/sensor.netatmo.markdown +++ b/source/_components/sensor.netatmo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: netatmo.png -ha_category: Weather +ha_category: + - Weather ha_iot_class: Cloud Polling ha_release: 0.11 --- diff --git a/source/_components/sensor.rflink.markdown b/source/_components/sensor.rflink.markdown index 4138003aa60..08dad307556 100644 --- a/source/_components/sensor.rflink.markdown +++ b/source/_components/sensor.rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.38 ha_iot_class: Local Polling --- diff --git a/source/_components/sensor.rfxtrx.markdown b/source/_components/sensor.rfxtrx.markdown index 480bc7602c6..1143d4327c2 100644 --- a/source/_components/sensor.rfxtrx.markdown +++ b/source/_components/sensor.rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Local Polling ha_release: 0.7 --- diff --git a/source/_components/sensor.websocket_api.markdown b/source/_components/sensor.websocket_api.markdown index c08cfa18835..1e8abbdf41a 100644 --- a/source/_components/sensor.websocket_api.markdown +++ b/source/_components/sensor.websocket_api.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_release: 0.33 ha_iot_class: Local Push ha_qa_scale: internal diff --git a/source/_components/sensor.xiaomi_aqara.markdown b/source/_components/sensor.xiaomi_aqara.markdown index 5e25404c571..d20c852593b 100644 --- a/source/_components/sensor.xiaomi_aqara.markdown +++ b/source/_components/sensor.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Sensor +ha_category: + - Sensor ha_release: "0.50" ha_iot_class: Local Push --- diff --git a/source/_components/sensor.xiaomi_miio.markdown b/source/_components/sensor.xiaomi_miio.markdown index 2634250a37e..67394b50f76 100644 --- a/source/_components/sensor.xiaomi_miio.markdown +++ b/source/_components/sensor.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Health +ha_category: + - Health ha_iot_class: Local Polling ha_release: 0.66 --- diff --git a/source/_components/serial.markdown b/source/_components/serial.markdown index 7c7773270a6..f7c450f406a 100644 --- a/source/_components/serial.markdown +++ b/source/_components/serial.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.56 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/serial_pm.markdown b/source/_components/serial_pm.markdown index 1fcc250bd5e..64f80392a84 100644 --- a/source/_components/serial_pm.markdown +++ b/source/_components/serial_pm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: serial_pm.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.26 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/sesame.markdown b/source/_components/sesame.markdown index d040299e97d..9502fd58853 100644 --- a/source/_components/sesame.markdown +++ b/source/_components/sesame.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sesame.png -ha_category: Lock +ha_category: + - Lock ha_iot_class: Cloud Polling ha_release: 0.47 redirect_from: diff --git a/source/_components/seven_segments.markdown b/source/_components/seven_segments.markdown index 9331628b502..18b62f7ca63 100644 --- a/source/_components/seven_segments.markdown +++ b/source/_components/seven_segments.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Image Processing +ha_category: + - Image Processing ha_release: 0.45 og_image: /images/screenshots/ssocr.png ha_iot_class: Local Polling diff --git a/source/_components/seventeentrack.markdown b/source/_components/seventeentrack.markdown index afaff930bf7..eb061b26d64 100644 --- a/source/_components/seventeentrack.markdown +++ b/source/_components/seventeentrack.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: 17track.png -ha_category: Postal Service +ha_category: + - Postal Service ha_release: 0.83 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/shell_command.markdown b/source/_components/shell_command.markdown index df69ac00364..a8129cd686f 100644 --- a/source/_components/shell_command.markdown +++ b/source/_components/shell_command.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Automation +ha_category: + - Automation logo: home-assistant.png ha_qa_scale: internal ha_release: 0.7.6 diff --git a/source/_components/shiftr.markdown b/source/_components/shiftr.markdown index 96f5aa2c548..540bce296aa 100644 --- a/source/_components/shiftr.markdown +++ b/source/_components/shiftr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: shiftr.png -ha_category: "History" +ha_category: + - "History" ha_release: 0.48 --- diff --git a/source/_components/shodan.markdown b/source/_components/shodan.markdown index 88851c6af65..8670ccf0461 100644 --- a/source/_components/shodan.markdown +++ b/source/_components/shodan.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling logo: shodan.png ha_release: 0.51 diff --git a/source/_components/shopping_list.markdown b/source/_components/shopping_list.markdown index a6fc33835b2..7edca86882d 100644 --- a/source/_components/shopping_list.markdown +++ b/source/_components/shopping_list.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Intent +ha_category: + - Intent ha_release: "0.50" ha_qa_scale: internal --- diff --git a/source/_components/sht31.markdown b/source/_components/sht31.markdown index e3f4966dda0..288665443cc 100644 --- a/source/_components/sht31.markdown +++ b/source/_components/sht31.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: DIY +ha_category: + - DIY ha_release: 0.68 logo: sensirion.png ha_iot_class: Local Polling diff --git a/source/_components/sigfox.markdown b/source/_components/sigfox.markdown index e3e98f78e0a..9346bdc192b 100644 --- a/source/_components/sigfox.markdown +++ b/source/_components/sigfox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sigfox.png -ha_category: Sensor +ha_category: + - Sensor ha_iot_class: Cloud Polling ha_release: 0.68 redirect_from: diff --git a/source/_components/simplepush.markdown b/source/_components/simplepush.markdown index c5fbc705969..362e13c21be 100644 --- a/source/_components/simplepush.markdown +++ b/source/_components/simplepush.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: simplepush.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.29 redirect_from: - /components/notify.simplepush/ diff --git a/source/_components/simulated.markdown b/source/_components/simulated.markdown index 8bc20c6e160..83a833ce95b 100644 --- a/source/_components/simulated.markdown +++ b/source/_components/simulated.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.65 ha_qa_scale: internal diff --git a/source/_components/sky_hub.markdown b/source/_components/sky_hub.markdown index 46481f04909..c4f08e32b12 100644 --- a/source/_components/sky_hub.markdown +++ b/source/_components/sky_hub.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sky.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.37 redirect_from: - /components/device_tracker.sky_hub/ diff --git a/source/_components/skybeacon.markdown b/source/_components/skybeacon.markdown index d9face54c75..57a4104dbca 100644 --- a/source/_components/skybeacon.markdown +++ b/source/_components/skybeacon.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: DIY +ha_category: + - DIY ha_release: 0.37 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/slack.markdown b/source/_components/slack.markdown index c4f2375da92..d50f40571c0 100644 --- a/source/_components/slack.markdown +++ b/source/_components/slack.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: slack.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.slack/ diff --git a/source/_components/sma.markdown b/source/_components/sma.markdown index f5253bc8bec..cfba5aead96 100644 --- a/source/_components/sma.markdown +++ b/source/_components/sma.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Energy +ha_category: + - Energy logo: sma.png ha_iot_class: Local Polling ha_release: 0.36 diff --git a/source/_components/smtp.markdown b/source/_components/smtp.markdown index 4670b4533b4..62a0c0c7d01 100644 --- a/source/_components/smtp.markdown +++ b/source/_components/smtp.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: smtp.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.smtp/ diff --git a/source/_components/snapcast.markdown b/source/_components/snapcast.markdown index 25d7a69faf7..a08f848139a 100644 --- a/source/_components/snapcast.markdown +++ b/source/_components/snapcast.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: snapcast.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.13 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/snips.markdown b/source/_components/snips.markdown index 3b3be76e9e0..74ec697a752 100644 --- a/source/_components/snips.markdown +++ b/source/_components/snips.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: snips.png -ha_category: Voice +ha_category: + - Voice ha_release: 0.48 --- diff --git a/source/_components/sochain.markdown b/source/_components/sochain.markdown index 4b61bc38303..8250691067a 100644 --- a/source/_components/sochain.markdown +++ b/source/_components/sochain.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sochain.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.61 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/socialblade.markdown b/source/_components/socialblade.markdown index fd9597f96d0..073d52f53d5 100644 --- a/source/_components/socialblade.markdown +++ b/source/_components/socialblade.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: socialblade.png -ha_category: Multimedia +ha_category: + - Multimedia ha_release: 0.69 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/solaredge.markdown b/source/_components/solaredge.markdown index 414381f6a06..9cad0e098cc 100644 --- a/source/_components/solaredge.markdown +++ b/source/_components/solaredge.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: solaredge.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.85 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/sonarr.markdown b/source/_components/sonarr.markdown index 88e3c9193e2..276a5949925 100644 --- a/source/_components/sonarr.markdown +++ b/source/_components/sonarr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sonarr.png -ha_category: Downloading +ha_category: + - Downloading ha_release: 0.34 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/songpal.markdown b/source/_components/songpal.markdown index 2c5dd537f40..c1930cb2f55 100644 --- a/source/_components/songpal.markdown +++ b/source/_components/songpal.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sony.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Push ha_release: 0.65 redirect_from: diff --git a/source/_components/sonos.markdown b/source/_components/sonos.markdown index 2142e1f148d..6d72a800ca5 100644 --- a/source/_components/sonos.markdown +++ b/source/_components/sonos.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sonos.png -ha_category: Media Player +ha_category: + - Media Player featured: true ha_release: 0.7.3 ha_iot_class: Local Polling diff --git a/source/_components/sony_projector.markdown b/source/_components/sony_projector.markdown index be90ed9660a..cb02338527c 100644 --- a/source/_components/sony_projector.markdown +++ b/source/_components/sony_projector.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sony.png -ha_category: Multimedia +ha_category: + - Multimedia ha_iot_class: Local Polling ha_release: 0.89 redirect_from: diff --git a/source/_components/soundtouch.markdown b/source/_components/soundtouch.markdown index 233ba358756..3dd4f119d5d 100644 --- a/source/_components/soundtouch.markdown +++ b/source/_components/soundtouch.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: soundtouch.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.34 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/spaceapi.markdown b/source/_components/spaceapi.markdown index 1df0800feb5..8f83f10ab3c 100644 --- a/source/_components/spaceapi.markdown +++ b/source/_components/spaceapi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: spaceapi.png -ha_category: Social +ha_category: + - Social ha_release: "0.70" --- diff --git a/source/_components/splunk.markdown b/source/_components/splunk.markdown index d7efdaa556d..3446eaf791f 100644 --- a/source/_components/splunk.markdown +++ b/source/_components/splunk.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: splunk.png -ha_category: "History" +ha_category: + - "History" ha_release: 0.13 --- diff --git a/source/_components/spotify.markdown b/source/_components/spotify.markdown index 701c583ffb9..605ed0dbac0 100644 --- a/source/_components/spotify.markdown +++ b/source/_components/spotify.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: spotify.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.43 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/sql.markdown b/source/_components/sql.markdown index 1f634e8fc22..bf3ba0cfb08 100644 --- a/source/_components/sql.markdown +++ b/source/_components/sql.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: sql.png -ha_category: Utility +ha_category: + - Utility ha_release: 0.63 redirect_from: - /components/sensor.sql/ diff --git a/source/_components/squeezebox.markdown b/source/_components/squeezebox.markdown index 2c43677c73c..674a263874c 100644 --- a/source/_components/squeezebox.markdown +++ b/source/_components/squeezebox.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: squeezebox.png -ha_category: Media Player +ha_category: + - Media Player ha_release: pre 0.7 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/srp_energy.markdown b/source/_components/srp_energy.markdown index 7d29f97cd86..87f6f8b9978 100644 --- a/source/_components/srp_energy.markdown +++ b/source/_components/srp_energy.markdown @@ -5,7 +5,8 @@ description: "How to integrate SRP Energy within Home Assistant." date: 2018-10-30 08:00 sidebar: true comments: false -ha_category: Energy +ha_category: + - Energy ha_release: 0.83 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/starlingbank.markdown b/source/_components/starlingbank.markdown index 01a3bb99406..5ea9169ea2e 100644 --- a/source/_components/starlingbank.markdown +++ b/source/_components/starlingbank.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: starlingbank.png -ha_category: Finance +ha_category: + - Finance ha_release: 0.79 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/startca.markdown b/source/_components/startca.markdown index 29170335231..437ae5cc9d4 100644 --- a/source/_components/startca.markdown +++ b/source/_components/startca.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: startca.png -ha_category: Network +ha_category: + - Network ha_release: 0.64 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/statistics.markdown b/source/_components/statistics.markdown index 16673f8328f..81183439949 100644 --- a/source/_components/statistics.markdown +++ b/source/_components/statistics.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: "0.30" ha_qa_scale: internal diff --git a/source/_components/statsd.markdown b/source/_components/statsd.markdown index dedf0772f65..467d6f60acf 100644 --- a/source/_components/statsd.markdown +++ b/source/_components/statsd.markdown @@ -8,7 +8,8 @@ comments: false sharing: true logo: statsd.png footer: true -ha_category: "History" +ha_category: + - "History" ha_release: 0.12 --- diff --git a/source/_components/steam_online.markdown b/source/_components/steam_online.markdown index 227635bb72c..b95a00d4c19 100644 --- a/source/_components/steam_online.markdown +++ b/source/_components/steam_online.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: steam.png -ha_category: Social +ha_category: + - Social ha_iot_class: Cloud Polling ha_release: 0.14 redirect_from: diff --git a/source/_components/stream.markdown b/source/_components/stream.markdown index f96e12ebe5c..85f31bf63a7 100644 --- a/source/_components/stream.markdown +++ b/source/_components/stream.markdown @@ -8,7 +8,7 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: +ha_category: - Other ha_release: "0.90" ha_iot_class: Local Push diff --git a/source/_components/stride.markdown b/source/_components/stride.markdown index 944d4e099a4..d1523623514 100644 --- a/source/_components/stride.markdown +++ b/source/_components/stride.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: stride.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.66 redirect_from: - /components/notify.stride/ diff --git a/source/_components/sun.markdown b/source/_components/sun.markdown index 90b2597b266..1ed1d0c9a98 100644 --- a/source/_components/sun.markdown +++ b/source/_components/sun.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Environment +ha_category: + - Environment ha_qa_scale: internal ha_release: pre 0.7 --- diff --git a/source/_components/supervisord.markdown b/source/_components/supervisord.markdown index cb164022eec..a1d76c1fdfb 100644 --- a/source/_components/supervisord.markdown +++ b/source/_components/supervisord.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: supervisord.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: "0.20" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/swiss_hydrological_data.markdown b/source/_components/swiss_hydrological_data.markdown index 267624174ad..a4e78697812 100644 --- a/source/_components/swiss_hydrological_data.markdown +++ b/source/_components/swiss_hydrological_data.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: swiss-hydrological-data.png -ha_category: Environment +ha_category: + - Environment ha_iot_class: Cloud Polling ha_release: 0.22 redirect_from: diff --git a/source/_components/swiss_public_transport.markdown b/source/_components/swiss_public_transport.markdown index 29b31cd1284..b465c957129 100644 --- a/source/_components/swiss_public_transport.markdown +++ b/source/_components/swiss_public_transport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: train.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: pre 0.7 redirect_from: diff --git a/source/_components/swisscom.markdown b/source/_components/swisscom.markdown index 1c8e608943b..b96a664655b 100644 --- a/source/_components/swisscom.markdown +++ b/source/_components/swisscom.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: swisscom.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.32 redirect_from: - /components/device_tracker.swisscom/ diff --git a/source/_components/switch.command_line.markdown b/source/_components/switch.command_line.markdown index 24ad7147c01..48de3f155ed 100644 --- a/source/_components/switch.command_line.markdown +++ b/source/_components/switch.command_line.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: command_line.png -ha_category: Switch +ha_category: + - Switch ha_release: pre 0.7 ha_iot_class: Local Polling --- diff --git a/source/_components/switch.knx.markdown b/source/_components/switch.knx.markdown index 6e23cbed541..0d3139db41d 100644 --- a/source/_components/switch.knx.markdown +++ b/source/_components/switch.knx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: knx.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.24 ha_iot_class: Local Polling --- diff --git a/source/_components/switch.modbus.markdown b/source/_components/switch.modbus.markdown index 1b0c5bda964..1d181b0e5b2 100644 --- a/source/_components/switch.modbus.markdown +++ b/source/_components/switch.modbus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: modbus.png -ha_category: Switch +ha_category: + - Switch ha_release: pre 0.7 ha_iot_class: Local Push --- diff --git a/source/_components/switch.mqtt.markdown b/source/_components/switch.mqtt.markdown index 252d8f9de5d..3f88429605b 100644 --- a/source/_components/switch.mqtt.markdown +++ b/source/_components/switch.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.7 ha_iot_class: Configurable --- diff --git a/source/_components/switch.rest.markdown b/source/_components/switch.rest.markdown index 01cd704e6db..c0cc52e102d 100644 --- a/source/_components/switch.rest.markdown +++ b/source/_components/switch.rest.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: restful.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.7.6 ha_iot_class: Local Polling --- diff --git a/source/_components/switch.rflink.markdown b/source/_components/switch.rflink.markdown index 10d6625ed1e..b69378cdd89 100644 --- a/source/_components/switch.rflink.markdown +++ b/source/_components/switch.rflink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rflink.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.38 --- diff --git a/source/_components/switch.rfxtrx.markdown b/source/_components/switch.rfxtrx.markdown index 669ee3770f7..900c7e76d1a 100644 --- a/source/_components/switch.rfxtrx.markdown +++ b/source/_components/switch.rfxtrx.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: rfxtrx.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.7.5 --- diff --git a/source/_components/switch.template.markdown b/source/_components/switch.template.markdown index 69dc4392bfc..32eaa1cf798 100644 --- a/source/_components/switch.template.markdown +++ b/source/_components/switch.template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Switch +ha_category: + - Switch ha_release: 0.13 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/switch.xiaomi_aqara.markdown b/source/_components/switch.xiaomi_aqara.markdown index b4c01732435..de158bec3c4 100644 --- a/source/_components/switch.xiaomi_aqara.markdown +++ b/source/_components/switch.xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Switch +ha_category: + - Switch ha_release: "0.50" ha_iot_class: Local Push --- diff --git a/source/_components/switch.xiaomi_miio.markdown b/source/_components/switch.xiaomi_miio.markdown index f8c56c887ec..49be3065841 100644 --- a/source/_components/switch.xiaomi_miio.markdown +++ b/source/_components/switch.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Switch +ha_category: + - Switch ha_iot_class: Local Polling ha_release: 0.56 --- diff --git a/source/_components/switchbot.markdown b/source/_components/switchbot.markdown index f752e7cca9e..3d837dfc0d0 100644 --- a/source/_components/switchbot.markdown +++ b/source/_components/switchbot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: switchbot.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.78 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/switchmate.markdown b/source/_components/switchmate.markdown index 2307af0fa4f..202c794df46 100644 --- a/source/_components/switchmate.markdown +++ b/source/_components/switchmate.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: switchmate-logo-rgb.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.78 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/syncthru.markdown b/source/_components/syncthru.markdown index 0a6f214eda5..4d2e98fc55a 100644 --- a/source/_components/syncthru.markdown +++ b/source/_components/syncthru.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: samsung.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.66 redirect_from: diff --git a/source/_components/synology.markdown b/source/_components/synology.markdown index cfb0ddc373c..d1a04f3390c 100644 --- a/source/_components/synology.markdown +++ b/source/_components/synology.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: synology.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.31 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/synology_chat.markdown b/source/_components/synology_chat.markdown index cf20a62bf91..0c000a2f0b7 100644 --- a/source/_components/synology_chat.markdown +++ b/source/_components/synology_chat.markdown @@ -9,7 +9,8 @@ sharing: true footer: true ha_release: 0.65 logo: synology.png -ha_category: Notifications +ha_category: + - Notifications redirect_from: - /components/notify.synology_chat/ --- diff --git a/source/_components/synology_srm.markdown b/source/_components/synology_srm.markdown index 8ccb312abf2..6a01e496875 100644 --- a/source/_components/synology_srm.markdown +++ b/source/_components/synology_srm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: synology.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.87 redirect_from: - /components/device_tracker.synology_srm/ diff --git a/source/_components/synologydsm.markdown b/source/_components/synologydsm.markdown index ee5e36f859e..9102d78f213 100644 --- a/source/_components/synologydsm.markdown +++ b/source/_components/synologydsm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: synology.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.32 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/syslog.markdown b/source/_components/syslog.markdown index d25f3a25584..037f53e8660 100644 --- a/source/_components/syslog.markdown +++ b/source/_components/syslog.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: syslog.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.syslog/ diff --git a/source/_components/system_health.markdown b/source/_components/system_health.markdown index 1b7416d890d..e226efd2a16 100644 --- a/source/_components/system_health.markdown +++ b/source/_components/system_health.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - "Other" ha_qa_scale: internal ha_release: 0.87 --- diff --git a/source/_components/system_log.markdown b/source/_components/system_log.markdown index 2f0befb2c99..79229d5cdc8 100644 --- a/source/_components/system_log.markdown +++ b/source/_components/system_log.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_release: 0.58 ha_qa_scale: internal --- diff --git a/source/_components/systemmonitor.markdown b/source/_components/systemmonitor.markdown index 97446a4d269..dff45f1b268 100644 --- a/source/_components/systemmonitor.markdown +++ b/source/_components/systemmonitor.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: system_monitor.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: pre 0.7 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/sytadin.markdown b/source/_components/sytadin.markdown index 17da8090b68..cd38ab5f977 100644 --- a/source/_components/sytadin.markdown +++ b/source/_components/sytadin.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: sytadin.png ha_release: 0.57 -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling redirect_from: - /components/sensor.sytadin/ diff --git a/source/_components/tank_utility.markdown b/source/_components/tank_utility.markdown index 2a2a695e8b1..0259811b20a 100644 --- a/source/_components/tank_utility.markdown +++ b/source/_components/tank_utility.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tank_utility.png -ha_category: Energy +ha_category: + - Energy ha_release: 0.53 redirect_from: - /components/sensor.tank_utility/ diff --git a/source/_components/tapsaff.markdown b/source/_components/tapsaff.markdown index 9cc6e85072d..98a9a50ecf9 100644 --- a/source/_components/tapsaff.markdown +++ b/source/_components/tapsaff.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tapsaff.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.47 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/tautulli.markdown b/source/_components/tautulli.markdown index 33e2f13817e..7515b594edf 100644 --- a/source/_components/tautulli.markdown +++ b/source/_components/tautulli.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tautulli.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.82 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/ted5000.markdown b/source/_components/ted5000.markdown index f0e674189ee..7360d97d651 100644 --- a/source/_components/ted5000.markdown +++ b/source/_components/ted5000.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ted.png -ha_category: Energy +ha_category: + - Energy ha_release: "0.30" ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/teksavvy.markdown b/source/_components/teksavvy.markdown index 6eac86d26d1..f6fc4523a94 100644 --- a/source/_components/teksavvy.markdown +++ b/source/_components/teksavvy.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: teksavvy.png -ha_category: Network +ha_category: + - Network ha_release: 0.62 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/telegram.markdown b/source/_components/telegram.markdown index d7fbf2d8c1b..9f490fe0ae1 100644 --- a/source/_components/telegram.markdown +++ b/source/_components/telegram.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: telegram.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.7.5 redirect_from: - /components/notify.telegram/ diff --git a/source/_components/telegram_bot.markdown b/source/_components/telegram_bot.markdown index 167b2ae2674..5935b843718 100644 --- a/source/_components/telegram_bot.markdown +++ b/source/_components/telegram_bot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: telegram.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.42 ha_iot_class: Cloud Push --- diff --git a/source/_components/telnet.markdown b/source/_components/telnet.markdown index dcaeab255d4..21befb2743b 100644 --- a/source/_components/telnet.markdown +++ b/source/_components/telnet.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Switch +ha_category: + - Switch ha_release: 0.54 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/temper.markdown b/source/_components/temper.markdown index a6c32e3d943..2a20bc3d79f 100644 --- a/source/_components/temper.markdown +++ b/source/_components/temper.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: DIY +ha_category: + - DIY ha_iot_class: Local Push ha_release: pre 0.7 redirect_from: diff --git a/source/_components/template.markdown b/source/_components/template.markdown index 20593084835..21c2bca30d4 100644 --- a/source/_components/template.markdown +++ b/source/_components/template.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.12 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/tensorflow.markdown b/source/_components/tensorflow.markdown index 53c8bb44582..ee8c2680d73 100644 --- a/source/_components/tensorflow.markdown +++ b/source/_components/tensorflow.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tensorflow.png -ha_category: Image Processing +ha_category: + - Image Processing ha_iot_class: Local Polling ha_release: 0.82 redirect_from: diff --git a/source/_components/tfiac.markdown b/source/_components/tfiac.markdown index ed7797911f6..f0d1e330dfa 100644 --- a/source/_components/tfiac.markdown +++ b/source/_components/tfiac.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tfiac.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.91 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/thermoworks_smoke.markdown b/source/_components/thermoworks_smoke.markdown index fd307a471ba..215dbacd589 100644 --- a/source/_components/thermoworks_smoke.markdown +++ b/source/_components/thermoworks_smoke.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: thermoworks.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.81 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/thingspeak.markdown b/source/_components/thingspeak.markdown index 6bcabe6fe9e..d8864c4d2d3 100644 --- a/source/_components/thingspeak.markdown +++ b/source/_components/thingspeak.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: thingspeak.png -ha_category: "History" +ha_category: + - "History" ha_release: 0.32 --- diff --git a/source/_components/thomson.markdown b/source/_components/thomson.markdown index 76253968912..3eca5dd99bc 100644 --- a/source/_components/thomson.markdown +++ b/source/_components/thomson.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: technicolor.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7 redirect_from: - /components/device_tracker.thomson/ diff --git a/source/_components/threshold.markdown b/source/_components/threshold.markdown index 451178c2283..4e679a2930a 100644 --- a/source/_components/threshold.markdown +++ b/source/_components/threshold.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.34 ha_qa_scale: internal diff --git a/source/_components/tikteck.markdown b/source/_components/tikteck.markdown index c904eaf9491..2054dbf2b85 100644 --- a/source/_components/tikteck.markdown +++ b/source/_components/tikteck.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling logo: tikteck.png ha_release: 0.36 diff --git a/source/_components/tile.markdown b/source/_components/tile.markdown index 5e4934ce18b..5fd85c3412a 100644 --- a/source/_components/tile.markdown +++ b/source/_components/tile.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: tile.png ha_release: 0.58 -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Cloud Polling redirect_from: - /components/device_tracker.tile/ diff --git a/source/_components/time_date.markdown b/source/_components/time_date.markdown index e621ad72dee..bd0a514ca3c 100644 --- a/source/_components/time_date.markdown +++ b/source/_components/time_date.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Local Push ha_release: pre 0.7 ha_qa_scale: internal diff --git a/source/_components/timer.markdown b/source/_components/timer.markdown index 3e914d73130..6e214503133 100644 --- a/source/_components/timer.markdown +++ b/source/_components/timer.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Automation +ha_category: + - Automation ha_release: 0.57 ha_qa_scale: internal --- diff --git a/source/_components/tod.markdown b/source/_components/tod.markdown index 93a03d59448..1443df092da 100644 --- a/source/_components/tod.markdown +++ b/source/_components/tod.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Binary Sensor +ha_category: + - Binary Sensor ha_release: 0.89 ha_iot_class: Local Push logo: home-assistant.png diff --git a/source/_components/todoist.markdown b/source/_components/todoist.markdown index 308ae263b3c..bf27c18791c 100644 --- a/source/_components/todoist.markdown +++ b/source/_components/todoist.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: todoist.png -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Cloud Polling ha_release: 0.54 redirect_from: diff --git a/source/_components/tof.markdown b/source/_components/tof.markdown index bf5c68a3674..cb33bacbd81 100644 --- a/source/_components/tof.markdown +++ b/source/_components/tof.markdown @@ -8,7 +8,7 @@ comments: false sharing: true footer: true logo: raspberry-pi.png -ha_category: +ha_category: - DIY - Sensor ha_release: "0.90" diff --git a/source/_components/tomato.markdown b/source/_components/tomato.markdown index 94a41d4239e..14d08f2847f 100644 --- a/source/_components/tomato.markdown +++ b/source/_components/tomato.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: tomato.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: pre 0.7 redirect_from: - /components/device_tracker.tomato/ diff --git a/source/_components/torque.markdown b/source/_components/torque.markdown index 3c2ed1647f2..f7018ebd70a 100644 --- a/source/_components/torque.markdown +++ b/source/_components/torque.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: torque.png -ha_category: Car +ha_category: + - Car ha_release: "0.10" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/totalconnect.markdown b/source/_components/totalconnect.markdown index f7aea202e2a..7d97bf463f3 100644 --- a/source/_components/totalconnect.markdown +++ b/source/_components/totalconnect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: honeywell-tc.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.42 redirect_from: - /components/alarm_control_panel.totalconnect/ diff --git a/source/_components/touchline.markdown b/source/_components/touchline.markdown index df49a42fb6b..4c76af10075 100644 --- a/source/_components/touchline.markdown +++ b/source/_components/touchline.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: roth.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.61 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/traccar.markdown b/source/_components/traccar.markdown index 589177f32fa..ab4a4d6f8ae 100644 --- a/source/_components/traccar.markdown +++ b/source/_components/traccar.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: traccar.png ha_release: 0.83 -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling redirect_from: - /components/device_tracker.traccar/ diff --git a/source/_components/trackr.markdown b/source/_components/trackr.markdown index dc80419df8a..761f770bbc2 100644 --- a/source/_components/trackr.markdown +++ b/source/_components/trackr.markdown @@ -9,7 +9,8 @@ sharing: true footer: true logo: trackr.png ha_release: 0.36 -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Cloud Polling redirect_from: - /components/device_tracker.trackr/ diff --git a/source/_components/trafikverket_weatherstation.markdown b/source/_components/trafikverket_weatherstation.markdown index 68371512a23..f2e2dfc95e5 100644 --- a/source/_components/trafikverket_weatherstation.markdown +++ b/source/_components/trafikverket_weatherstation.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: trafikverket.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.66 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/transport_nsw.markdown b/source/_components/transport_nsw.markdown index 966c6184d9b..cac249d8553 100644 --- a/source/_components/transport_nsw.markdown +++ b/source/_components/transport_nsw.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: transport_nsw.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.81 redirect_from: diff --git a/source/_components/travisci.markdown b/source/_components/travisci.markdown index d4c0c9d5922..a94c83faf1e 100644 --- a/source/_components/travisci.markdown +++ b/source/_components/travisci.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: travisci.svg -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.56 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/trend.markdown b/source/_components/trend.markdown index 9c9dbcd42fa..78c22c87c7b 100644 --- a/source/_components/trend.markdown +++ b/source/_components/trend.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Utility +ha_category: + - Utility logo: home-assistant.png ha_release: 0.28 ha_iot_class: Local Push diff --git a/source/_components/twilio.markdown b/source/_components/twilio.markdown index f4f60e7cf7e..2485193b7d6 100644 --- a/source/_components/twilio.markdown +++ b/source/_components/twilio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: twilio.png -ha_category: Hub +ha_category: + - Hub ha_release: "0.40" --- diff --git a/source/_components/twilio_call.markdown b/source/_components/twilio_call.markdown index 65a5e84e79c..47e86f8aab3 100644 --- a/source/_components/twilio_call.markdown +++ b/source/_components/twilio_call.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: twilio.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.37 redirect_from: - /components/notify.twilio_call/ diff --git a/source/_components/twilio_sms.markdown b/source/_components/twilio_sms.markdown index 3dfcaf43568..4390e447191 100644 --- a/source/_components/twilio_sms.markdown +++ b/source/_components/twilio_sms.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: twilio.png -ha_category: Notifications +ha_category: + - Notifications ha_release: "0.20" redirect_from: - /components/notify.twilio_sms/ diff --git a/source/_components/twitch.markdown b/source/_components/twitch.markdown index 0f450b358b6..3b39152bf56 100644 --- a/source/_components/twitch.markdown +++ b/source/_components/twitch.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: twitch.png -ha_category: Social +ha_category: + - Social ha_release: "0.10" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/twitter.markdown b/source/_components/twitter.markdown index 3e199f4c122..96a8e27d3e6 100644 --- a/source/_components/twitter.markdown +++ b/source/_components/twitter.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: twitter.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.12 redirect_from: - /components/notify.twitter/ diff --git a/source/_components/ubee.markdown b/source/_components/ubee.markdown index 30f9927cbb8..619dc1e5c63 100644 --- a/source/_components/ubee.markdown +++ b/source/_components/ubee.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ubee.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.89 redirect_from: - /components/device_tracker.ubee/ diff --git a/source/_components/uber.markdown b/source/_components/uber.markdown index f607a84fdfe..fc98e5173be 100644 --- a/source/_components/uber.markdown +++ b/source/_components/uber.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: uber.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.16 redirect_from: diff --git a/source/_components/ubus.markdown b/source/_components/ubus.markdown index d965db0bb3d..0a637ff158a 100644 --- a/source/_components/ubus.markdown +++ b/source/_components/ubus.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: openwrt.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.7.6 redirect_from: - /components/device_tracker.ubus/ diff --git a/source/_components/ue_smart_radio.markdown b/source/_components/ue_smart_radio.markdown index 48d4a55f6d4..4910304a65c 100644 --- a/source/_components/ue_smart_radio.markdown +++ b/source/_components/ue_smart_radio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ueradio.png -ha_category: Media Player +ha_category: + - Media Player ha_release: "0.60" ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/uk_transport.markdown b/source/_components/uk_transport.markdown index afba90b9175..b8b3967d42a 100644 --- a/source/_components/uk_transport.markdown +++ b/source/_components/uk_transport.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: train.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: "0.50" redirect_from: diff --git a/source/_components/unifi_direct.markdown b/source/_components/unifi_direct.markdown index ba15621b29a..3f3335b46bd 100644 --- a/source/_components/unifi_direct.markdown +++ b/source/_components/unifi_direct.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ubiquiti.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling ha_release: 0.59 redirect_from: diff --git a/source/_components/universal.markdown b/source/_components/universal.markdown index 8015c69eb16..f54e50b2752 100644 --- a/source/_components/universal.markdown +++ b/source/_components/universal.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Media Player +ha_category: + - Media Player ha_qa_scale: internal ha_release: 0.11 redirect_from: diff --git a/source/_components/upc_connect.markdown b/source/_components/upc_connect.markdown index e483d5b9b27..7a9a36fed15 100644 --- a/source/_components/upc_connect.markdown +++ b/source/_components/upc_connect.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: upc.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_release: 0.36 redirect_from: - /components/device_tracker.upc_connect/ diff --git a/source/_components/updater.markdown b/source/_components/updater.markdown index 91019e670d2..17453c0308d 100644 --- a/source/_components/updater.markdown +++ b/source/_components/updater.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Other +ha_category: + - Other ha_qa_scale: internal ha_release: 0.8 --- diff --git a/source/_components/ups.markdown b/source/_components/ups.markdown index 06797853006..4d6cf80c610 100644 --- a/source/_components/ups.markdown +++ b/source/_components/ups.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ups.png -ha_category: Postal Service +ha_category: + - Postal Service ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/uptime.markdown b/source/_components/uptime.markdown index ffd79222b2c..847c3692a61 100644 --- a/source/_components/uptime.markdown +++ b/source/_components/uptime.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Push logo: home-assistant.png ha_release: 0.56 diff --git a/source/_components/uptimerobot.markdown b/source/_components/uptimerobot.markdown index 06bb9d7f36f..984a72e2805 100644 --- a/source/_components/uptimerobot.markdown +++ b/source/_components/uptimerobot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: uptimerobot.png -ha_category: System Monitor +ha_category: + - System Monitor ha_release: 0.72 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/uscis.markdown b/source/_components/uscis.markdown index f38cf3c9435..3fe075065a1 100644 --- a/source/_components/uscis.markdown +++ b/source/_components/uscis.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: uscis.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.68 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/usgs_earthquakes_feed.markdown b/source/_components/usgs_earthquakes_feed.markdown index 7fb2b50e4b9..6f6ef781028 100644 --- a/source/_components/usgs_earthquakes_feed.markdown +++ b/source/_components/usgs_earthquakes_feed.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: us-geological-survey.png -ha_category: Geolocation +ha_category: + - Geolocation ha_iot_class: Cloud Polling ha_release: 0.84 redirect_from: diff --git a/source/_components/utility_meter.markdown b/source/_components/utility_meter.markdown index 3dfb3852605..a186c0ad8e1 100644 --- a/source/_components/utility_meter.markdown +++ b/source/_components/utility_meter.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.87 ha_iot_class: Local Push logo: energy_meter.png diff --git a/source/_components/uvc.markdown b/source/_components/uvc.markdown index e7edc160cf3..1f691d6ac5d 100644 --- a/source/_components/uvc.markdown +++ b/source/_components/uvc.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ubiquiti.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.13 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/vacuum.mqtt.markdown b/source/_components/vacuum.mqtt.markdown index f4c3bcc254d..538acc14f6a 100644 --- a/source/_components/vacuum.mqtt.markdown +++ b/source/_components/vacuum.mqtt.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: Vacuum +ha_category: + - Vacuum ha_release: 0.54 --- diff --git a/source/_components/vacuum.xiaomi_miio.markdown b/source/_components/vacuum.xiaomi_miio.markdown index 43cdf5fdb97..1d956cfcdd4 100644 --- a/source/_components/vacuum.xiaomi_miio.markdown +++ b/source/_components/vacuum.xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Vacuum +ha_category: + - Vacuum ha_release: 0.51 ha_iot_class: Local Polling --- diff --git a/source/_components/vasttrafik.markdown b/source/_components/vasttrafik.markdown index 64d5e85963d..95c269f938e 100644 --- a/source/_components/vasttrafik.markdown +++ b/source/_components/vasttrafik.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: vasttrafik.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: "0.30" redirect_from: diff --git a/source/_components/venstar.markdown b/source/_components/venstar.markdown index 91571846acb..cb1b8b56a8a 100644 --- a/source/_components/venstar.markdown +++ b/source/_components/venstar.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: venstar.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.62 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/version.markdown b/source/_components/version.markdown index 1a9612247ab..52b86941114 100644 --- a/source/_components/version.markdown +++ b/source/_components/version.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Push logo: home-assistant.png ha_release: 0.52 diff --git a/source/_components/vesync.markdown b/source/_components/vesync.markdown index d26a867d88c..8ee93812f05 100644 --- a/source/_components/vesync.markdown +++ b/source/_components/vesync.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: vesync.png -ha_category: Switch +ha_category: + - Switch ha_release: 0.66 redirect_from: - /components/switch.vesync/ diff --git a/source/_components/viaggiatreno.markdown b/source/_components/viaggiatreno.markdown index 7167193ac3e..9bc03a976ef 100644 --- a/source/_components/viaggiatreno.markdown +++ b/source/_components/viaggiatreno.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: train.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.58 redirect_from: diff --git a/source/_components/vizio.markdown b/source/_components/vizio.markdown index c4e2fafdf83..0d6ac294097 100644 --- a/source/_components/vizio.markdown +++ b/source/_components/vizio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: vizio-smartcast.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.49 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/vlc.markdown b/source/_components/vlc.markdown index c0929c03cc4..222767e648e 100644 --- a/source/_components/vlc.markdown +++ b/source/_components/vlc.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: videolan.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.35 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/voicerss.markdown b/source/_components/voicerss.markdown index fd7279bd299..49eb1d2b884 100644 --- a/source/_components/voicerss.markdown +++ b/source/_components/voicerss.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: voicerss.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.35 redirect_from: - /components/tts.voicerss/ diff --git a/source/_components/volkszaehler.markdown b/source/_components/volkszaehler.markdown index e0fb0e3c82d..68b163843ba 100644 --- a/source/_components/volkszaehler.markdown +++ b/source/_components/volkszaehler.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: volkszaehler.png -ha_category: System Monitor +ha_category: + - System Monitor ha_iot_class: Local Polling ha_release: 0.78 redirect_from: diff --git a/source/_components/volumio.markdown b/source/_components/volumio.markdown index 2619b8ff54f..7b7ce7f8ee6 100644 --- a/source/_components/volumio.markdown +++ b/source/_components/volumio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: volumio.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.41 redirect_from: - /components/media_player.volumio/ diff --git a/source/_components/volvooncall.markdown b/source/_components/volvooncall.markdown index 20022c4acbd..eeed03ca4c1 100644 --- a/source/_components/volvooncall.markdown +++ b/source/_components/volvooncall.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: volvo.png -ha_category: Car +ha_category: + - Car ha_release: 0.39 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/waqi.markdown b/source/_components/waqi.markdown index c0bdad99537..b95de81d5ee 100644 --- a/source/_components/waqi.markdown +++ b/source/_components/waqi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: waqi.png -ha_category: Health +ha_category: + - Health ha_release: 0.34 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/waterfurnace.markdown b/source/_components/waterfurnace.markdown index face090bf46..322349760e7 100644 --- a/source/_components/waterfurnace.markdown +++ b/source/_components/waterfurnace.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: waterfurnace.png -ha_category: Sensor +ha_category: + - Sensor ha_release: 0.62 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/watson_iot.markdown b/source/_components/watson_iot.markdown index a13ef02fc63..dffff86af55 100644 --- a/source/_components/watson_iot.markdown +++ b/source/_components/watson_iot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ibm.png -ha_category: History +ha_category: + - History ha_release: 0.72 --- diff --git a/source/_components/waze_travel_time.markdown b/source/_components/waze_travel_time.markdown index 50e8cbe20c2..1f3577aa22a 100644 --- a/source/_components/waze_travel_time.markdown +++ b/source/_components/waze_travel_time.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: waze.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.67 redirect_from: diff --git a/source/_components/weather.darksky.markdown b/source/_components/weather.darksky.markdown index 3f199d33dbf..d3fda0301c6 100644 --- a/source/_components/weather.darksky.markdown +++ b/source/_components/weather.darksky.markdown @@ -9,7 +9,8 @@ sharing: true footer: true featured: true logo: dark_sky.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.61 ha_iot_class: Cloud Polling --- diff --git a/source/_components/webhooks.markdown b/source/_components/webhooks.markdown index 3ae94b9dad9..b9e015982fe 100644 --- a/source/_components/webhooks.markdown +++ b/source/_components/webhooks.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: telegram.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.42 redirect_from: - /components/telegram_bot.webhooks/ diff --git a/source/_components/weblink.markdown b/source/_components/weblink.markdown index 4e05396cdf1..b957a3ee5d4 100644 --- a/source/_components/weblink.markdown +++ b/source/_components/weblink.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Front end +ha_category: + - Front end ha_release: 0.13 ha_qa_scale: internal --- diff --git a/source/_components/websocket_api.markdown b/source/_components/websocket_api.markdown index 5eb414dc6cc..41befadad65 100644 --- a/source/_components/websocket_api.markdown +++ b/source/_components/websocket_api.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: "Other" +ha_category: + - "Other" ha_qa_scale: internal ha_release: 0.34 --- diff --git a/source/_components/whois.markdown b/source/_components/whois.markdown index 562d9149073..80b543d4411 100644 --- a/source/_components/whois.markdown +++ b/source/_components/whois.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: icann.png -ha_category: Network +ha_category: + - Network ha_release: 0.57 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/workday.markdown b/source/_components/workday.markdown index 4539171c3ea..e592c788e00 100644 --- a/source/_components/workday.markdown +++ b/source/_components/workday.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Utility +ha_category: + - Utility ha_iot_class: Local Polling ha_release: 0.41 ha_qa_scale: internal diff --git a/source/_components/worldclock.markdown b/source/_components/worldclock.markdown index 3c4cfddf87e..8bec30c3106 100644 --- a/source/_components/worldclock.markdown +++ b/source/_components/worldclock.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Calendar +ha_category: + - Calendar ha_iot_class: Local Push ha_release: pre 0.7 ha_qa_scale: internal diff --git a/source/_components/worldtidesinfo.markdown b/source/_components/worldtidesinfo.markdown index 7ab15dd3bf2..a9124dba2ce 100644 --- a/source/_components/worldtidesinfo.markdown +++ b/source/_components/worldtidesinfo.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: worldtidesinfo.png -ha_category: Environment +ha_category: + - Environment ha_release: 0.52 redirect_from: - /components/sensor.worldtidesinfo/ diff --git a/source/_components/worxlandroid.markdown b/source/_components/worxlandroid.markdown index 172f93e1c89..155b88001ae 100644 --- a/source/_components/worxlandroid.markdown +++ b/source/_components/worxlandroid.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: worx.png -ha_category: DIY +ha_category: + - DIY ha_release: 0.54 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/wsdot.markdown b/source/_components/wsdot.markdown index 4c1a9706437..11e40f13db5 100644 --- a/source/_components/wsdot.markdown +++ b/source/_components/wsdot.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: wsdot.png -ha_category: Transport +ha_category: + - Transport ha_iot_class: Cloud Polling ha_release: 0.37 redirect_from: diff --git a/source/_components/wunderground.markdown b/source/_components/wunderground.markdown index ee9c6b45b92..6dccff79097 100644 --- a/source/_components/wunderground.markdown +++ b/source/_components/wunderground.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: wunderground.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.27 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/wunderlist.markdown b/source/_components/wunderlist.markdown index aed87d67f49..fd754d35d3b 100644 --- a/source/_components/wunderlist.markdown +++ b/source/_components/wunderlist.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: wunderlist.png -ha_category: Calendar +ha_category: + - Calendar ha_release: 0.84 --- diff --git a/source/_components/x10.markdown b/source/_components/x10.markdown index a4252a53e3c..5e12ae41ff1 100644 --- a/source/_components/x10.markdown +++ b/source/_components/x10.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: x10.gif -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.25 redirect_from: diff --git a/source/_components/xbox_live.markdown b/source/_components/xbox_live.markdown index 0c5b05df1a3..234a18c22e0 100644 --- a/source/_components/xbox_live.markdown +++ b/source/_components/xbox_live.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xbox-live.png -ha_category: Social +ha_category: + - Social ha_iot_class: Cloud Polling ha_release: 0.28 redirect_from: diff --git a/source/_components/xeoma.markdown b/source/_components/xeoma.markdown index b0b2b5d55c4..a9c212a14b3 100644 --- a/source/_components/xeoma.markdown +++ b/source/_components/xeoma.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xeoma.png -ha_category: Camera +ha_category: + - Camera ha_iot_class: Local Polling ha_release: 0.62 redirect_from: diff --git a/source/_components/xfinity.markdown b/source/_components/xfinity.markdown index 4b1e59d55cc..f29fbffc0ab 100644 --- a/source/_components/xfinity.markdown +++ b/source/_components/xfinity.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Presence Detection +ha_category: + - Presence Detection logo: xfinity.svg ha_release: 0.90 ha_iot_class: "Local Polling" diff --git a/source/_components/xiaomi.markdown b/source/_components/xiaomi.markdown index 22935402dae..be9d746a5a4 100644 --- a/source/_components/xiaomi.markdown +++ b/source/_components/xiaomi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.72 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/xiaomi_aqara.markdown b/source/_components/xiaomi_aqara.markdown index e46eed2ca2d..0e31f5a0a88 100644 --- a/source/_components/xiaomi_aqara.markdown +++ b/source/_components/xiaomi_aqara.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Hub +ha_category: + - Hub ha_release: 0.57 ha_iot_class: Local Push redirect_from: /components/xiaomi/ diff --git a/source/_components/xiaomi_miio.markdown b/source/_components/xiaomi_miio.markdown index 3589c9c3cba..68182ac05e0 100644 --- a/source/_components/xiaomi_miio.markdown +++ b/source/_components/xiaomi_miio.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Presence Detection +ha_category: + - Presence Detection ha_iot_class: Local Polling ha_release: 0.67 redirect_from: diff --git a/source/_components/xiaomi_tv.markdown b/source/_components/xiaomi_tv.markdown index ac402d90d77..bb871cd98ae 100644 --- a/source/_components/xiaomi_tv.markdown +++ b/source/_components/xiaomi_tv.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xiaomi.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.64 ha_iot_class: Assumed State redirect_from: diff --git a/source/_components/xmpp.markdown b/source/_components/xmpp.markdown index ae1c44a4b9c..aabadd64375 100644 --- a/source/_components/xmpp.markdown +++ b/source/_components/xmpp.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: xmpp.png -ha_category: Notifications +ha_category: + - Notifications ha_release: pre 0.7 redirect_from: - /components/notify.xmpp/ diff --git a/source/_components/yale_smart_alarm.markdown b/source/_components/yale_smart_alarm.markdown index ae1b8852bdf..de7233966c1 100644 --- a/source/_components/yale_smart_alarm.markdown +++ b/source/_components/yale_smart_alarm.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yale.png -ha_category: Alarm +ha_category: + - Alarm ha_release: 0.78 redirect_from: - /components/alarm_control_panel.yale_smart_alarm/ diff --git a/source/_components/yamaha.markdown b/source/_components/yamaha.markdown index 953f6b252db..c361bfa79af 100644 --- a/source/_components/yamaha.markdown +++ b/source/_components/yamaha.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yamaha.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.16 redirect_from: - /components/media_player.yamaha/ diff --git a/source/_components/yamaha_musiccast.markdown b/source/_components/yamaha_musiccast.markdown index e5fda40c6a3..ea4796b76c7 100644 --- a/source/_components/yamaha_musiccast.markdown +++ b/source/_components/yamaha_musiccast.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yamaha.png -ha_category: Media Player +ha_category: + - Media Player ha_release: 0.53 redirect_from: - /components/media_player.yamaha_musiccast/ diff --git a/source/_components/yandextts.markdown b/source/_components/yandextts.markdown index fb36d45ede4..15141fdb705 100644 --- a/source/_components/yandextts.markdown +++ b/source/_components/yandextts.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yandex.png -ha_category: Text-to-speech +ha_category: + - Text-to-speech ha_release: 0.36 redirect_from: - /components/tts.yandextts/ diff --git a/source/_components/yeelight.markdown b/source/_components/yeelight.markdown index 9a04f4be256..8fab6bffae1 100644 --- a/source/_components/yeelight.markdown +++ b/source/_components/yeelight.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yeelight.png -ha_category: Light +ha_category: + - Light ha_release: 0.32 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/yeelightsunflower.markdown b/source/_components/yeelightsunflower.markdown index 53aec0ef7f5..f5099a57d4b 100644 --- a/source/_components/yeelightsunflower.markdown +++ b/source/_components/yeelightsunflower.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yeelight.png -ha_category: Light +ha_category: + - Light ha_release: 0.39 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/yessssms.markdown b/source/_components/yessssms.markdown index b5e6e6b6b9b..2c959a985f4 100644 --- a/source/_components/yessssms.markdown +++ b/source/_components/yessssms.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yesssat.png -ha_category: Notifications +ha_category: + - Notifications ha_release: 0.57 redirect_from: - /components/notify.yessssms/ diff --git a/source/_components/yi.markdown b/source/_components/yi.markdown index f36e5fb246f..388f2ef8b20 100644 --- a/source/_components/yi.markdown +++ b/source/_components/yi.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yi.png -ha_category: Camera +ha_category: + - Camera ha_release: 0.56 ha_iot_class: Local Polling redirect_from: diff --git a/source/_components/yr.markdown b/source/_components/yr.markdown index a5153bc87d7..2e453a680c6 100644 --- a/source/_components/yr.markdown +++ b/source/_components/yr.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: yr.png -ha_category: Weather +ha_category: + - Weather ha_release: 0.11 ha_iot_class: Cloud Polling redirect_from: diff --git a/source/_components/zengge.markdown b/source/_components/zengge.markdown index 40fb6e98989..868a29b23ef 100644 --- a/source/_components/zengge.markdown +++ b/source/_components/zengge.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: zengge.png -ha_category: Light +ha_category: + - Light ha_iot_class: Local Polling ha_release: 0.36 redirect_from: diff --git a/source/_components/zeroconf.markdown b/source/_components/zeroconf.markdown index be29f6e6d84..b44c5f60f7d 100644 --- a/source/_components/zeroconf.markdown +++ b/source/_components/zeroconf.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: avahi.png -ha_category: Network +ha_category: + - Network ha_release: 0.18 --- diff --git a/source/_components/zestimate.markdown b/source/_components/zestimate.markdown index 5aa2d378de2..22e26652ccb 100644 --- a/source/_components/zestimate.markdown +++ b/source/_components/zestimate.markdown @@ -7,7 +7,8 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Sensor +ha_category: + - Sensor logo: zillow.png ha_release: 0.65 ha_iot_class: Cloud Polling diff --git a/source/_components/zhong_hong.markdown b/source/_components/zhong_hong.markdown index cae13a76308..6f12502010d 100644 --- a/source/_components/zhong_hong.markdown +++ b/source/_components/zhong_hong.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: zhong_hong.png -ha_category: Climate +ha_category: + - Climate ha_release: 0.72 ha_iot_class: Local Push redirect_from: diff --git a/source/_components/ziggo_mediabox_xl.markdown b/source/_components/ziggo_mediabox_xl.markdown index d721ed81a69..cef854b4770 100644 --- a/source/_components/ziggo_mediabox_xl.markdown +++ b/source/_components/ziggo_mediabox_xl.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: ziggo.png -ha_category: Media Player +ha_category: + - Media Player ha_iot_class: Local Polling ha_release: "0.60" redirect_from: diff --git a/source/_components/zone.markdown b/source/_components/zone.markdown index 20b6fe3b251..269492938dd 100644 --- a/source/_components/zone.markdown +++ b/source/_components/zone.markdown @@ -8,7 +8,8 @@ comments: false sharing: true footer: true logo: home-assistant.png -ha_category: Organization +ha_category: + - Organization ha_qa_scale: internal ha_release: 0.69 --- From 625a07a832d98eba08180a3df8dee3b84da5e599 Mon Sep 17 00:00:00 2001 From: Rob Chandhok Date: Sat, 11 May 2019 01:11:02 -0700 Subject: [PATCH 10/15] Updated to include example of using a Bearer token (#9429) * Updated to include example of using a Bearer token This is the only way I got it to work with a secrets file and I thought it would be useful to share/capture the steps. * Minor changes --- source/_components/rest.markdown | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/_components/rest.markdown b/source/_components/rest.markdown index 1230e9a34f3..835a7b98218 100644 --- a/source/_components/rest.markdown +++ b/source/_components/rest.markdown @@ -191,6 +191,22 @@ Content-Type: application/json User-Agent: Home Assistant ``` +If you are accessing a resource protected by a `Bearer` token in an `Authorization` header, you can either put the token in the header field of the sensor configuration (not recommended) or store the token in your [`secrets.yaml`](/docs/configuration/secrets/) file. In that case, be sure to include the word `Bearer` in the `secrets` file. + +```yaml +sensor: + - platform: rest + resource: http://IP_ADDRESS:5000/sensor + headers: + Authorization: !secret my_sensor_secret_token +``` + +Example entry for the `secrets.yaml` file: + +```yaml +my_sensor_secret_token: Bearer gh_DHQIXKVf6Pr4H8Yqz8uhApk_mnV6Zje6Pr4H8Yqz8A8nCxz6SBghQdS51 +``` + ### {% linkable_title Use GitHub to get the latest release of Home Assistant %} This sample is very similar to the [`updater`](/components/updater/) component but the information is received from GitHub. From 06e7c7f8f139a1fa919268e38326c988b0ec031e Mon Sep 17 00:00:00 2001 From: domier Date: Sun, 12 May 2019 01:41:33 +0900 Subject: [PATCH 11/15] Update the join documentation (#9436) Added clarification on several areas that are not clear, and corrected a few errors --- source/_components/joaoapps_join.markdown | 31 ++++++++++++++++++----- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/source/_components/joaoapps_join.markdown b/source/_components/joaoapps_join.markdown index 9355216b639..b2429628127 100644 --- a/source/_components/joaoapps_join.markdown +++ b/source/_components/joaoapps_join.markdown @@ -20,7 +20,7 @@ The `joaoapps_join` component exposes services from [Join](http://joaoapps.com/join). In Home Assistant, the Join features are divided up in two locations, the Join component, and the Join notify platform. The notify platform allows us to send messages to Join devices, the component -allows us to access the other special features that Join offers. +allows us to access the other special features that Join offers. When in doubt, you can reference the [API documentation](https://joaoapps.com/join/api/) this this is based on. In the `configuration.yaml` file you need to provide the api key and device id or name of the target device. You can find your device id and api key @@ -34,8 +34,8 @@ notify: - platform: joaoapps_join api_key: YOUR_API_KEY device_id: DEVICE_ID - device_ids: DEVICE_ID_1, DEVICE_ID_2 - device_names: DEVICE_1_NAME, DEVICE_2_NAME + device_ids: DEVICE_ID_1,DEVICE_ID_2 + device_names: DEVICE_1_NAME,DEVICE_2_NAME name: NAME joaoapps_join: - name: NAME_OF_GROUP @@ -49,20 +49,39 @@ api_key: required: true type: string device_id: - description: The id of your device. + description: The id of your device or group required: false type: string device_ids: - description: Comma separated list of device ids. + description: Comma separated list of device ids or groups. required: false type: string device_names: description: Comma separated list of device names. required: false type: string +name: + description: The name parameter is optional but needed if you want to use multiple notification platforms. The platform will be exposed as service `notify.`. The name will defailt to `notify` if not supplied. See the [Notifications Component](http://www.home-assistant.io/components/notify) for more details. + required: false + type: string {% endconfiguration %} -The notify service has two optional parameters: `icon`, `smallicon`, `image`, `sound`, `url`, `notification_id`, `tts`, `tts_language` and `vibration`. +Use only one of `device_id`, `device_ids`, or `device_names`, this will determine the notification recipient(s). + +```yaml +# Example configuration.yaml entry +notify: + - platform: joaoapps_join + api_key: YOUR_API_KEY + device_id: DEVICE_ID1 + name: NAME1 + - platform: joaoapps_join + api_key: YOUR_API_KEY + device_id: DEVICE_ID2 + name: NAME2 +``` + +The notify service has several optional parameters: `icon`, `smallicon`, `image`, `sound`, `url`, `notification_id`, `tts`, `tts_language` and `vibration`. You can use them like so: ```json From 9e654ff3c6074c0fbe8575e8917c0b128a441fe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBuralski?= <20515925+piotr-zuralski@users.noreply.github.com> Date: Sat, 11 May 2019 18:44:20 +0200 Subject: [PATCH 12/15] fix search problem - only if input is not empty change to search hash location (#9434) --- source/components/index.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/components/index.html b/source/components/index.html index ec18adc3a91..a81f9750a51 100644 --- a/source/components/index.html +++ b/source/components/index.html @@ -61,7 +61,7 @@ Support for these components is provided by the Home Assistant community.
@@ -265,9 +265,11 @@ allComponents.pop(); // remove placeholder element at the end $('.component-search input').keyup(debounce(function() { var text = $(this).val(); // sanitize input - text = text.replace(/[(\?|\&\{\}\(\))]/gi, ''); - updateHash('#search/' + text); - applyFilter(); + text = text.replace(/[(\?|\&\{\}\(\))]/gi, '').trim(); + if (typeof text === "string" && text.length !== 0) { + updateHash('#search/' + text); + applyFilter(); + } }, 500)); window.addEventListener('hashchange', applyFilter); From e9ea976cb1255fb42c2ad9c7084a174ea60bbc46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBuralski?= <20515925+piotr-zuralski@users.noreply.github.com> Date: Sat, 11 May 2019 18:44:51 +0200 Subject: [PATCH 13/15] fix for overriding user browser history - replaceState to pushState - user can go back and forward (#9433) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Piotr Żuralski --- source/components/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/components/index.html b/source/components/index.html index a81f9750a51..6278af8d5f4 100644 --- a/source/components/index.html +++ b/source/components/index.html @@ -147,7 +147,7 @@ allComponents.pop(); // remove placeholder element at the end var data = { components: [], image: function () { - if(this.logo === '') { + if (this.logo === '') { return ''; } else { return ''; @@ -216,8 +216,8 @@ allComponents.pop(); // remove placeholder element at the end * update the browser location hash. This enables users to use the browser-history */ function updateHash(newHash) { - if ('replaceState' in history) { - history.replaceState('', '', newHash); + if ('pushState' in history) { + history.pushState('', '', newHash); } else { location.hash = newHash; } From 082486b265bb313c3f2ee03f647d26d5895d1885 Mon Sep 17 00:00:00 2001 From: Michael Fester Date: Sat, 11 May 2019 18:47:21 +0200 Subject: [PATCH 14/15] Update snips.markdown (#9426) --- source/_components/snips.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_components/snips.markdown b/source/_components/snips.markdown index 74ec697a752..443da5dec64 100644 --- a/source/_components/snips.markdown +++ b/source/_components/snips.markdown @@ -15,7 +15,7 @@ ha_release: 0.48 The [Snips Voice Platform](https://www.snips.ai) allows users to add powerful voice assistants to their Raspberry Pi devices without compromising on privacy. It runs 100% on-device, and does not require an internet connection. It features Hotword Detection, Automatic Speech Recognition (ASR), Natural Language Understanding (NLU) and Dialog Management. -The latest documentation can be found here: [Snips Platform Documentation](https://snips.gitbook.io/documentation/). +The latest documentation can be found here: [Snips Platform Documentation](https://docs.snips.ai/). ![Snips Modules](/images/screenshots/snips_modules.png) @@ -27,7 +27,7 @@ Snips takes voice or text as input and produces *intents* as output, which are e ### {% linkable_title Installation %} -The Snips platform can be installed via the Snips APT/Debian repository. If you prefer to install the platform using the Docker distribution, check out our [Docker Installation Guide](https://github.com/snipsco/snips-platform-documentation/wiki/6.--Miscellaneous#using-docker). +The Snips platform can be installed via the Snips APT/Debian repository. ```bash sudo apt-get update @@ -77,7 +77,7 @@ Note that if you already have an assistant installed and wish to replace it then ### {% linkable_title Running Snips %} -Make sure that a microphone is plugged to the Raspberry Pi. If you are having trouble setting up audio, we have written a guide on [Raspberry Pi Audio Configuration](https://snips.gitbook.io/documentation/installing-snips/on-a-raspberry-pi#2-configuration). +Make sure that a microphone is plugged to the Raspberry Pi. If you are having trouble setting up audio, we have written a guide on [Raspberry Pi Microphones](https://docs.snips.ai/articles/raspberrypi/hardware/microphones). Start the Snips Voice Platform by starting the `snips-*` services: @@ -97,7 +97,7 @@ As the Snips Platform parses this query into an intent, it will be published on #### {% linkable_title Optional: specifying an external MQTT broker %} -By default, Snips runs its own MQTT broker. But we can also tell Snips to use an external broker by specifying this when launching Snips. In this case, we need to specify this in the `/etc/snips.toml` configuration file. For more information on configuring this, see the [Using an external MQTT broker](https://snips.gitbook.io/documentation/advanced-configuration/platform-configuration) article. +By default, Snips runs its own MQTT broker. But we can also tell Snips to use an external broker by specifying this when launching Snips. In this case, we need to specify this in the `/etc/snips.toml` configuration file. For more information on configuring this, see the [Snips Platform Configuration](https://docs.snips.ai/articles/platform/platform-configuration) article. ## {% linkable_title Home Assistant configuration %} @@ -209,7 +209,7 @@ You can send TTS notifications to Snips using the `snips.say` and `snips.say_act ### {% linkable_title Snips Support %} -There is an active [discord](https://discordapp.com/invite/3939Kqx) channel for further support. +There is an active [Forum](https://forum.snips.ai) for further support. ### {% linkable_title Configuration Examples %} From 7494352689bfaa080f88c7d852cf7a5d14566335 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 11 May 2019 18:51:49 +0200 Subject: [PATCH 15/15] Those are commands --- source/_components/snips.markdown | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/_components/snips.markdown b/source/_components/snips.markdown index 443da5dec64..60dc41ef5b8 100644 --- a/source/_components/snips.markdown +++ b/source/_components/snips.markdown @@ -30,18 +30,18 @@ Snips takes voice or text as input and produces *intents* as output, which are e The Snips platform can be installed via the Snips APT/Debian repository. ```bash -sudo apt-get update -sudo apt-get install -y dirmngr -sudo bash -c 'echo "deb https://raspbian.snips.ai/$(lsb_release -cs) stable main" > /etc/apt/sources.list.d/snips.list' -sudo apt-key adv --keyserver pgp.mit.edu --recv-keys D4F50CDCA10A2849 -sudo apt-get update -sudo apt-get install -y snips-platform-voice +$ sudo apt-get update +$ sudo apt-get install -y dirmngr +$ sudo bash -c 'echo "deb https://raspbian.snips.ai/$(lsb_release -cs) stable main" > /etc/apt/sources.list.d/snips.list' +$ sudo apt-key adv --keyserver pgp.mit.edu --recv-keys D4F50CDCA10A2849 +$ sudo apt-get update +$ sudo apt-get install -y snips-platform-voice ``` Note that if the keyserver pgp.mit.edu is down then try to use another one in the 4th line, like pgp.surfnet.nl: ```bash -sudo apt-key adv --keyserver pgp.surfnet.nl --recv-keys D4F50CDCA10A2849 +$ sudo apt-key adv --keyserver pgp.surfnet.nl --recv-keys D4F50CDCA10A2849 ``` ### {% linkable_title Creating an assistant %} @@ -51,13 +51,13 @@ Head over to the [Snips Console](https://console.snips.ai) to create your assist The next step is to get the assistant to work on your device. Unzip and copy the `assistant` folder that you downloaded from the web console to the path. Assuming your downloaded `assistant` folder is on your desktop, just run: ```bash -scp -r ~/Desktop/assistant pi@:/home/pi/. +$ scp -r ~/Desktop/assistant pi@:/home/pi/. ``` Now ssh into your Raspberry Pi: ```bash -ssh pi@ +$ ssh pi@ ``` By default, this command is `ssh pi@raspberrypi.local`, if you are using the default Raspberry Pi hostname. @@ -82,7 +82,7 @@ Make sure that a microphone is plugged to the Raspberry Pi. If you are having tr Start the Snips Voice Platform by starting the `snips-*` services: ```bash -sudo systemctl start "snips-*" +$ sudo systemctl start "snips-*" ``` Snips is now ready to take voice commands from the microphone. To trigger the listening, simply say