diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9938ea6ddb2..1b5db6f56d7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,6 +6,6 @@ ## Checklist: - [ ] Branch: `next` is for changes and new documentation that will go public with the next [home-assistant](https://github.com/home-assistant/home-assistant) release. Fixes, changes and adjustments for the current release should be created against `current`. -- [ ] The documentation follow the [standards][standards]. +- [ ] The documentation follows the [standards][standards]. -[standards]: https://home-assistant.io/developers/documentation/standards/ +[standards]: https://developers.home-assistant.io/docs/documentation_standards.html diff --git a/README.markdown b/README.markdown index d3a630cb1ea..f290a931746 100644 --- a/README.markdown +++ b/README.markdown @@ -9,7 +9,7 @@ This is the source for the [Home-Assistant.io website](https://home-assistant.io ## Setup -Setting up to contribute to documentation and the process for submitting pull requests is [explained here](https://home-assistant.io/developers/documentation/). +Setting up to contribute to documentation and the process for submitting pull requests is explained in the [developer documentation](https://developers.home-assistant.io/docs/documentation_index.html). ## Site preview diff --git a/_config.yml b/_config.yml index 7896bba2547..30d85c611b6 100644 --- a/_config.yml +++ b/_config.yml @@ -142,13 +142,13 @@ social: # Home Assistant release details current_major_version: 0 current_minor_version: 80 -current_patch_version: 0 -date_released: 2018-10-12 +current_patch_version: 1 +date_released: 2018-10-15 # Either # or the anchor link to latest release notes in the blog post. # Must be prefixed with a # and have double quotes around it. # Major release: -patch_version_notes: "#" +patch_version_notes: "#release-0801---october-15" # Minor release (Example #release-0431---april-25): # Date we moved to Discourse for comments diff --git a/source/_components/alarm_control_panel.blink.markdown b/source/_components/alarm_control_panel.blink.markdown index 2d987ca80bc..c0ca3b0d555 100644 --- a/source/_components/alarm_control_panel.blink.markdown +++ b/source/_components/alarm_control_panel.blink.markdown @@ -8,7 +8,7 @@ comments: false sharing: true footer: true logo: blink.png -ha_category: Alarm Control Panel +ha_category: Alarm ha_release: "0.80" --- diff --git a/source/_components/binary_sensor.bloomsky.markdown b/source/_components/binary_sensor.bloomsky.markdown index a53c62e973d..761682c6ca2 100644 --- a/source/_components/binary_sensor.bloomsky.markdown +++ b/source/_components/binary_sensor.bloomsky.markdown @@ -30,8 +30,14 @@ binary_sensor: - Rain ``` -Configuration variables: - -- **monitored_conditions** array (*Required*): The sensors that you wish to monitor on all of your devices. Select from these options: - - Night - - Rain +{% configuration %} +monitored_conditions: + description: "The sensors that you wish to monitor on all of your devices. Select from these options:" + required: true + type: list + keys: + night: + description: Night + rain: + description: Rain +{% endconfiguration %} diff --git a/source/_components/binary_sensor.nest.markdown b/source/_components/binary_sensor.nest.markdown index 6949c6d2b55..3303cabdff4 100644 --- a/source/_components/binary_sensor.nest.markdown +++ b/source/_components/binary_sensor.nest.markdown @@ -33,9 +33,12 @@ nest: By default all binary sensors for your available Nest devices will be monitored. Leave `monitored_conditions` blank to disable all binary sensors for the [Nest component](/components/nest/). -Configuration variables: - -- **monitored_conditions** array (*Optional*): States to monitor. +{% configuration %} +monitored_conditions: + description: States to monitor. + required: false + type: list +{% endconfiguration %} The following conditions are available by device: diff --git a/source/_components/binary_sensor.raspihats.markdown b/source/_components/binary_sensor.raspihats.markdown index be5891b19be..05d4b5cbac8 100644 --- a/source/_components/binary_sensor.raspihats.markdown +++ b/source/_components/binary_sensor.raspihats.markdown @@ -35,16 +35,44 @@ binary_sensor: name: PIR Bedroom ``` -Configuration variables: - -- **i2c_hats** (*Optional*): Array of used I2C-HATs. - - **board** (*Required*): The board name [Di16, Di6Rly6, DI16ac, DI6acDQ6rly]. - - **address** (*Required*): The board I2C address, hex value. - - **channels** (*Required*): Array of used digital input channels. - - **index** (*Required*): Digital input channel index. - - **name** (*Required*): Friendly name to use for the frontend. - - **invert_logic** (*Optional*): Inverts the input logic, default is `false`. - - **device_class** (*Optional*): See device classes in [binary_sensor component](/components/binary_sensor/), default is `None` +{% configuration %} +i2c_hats: + description: An array of used I2C-HATs. + required: false + type: list + keys: + board: + description: The board name either Di16, Di6Rly6, DI16ac or DI6acDQ6rly. + required: true + type: string + address: + description: The board I2C address as HEX value. + required: true + type: string + channels: + description: Array of used digital input channels. + required: true + type: list + keys: + index: + description: Digital input channel index. + required: true + type: integer + name: + description: Friendly name to use for the frontend. + required: true + type: string + invert_logic: + description: Inverts the input logic. + required: false + default: false + type: boolean + device_class: + description: See device classes in [binary_sensor component](/components/binary_sensor/). + required: false + default: "None" + type: string +{% endconfiguration %} ## {% linkable_title Directions for installing smbus support on Raspberry Pi %} diff --git a/source/_components/binary_sensor.template.markdown b/source/_components/binary_sensor.template.markdown index bf0b6d75594..9db49437629 100644 --- a/source/_components/binary_sensor.template.markdown +++ b/source/_components/binary_sensor.template.markdown @@ -34,7 +34,7 @@ binary_sensor: ``` {% endraw %} -{% configuration binary_sensor.template %} +{% configuration %} sensors: description: List of your sensors. required: true diff --git a/source/_components/climate.flexit.markdown b/source/_components/climate.flexit.markdown index 0281b507565..36cda1ecf58 100644 --- a/source/_components/climate.flexit.markdown +++ b/source/_components/climate.flexit.markdown @@ -26,10 +26,16 @@ climate: slave: 21 ``` -Configuration variables: - -- **slave** (*Required*): The slave ID of the modbus adapter, set using DIP-switches. -- **name** (*Optional*): Displayed name of the A/C unit +{% configuration %} +slave: + description: The slave ID of the modbus adapter, set using DIP-switches. + required: true + type: integer +name: + description: Displayed name of the A/C unit. + required: false + type: string +{% endconfiguration %}

This component requires the [Modbus](/components/modbus/) component to be set up to work diff --git a/source/_components/climate.heatmiser.markdown b/source/_components/climate.heatmiser.markdown index b1478034e9f..d55c605019f 100644 --- a/source/_components/climate.heatmiser.markdown +++ b/source/_components/climate.heatmiser.markdown @@ -13,7 +13,6 @@ ha_release: "0.10" ha_iot_class: "Local Polling" --- - The `heatmiser` climate platform let you control [Heatmiser DT/DT-E/PRT/PRT-E](http://www.heatmisershop.co.uk/heatmiser-slimline-programmable-room-thermostat/) thermostats from Heatmiser. The module itself is currently setup to work over a RS232 -> RS485 converter, therefore it connects over IP. Further work would be required to get this setup to connect over Wifi, but the HeatmiserV3 python module being used is a full implementation of the V3 protocol. @@ -23,7 +22,7 @@ To set it up, add the following information to your `configuration.yaml` file: ```yaml climate: - platform: heatmiser - ipaddress: YOUR_IPADDRESS + ipaddress: YOUR_IP_ADDRESS port: YOUR_PORT tstats: - 1: @@ -33,10 +32,26 @@ climate: A single interface can handle up to 32 connected devices. -Configuration variables: - -- **ipaddress** (*Required*): The ip address of your interface. -- **port** (*Required*): The port that the interface is listening on. -- **tstats** (*Required*): A list of thermostats activated on the gateway. -- **id** (*Required*): The id of the thermostat as configured on the device itself -- **name** (*Required*): A friendly name for the thermostat +{% configuration %} +ipaddress: + description: The IP address of your interface. + required: true + type: string +port: + description: The port that the interface is listening on. + required: true + type: integer +tstats: + description: A list of thermostats activated on the gateway. + required: true + type: list + keys: + id: + description: The ID of the thermostat as configured on the device itself. + required: true + type: string + name: + description: A friendly name for the thermostat. + required: true + type: string +{% endconfiguration %} diff --git a/source/_components/climate.radiotherm.markdown b/source/_components/climate.radiotherm.markdown index f4d08db1072..311fe0b3f42 100644 --- a/source/_components/climate.radiotherm.markdown +++ b/source/_components/climate.radiotherm.markdown @@ -30,12 +30,27 @@ climate: - platform: radiotherm ``` -Configuration variables: - -- **host** (*Optional*): List of your Radiotherm thermostats. If not provided the thermostats will be auto-detected. -- **away_temperature_heat** (*Optional*): Target heating temperature in Fahrenheit for away mode. This is separate from away mode in the app. Defaults to '60'. -- **away_temperature_cool** (*Optional*): Target cooling temperature in Fahrenheit for away mode. This is separate from away mode in the app. Defaults to '85'. -- **hold_temp** (*Optional*): Boolean to control if Home Assistant temperature adjustments hold (`True`) or are temporary (`False`). Defaults to `False`. +{% configuration %} +host: + description: List of your Radiotherm thermostats. If not provided the thermostats will be auto-detected. + required: false + type: list +away_temperature_heat: + description: Target heating temperature in Fahrenheit for away mode. This is separate from away mode in the app. + required: false + default: 60 + type: float +away_temperature_cool: + description: Target cooling temperature in Fahrenheit for away mode. This is separate from away mode in the app. + required: false + default: 85 + type: float +hold_temp: + description: Boolean to control if Home Assistant temperature adjustments hold (`true`) or are temporary (`false`). + required: false + default: false + type: boolean +{% endconfiguration %} Set `hold_temp: True` if you want temperature settings from Home Assistant to override a thermostat schedule on the thermostat itself. Otherwise Home Assistant will perform temporary temperature changes. diff --git a/source/_components/climate.sensibo.markdown b/source/_components/climate.sensibo.markdown index 85577dcdf81..f45c818e80a 100644 --- a/source/_components/climate.sensibo.markdown +++ b/source/_components/climate.sensibo.markdown @@ -21,7 +21,7 @@ To enable this platform, add the following lines to your `configuration.yaml` fi # Example configuration.yaml entry climate: - platform: sensibo - api_key: + api_key: YOUR_API_KEY ``` {% configuration %} @@ -45,7 +45,7 @@ done in the app and actions done by Home Assistant. ```yaml climate: - platform: sensibo - api_key: deadbeaf + api_key: YOUR_API_KEY id: - id1 - id2 diff --git a/source/_components/cover.markdown b/source/_components/cover.markdown index f276c9b398a..d954ee83f0e 100644 --- a/source/_components/cover.markdown +++ b/source/_components/cover.markdown @@ -15,12 +15,22 @@ The display style of each entity can be modified in the [customize section](/get | Attribute | Default | Description | | --------- | ------- | ----------- | -| `device_class` | | `none` Generic cover device
`damper` Ventilation damper controller
`garage` Garage door controller
`window` Window controller +| `device_class` | | see below | `assumed_state` | `false` | If set to `true`, cover buttons will always be enabled +### {% linkable_title Device Class %} + +The way these sensors are displayed in the frontend can be modified in the [customize section](/docs/configuration/customizing-devices/). The following device classes are supported for covers: + +- **None**: Generic cover. This is the default and doesn't need to be set. +- **damper**: Ventilation damper controller. +- **garage**: Garage door controller. +- **window**: Window controller. + ## {% linkable_title Services %} ### {% linkable_title Cover control services %} + Available services: `cover.open_cover`, `cover.close_cover`, `cover.stop_cover`, `cover.open_cover_tilt`, `cover.close_cover_tilt`, `cover.stop_cover_tilt` | Service data attribute | Optional | Description | diff --git a/source/_components/cover.rflink.markdown b/source/_components/cover.rflink.markdown index ad441726553..4ea68f16afe 100644 --- a/source/_components/cover.rflink.markdown +++ b/source/_components/cover.rflink.markdown @@ -75,7 +75,6 @@ cover: Configuration variables: -- **automatic_add** (*Optional*): Automatically add new/unconfigured devices to Home Assistant if detected (default: True). - **devices** (*Optional*): A list of devices with their name to use in the frontend. - **device_defaults**: (*Optional*) - **fire_event** (*Optional*): Set default `fire_event` for Rflink switch devices (see below). diff --git a/source/_components/daikin.markdown b/source/_components/daikin.markdown index d4b25765958..c060f41b3f8 100644 --- a/source/_components/daikin.markdown +++ b/source/_components/daikin.markdown @@ -43,7 +43,7 @@ hosts: description: List of IP addresses or hostnames. required: false default: All discovered hosts - type: array + type: list monitored_conditions: description: List of items you want to monitor for each device. required: false diff --git a/source/_components/device_sun_light_trigger.markdown b/source/_components/device_sun_light_trigger.markdown index 2be37360ace..ffb052445ea 100644 --- a/source/_components/device_sun_light_trigger.markdown +++ b/source/_components/device_sun_light_trigger.markdown @@ -27,12 +27,26 @@ To enable this component, add the following lines to your `configuration.yaml` f device_sun_light_trigger: ``` -Configuration variables: - -- **light_group** (*Optional*): Specify a specific light/group of lights that has to be turned on. -- **light_profile** (*Optional*): Specify which light profile to use when turning lights on. -- **device_group** (*Optional*): Specify which group of devices to track. -- **disable_turn_off** (*Optional*): Disable lights being turned off when everybody leaves the house. +{% configuration %} +light_group: + description: Specify a specific light/group of lights that has to be turned on. + required: false + type: string +light_profile: + description: Specify which light profile to use when turning lights on. + required: false + default: relax + type: string +device_group: + description: Specify which group of devices to track. + required: false + type: string +disable_turn_off: + description: Disable lights being turned off when everybody leaves the house. + required: false + default: false + type: boolean +{% endconfiguration %} A full configuration example could look like this: diff --git a/source/_components/device_tracker.huawei_router.markdown b/source/_components/device_tracker.huawei_router.markdown index 92ee5c62d47..5fa66cdd696 100644 --- a/source/_components/device_tracker.huawei_router.markdown +++ b/source/_components/device_tracker.huawei_router.markdown @@ -12,7 +12,7 @@ ha_category: Presence Detection ha_release: 0.51 --- -The `huawei` device trakcer platform offers presence detection by looking at connected devices to a [Huawei router](http://m.huawei.com/enmobile/enterprise/products/network/access/pon-one/hw-371813.htm). +The `huawei` device tracker platform offers presence detection by looking at connected devices to a [Huawei router](http://m.huawei.com/enmobile/enterprise/products/network/access/pon-one/hw-371813.htm). Currently, this was only tested with the Huawei HG8247H and HG8247Q Smart Router (used by Vodafone Portugal). diff --git a/source/_components/device_tracker.ping.markdown b/source/_components/device_tracker.ping.markdown index 84c41802c23..06305cec6d2 100644 --- a/source/_components/device_tracker.ping.markdown +++ b/source/_components/device_tracker.ping.markdown @@ -36,7 +36,7 @@ device_tracker: hosts: description: List of device names and their corresponding IP address or hostname. required: true - type: array + type: list count: description: Number of packet used for each device (avoid false detection). required: false diff --git a/source/_components/device_tracker.snmp.markdown b/source/_components/device_tracker.snmp.markdown index a7fe4236902..05a5b2fb867 100644 --- a/source/_components/device_tracker.snmp.markdown +++ b/source/_components/device_tracker.snmp.markdown @@ -25,7 +25,7 @@ The following OID examples pull the current MAC Address table from a router. Thi |---|---|---|---| | Mikrotik | unknown RouterOS version/model | `1.3.6.1.4.1.14988.1.1.1.2.1.1` | | Mikrotik | RouterOS 6.x on RB2011 | `1.3.6.1.2.1.4.22.1.2` | -| Aruba | (untested) | `1.3.6.1.4.1.14823.2.3.3.1.2.4.1.1` | +| Aruba | IAP325 on AOS 6.5.4.8 | `1.3.6.1.4.1.14823.2.3.3.1.2.4.1.1` | | pfSense | 2.2.4 | `1.3.6.1.2.1.4.22.1.2` | | BiPAC | 7800DXL Firmware 2.32e | `1.3.6.1.2.1.17.7.1.2.2.1.1` | | OpenWrt | Chaos Calmer 15.05 | `1.3.6.1.2.1.4.22.1.2` | diff --git a/source/_components/device_tracker.unifi.markdown b/source/_components/device_tracker.unifi.markdown index 2bb4372c4b3..60d6448dd5b 100644 --- a/source/_components/device_tracker.unifi.markdown +++ b/source/_components/device_tracker.unifi.markdown @@ -88,6 +88,21 @@ The Unifi controller can either be a dedicated hardware device (Unifi's cloud ke It is recommended that you run the Unifi controller in a dedicated virtual machine to avoid that situation. +### {% linkable_title Correctly specifying the Site ID %} + +For environments where there are multiple sites setup on the controller, or the default site is not being used you can use the `site_id` parameter to specify which site you would like to target. + +Please note that the value that is to be specificed here is not the name of the site as you would see it in controller interface, but a site ID value assigned from the software itself. + +To obtain this value for your configuration file, you can take it from the URL of your browser when on the controller webpage. + +For example, this is what would be seen in the URL bar when inside the dashboard page of a site: + +* https://127.0.0.1:8443/manage/s/ceb1m27d/dashboard + +And your `site_id` value would be ceb1m27d. + + ### {% linkable_title Troubleshooting and Time Synchronization %} Presence detection depends on accurate time configuration between Home Assistant and the Unifi controller. diff --git a/source/_components/downloader.markdown b/source/_components/downloader.markdown index f41c2fd1168..0e77a6bb719 100644 --- a/source/_components/downloader.markdown +++ b/source/_components/downloader.markdown @@ -23,9 +23,12 @@ downloader: download_dir: downloads ``` -Configuration variables: - -- **download_dir** (*Required*): If the path is not absolute, it's assumed to be relative to the Home Assistant configuration directory (eg. `.homeassistant/downloads`). +{% configuration %} +download_dir: + description: "If the path is not absolute, it's assumed to be relative to the Home Assistant configuration directory (eg. `.homeassistant/downloads`)." + required: true + type: string +{% endconfiguration %} ### {% linkable_title Use the service %} diff --git a/source/_components/duckdns.markdown b/source/_components/duckdns.markdown index 7b67ed702e3..9548049cf6d 100644 --- a/source/_components/duckdns.markdown +++ b/source/_components/duckdns.markdown @@ -23,7 +23,7 @@ To use the component in your installation, add the following to your `configurat # Example configuration.yaml entry duckdns: domain: YOUR_SUBDOMAIN - access_token: YOUR_ACCSS_TOKEN + access_token: YOUR_ACCESS_TOKEN ``` {% configuration duckdns %} diff --git a/source/_components/dyson.markdown b/source/_components/dyson.markdown index b02d948f7ee..6bccfa636a2 100644 --- a/source/_components/dyson.markdown +++ b/source/_components/dyson.markdown @@ -13,7 +13,7 @@ ha_iot_class: "Cloud Polling" ha_release: 0.47 --- -The `dyson` component is the main component to integrate all [Dyson](https://dyson.com) related platforms: [Fans](/components/fan.dyson/) and [Robot vacuum](/components/vacuum.dyson/). +The `dyson` component is the main component to integrate all [Dyson](https://dyson.com) related platforms: [Fans](/components/fan.dyson/) and [Robot vacuum cleaners](/components/vacuum.dyson/). ## {% linkable_title Configuration %} @@ -24,7 +24,7 @@ To enable this component, add the following lines to your `configuration.yaml`: dyson: username: YOUR_DYSON_USERNAME password: YOUR_DYSON_PASSWORD - language: YOUR_DYSON_ACCOUNT_LANGUGAGE + language: YOUR_DYSON_ACCOUNT_LANGUAGE devices: - device_id: DEVICE_ID_1 # eg. Serial number: XXX-XX-XXXXXXXX device_ip: DEVICE_IP_1 diff --git a/source/_components/evohome.markdown b/source/_components/evohome.markdown index 6a69e5b7413..eaa1706bb5a 100644 --- a/source/_components/evohome.markdown +++ b/source/_components/evohome.markdown @@ -29,9 +29,9 @@ To use this component in your installation, add the following to your `configura ```yaml # Example configuration.yaml entry evohome: - - username: YOUR_USERNAME - password: YOUR_PASSWORD - location_idx: 0 + username: YOUR_USERNAME + password: YOUR_PASSWORD + location_idx: 0 ``` This is a IoT cloud-polling device, and the `scan_interval` is currently fixed at 3 minutes. Testing has indicated that this is a safe interval that - by itself - shouldn't cause you to be rate-limited by Honeywell. diff --git a/source/_components/fan.dyson.markdown b/source/_components/fan.dyson.markdown index c3480135efb..8ac36b9fc9f 100644 --- a/source/_components/fan.dyson.markdown +++ b/source/_components/fan.dyson.markdown @@ -16,16 +16,16 @@ ha_release: 0.47 The `dyson` fan platform allows you to control your Dyson Purifier fans. -You have first to setup the [Dyson component](/components/dyson/) +You first have to setup the [Dyson component](/components/dyson/) ### {% linkable_title Supported fan devices %} - Pure Cool link (desk and tower) -- Pure Hot+cool link (but heating is not yet supported) +- Pure Hot+cool link (heating is not yet supported) ### {% linkable_title Attributes %} -The are several attributes that can be useful for automations and templates. +There are several attributes which can be used for automations and templates. | Attribute | Description | | --------- | ----------- | diff --git a/source/_components/gc100.markdown b/source/_components/gc100.markdown index 43d74d72b7c..1899560f492 100644 --- a/source/_components/gc100.markdown +++ b/source/_components/gc100.markdown @@ -25,7 +25,14 @@ gc100: port: 4998 ``` -Configuration variables: - -- **host** (*Required*): The hostname/IP address of your GC100 device. -- **port** (*Optional*): The port on which the GC100 is listening. +{% configuration %} +host: + description: The hostname or IP address of your GC100 device. + required: true + type: string +port: + description: The port on which the GC100 is listening. + required: false + default: 4998 + type: integer +{% endconfiguration %} diff --git a/source/_components/google_assistant.markdown b/source/_components/google_assistant.markdown index 43700fe2efd..62de1665b79 100644 --- a/source/_components/google_assistant.markdown +++ b/source/_components/google_assistant.markdown @@ -30,6 +30,7 @@ To use Google Assistant, your Home Assistant configuration has to be externally Since release 0.80, the `Authorization Code` type of `OAuth` account linking is supported. To migrate your configuration, you need: 1. Change your `Account linking` setting in [Actions on Google console](https://console.actions.google.com/), look for the `Advanced Options` in the bottom left of the sidebar. + - Under `Create an Action`, under the build section, modify `Add fulfillment URL` to `https://[YOUR HOME ASSISTANT URL:PORT]/api/google_assistant`, where `[YOUR HOME ASSISTANT URL:PORT]` is the domain / IP address and the port under which your Home Assistant instance is reachable. - Change `Linking type` to `OAuth` and `Authorization Code`. - In the `Client information` section: - Change `Client ID` to `https://oauth-redirect.googleusercontent.com/`, the trailing slash is important. diff --git a/source/_components/ifttt.markdown b/source/_components/ifttt.markdown index 511390b52a5..ad81ed426b3 100644 --- a/source/_components/ifttt.markdown +++ b/source/_components/ifttt.markdown @@ -34,7 +34,8 @@ You can then consume that information with the following automation: ```yaml automation: trigger: - event: ifttt_webhook_received + platform: event + event_type: ifttt_webhook_received event_data: action: call_service action: diff --git a/source/_components/image_processing.dlib_face_detect.markdown b/source/_components/image_processing.dlib_face_detect.markdown index f4275902565..368d4c78ba4 100644 --- a/source/_components/image_processing.dlib_face_detect.markdown +++ b/source/_components/image_processing.dlib_face_detect.markdown @@ -27,8 +27,18 @@ image_processing: - entity_id: camera.door ``` -Configuration variables: - -- **source** array (*Required*): List of image sources. - - **entity_id** (*Required*): A camera entity id to get picture from. - - **name** (*Optional*): This parameter allows you to override the name of your `image_processing` entity. +{% configuration %} +source: + description: List of image sources. + required: true + type: list + keys: + entity_id: + description: A camera entity id to get picture from. + required: true + type: string + name: + description: This parameter allows you to override the name of your `image_processing` entity. + required: false + type: string +{% endconfiguration %} diff --git a/source/_components/insteon_local.markdown b/source/_components/insteon_local.markdown index c79b46b2e4e..25f8d157650 100644 --- a/source/_components/insteon_local.markdown +++ b/source/_components/insteon_local.markdown @@ -15,4 +15,4 @@ ha_version: 0.36 The `insteon_local` component is depreciated and has been replaced by the [insteon] component. -[insteon]: /component/insteon +[insteon]: /components/insteon diff --git a/source/_components/insteon_plm.markdown b/source/_components/insteon_plm.markdown index bed0e71ccb6..ff8d33a1527 100644 --- a/source/_components/insteon_plm.markdown +++ b/source/_components/insteon_plm.markdown @@ -15,4 +15,4 @@ ha_version: 0.39 The `insteon_plm` component is depreciated and has been replaced by the [insteon] component. -[insteon]: /component/insteon +[insteon]: /components/insteon diff --git a/source/_components/light.decora.markdown b/source/_components/light.decora.markdown index b9f0063e3f5..b40889a8c4f 100644 --- a/source/_components/light.decora.markdown +++ b/source/_components/light.decora.markdown @@ -28,12 +28,25 @@ light: api_key: 0x12345678 ``` -Configuration variables: - -- **devices** array (*Required*): A list of lights to use. - - **[mac address]** (*Required*): The bluetooth address of the switch. - - **name** (*Optional*): The custom name to use in the frontend. - - **api_key** (*Required*): The API key to access the device. +{% configuration %} +devices: + description: A list of lights to use. + required: true + type: map + keys: + mac_address: + required: true + description: The bluetooth address of the switch. + type: string + name: + description: The name to use in the frontend. + required: false + type: string + api_key: + description: The API key to access the device. + required: true + type: string +{% endconfiguration %}

If you get an error looking like this: diff --git a/source/_components/lutron.markdown b/source/_components/lutron.markdown index 6799e1feb55..66960face43 100644 --- a/source/_components/lutron.markdown +++ b/source/_components/lutron.markdown @@ -32,11 +32,20 @@ lutron: password: integration ``` -Configuration variables: - -- **host** (*Required*): The IP address of the Main Repeater. -- **username** (*Required*): The login name of the user. The user `lutron` always exists, but other users can be added via RadioRA 2 software. -- **password** (*Required*): The password for the user specified above. `integration` is the password for the always-present `lutron` user. +{% configuration %} +host: + description: The IP address of the Main Repeater. + required: true + type: string +username: + description: The login name of the user. The user `lutron` always exists, but other users can be added via RadioRA 2 software. + required: true + type: string +password: + description: The password for the user specified above. `integration` is the password for the always-present `lutron` user. + required: true + type: string +{% endconfiguration %}

It is recommended to assign a static IP address to your main repeater. This ensures that it won't change IP addresses, so you won't have to change the `host` if it reboots and comes up with a different IP address. diff --git a/source/_components/media_player.anthemav.markdown b/source/_components/media_player.anthemav.markdown index 9e95937eddf..992edcb42e2 100644 --- a/source/_components/media_player.anthemav.markdown +++ b/source/_components/media_player.anthemav.markdown @@ -35,11 +35,21 @@ media_player: host: IP_ADDRESS ``` -Configuration variables: - -- **host** (*Required*): The host name or the IP address of the device. -- **port** (*Optional*): The port number. Defaults to 14999. -- **name** (*Optional*): The name of the device used in the frontend. +{% configuration %} +host: + description: The host name or the IP address of the device. + required: true + type: string +port: + description: The port number of the device. + required: false + default: 14999 + type: integer +name: + description: The name of the device used in the frontend. + required: false + type: string +{% endconfiguration %} ## Notes and Limitations diff --git a/source/_components/media_player.aquostv.markdown b/source/_components/media_player.aquostv.markdown index 156f50853f0..9535efee1ac 100644 --- a/source/_components/media_player.aquostv.markdown +++ b/source/_components/media_player.aquostv.markdown @@ -27,14 +27,37 @@ media_player: host: 192.168.0.10 ``` -Configuration variables: +{% configuration %} +host: + description: The IP/Hostname of the Sharp Aquos TV, eg. `192.168.0.10`. + required: true + type: string +port: + description: The port of the Sharp Aquos TV. + required: false + default: 10002 + type: int +username: + description: The username of the Sharp Aquos TV. + required: false + default: admin + type: string +password: + description: The password of the Sharp Aquos TV. + required: false + default: password + type: string +name: + description: The name you would like to give to the Sharp Aquos TV. + required: false + type: string +power_on_enabled: + description: If you want to be able to turn on your TV. + required: false + default: false + type: boolean +{% endconfiguration %} -- **host** (*Required*): The IP/Hostname of the Sharp Aquos TV, eg. `192.168.0.10`. -- **port** (*Optional*): The port of the Sharp Aquos TV. Defaults to 10002. -- **username** (*Optional*): The username of the Sharp Aquos TV. Defaults to admin. -- **password** (*Optional*): The password of the Sharp Aquos TV. Defaults to password. -- **name** (*Optional*): The name you would like to give to the Sharp Aquos TV. -- **power_on_enabled** (*Optional*): If you want to be able to turn on your TV. Defaults to False.

When you set **power_on_enabled** as True, you have to turn on your TV on the first time with the remote. diff --git a/source/_components/media_player.bluesound.markdown b/source/_components/media_player.bluesound.markdown index fd9ac670de7..aadb326f42c 100644 --- a/source/_components/media_player.bluesound.markdown +++ b/source/_components/media_player.bluesound.markdown @@ -27,12 +27,26 @@ media_player: - host: 192.168.1.100 ``` -Configuration variables: - -- **hosts** (*Optional*): List with your bluesound devices - - **host** (*Required*): IP-address or hostname of the player - - **name** (*Optional*): The name of the device used in the frontend - - **port** (*Optional*): Port of communication to the device (default: 11000) +{% configuration %} +hosts: + description: List with your Bluesound devices. + required: false + type: list + keys: + host: + description: The IP address or hostname of the player. + required: true + type: string + name: + description: The name of the device used in the frontend. + required: false + type: string + port: + description: The port to communicate with the device. + required: false + default: 11000 + type: integer +{% endconfiguration %} ## Advanced configuration example @@ -68,7 +82,7 @@ Remove one or more speakers from a group of speakers. If no `entity_id` is provi Sets a timer that will turn off the speaker. For each time you call this it will increase the time by one step. The steps are (in minutes): 15, 30, 45, 60, 90, 0. If you increase an ongoing timer of for example 13 minutes, it will increase it to 15. If the timer is set to 90, it will remove the time (hence the 0). - + | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | | `entity_id` | no | String or list of `entity_id`s that will have their timers set. @@ -76,7 +90,7 @@ If you increase an ongoing timer of for example 13 minutes, it will increase it ### {% linkable_title Service `bluesound_clear_sleep_timer` %} Clear the sleep timer on a speaker, if one is set. - + | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | | `entity_id` | no | String or list of `entity_id`s that will have their timers cleared. diff --git a/source/_components/media_player.braviatv.markdown b/source/_components/media_player.braviatv.markdown index cf6bd2a4172..e8bb5bf6e4d 100644 --- a/source/_components/media_player.braviatv.markdown +++ b/source/_components/media_player.braviatv.markdown @@ -15,7 +15,7 @@ ha_iot_class: "Local Polling" The `braviatv` platform allows you to control a [Sony Bravia TV](http://www.sony.com). -Almost all [Sony Bravia TV 2013 and newer](http://info.tvsideview.sony.net/en_ww/home_device.html#bravia) are supported. A more generic method for older TVs connected to a Raspberry Pi with HDMI-CEC is explained further below. +Almost all [Sony Bravia TV 2013 and newer](http://info.tvsideview.sony.net/en_ww/home_device.html#bravia) are supported. A more generic method for older TVs connected to a Raspberry Pi with HDMI-CEC is explained further below. You will need to configure your TV to allow the Home Assistant for remote usage. To do that, ensure that your TV is turned on. Open the configuration popup on Home Assistant and enter a random PIN (for example 0000). After that, the TV will show you a PIN and Home Assistant will allow you to re-enter that PIN. Enter the PIN shown on your TV and Home Assistant will be able to control your Sony Bravia TV. @@ -28,10 +28,17 @@ media_player: host: 192.168.0.10 ``` -Configuration variables: - -- **host** (*Required*): The IP of the Sony Bravia TV, eg. 192.168.0.10 -- **name** (*Optional*): The name to use on the frontend. +{% configuration %} +host: + description: The IP of the Sony Bravia TV, e.g., 192.168.0.10 + required: true + type: string +name: + description: The name to use on the frontend. + required: false + default: Sony Bravia TV + type: string +{% endconfiguration %} You are also able to configure the TV manually by placing a `bravia.conf` file in your [configuration directory](/docs/configuration/) with the following information - please update the details to match your setup: @@ -58,7 +65,7 @@ switch: value_template: {% raw %}'{{ value == "power status: on" }}{% endraw %}' ``` -Using `cec-client` is a great method to turn your TV off/on, however the trade off is if you're using Kodi, it will no longer be able to control your TV using the TV Remote. +Using `cec-client` is a great method to turn your TV off/on, however the trade off is if you're using Kodi, it will no longer be able to control your TV using the TV Remote. This is because only one process can control the CEC functionality within the Raspberry Pi at a time and running the above commands terminates the functionality inside libCEC within Kodi. Kodi must be restarted for TV remove functionality to work again. diff --git a/source/_components/media_player.channels.markdown b/source/_components/media_player.channels.markdown index 12138976e26..98d7f60b9a8 100644 --- a/source/_components/media_player.channels.markdown +++ b/source/_components/media_player.channels.markdown @@ -28,11 +28,22 @@ media_player: host: 192.168.1.50 ``` -Configuration variables: - -- **host** (*Required*): The IP of the device running Channels, e.g., 192.168.1.50 -- **port** (*Optional*): The port where Channels is accessible, defaults to 57000. -- **name** (*Optional*): The name of the Channels instance in Home Assistant, eg. Family Room Channels. Defaults to Channels. +{% configuration %} +host: + description: The IP address of the device running Channels, e.g., 192.168.1.50. + required: true + type: string +port: + description: The port where Channels is accessible. + required: false + default: 57000 + type: integer +name: + description: The name of the Channels instance in Home Assistant, e.g., Family Room Channels. + required: false + default: Channels + type: string +{% endconfiguration %} ### {% linkable_title Service `channels_seek_forward` %} diff --git a/source/_components/media_player.clementine.markdown b/source/_components/media_player.clementine.markdown index 781ac147a56..add0d5b2a80 100644 --- a/source/_components/media_player.clementine.markdown +++ b/source/_components/media_player.clementine.markdown @@ -25,12 +25,26 @@ media_player: host: 192.168.0.20 ``` -Configuration variables: - -- **host** (*Required*): The IP address of the Clementine Player (eg. 192.168.0.20). -- **port** (*Optional*): The remote control port (default is: 5500). -- **access_token** (*Optional*): The authorization code needed to connect. -- **name** (*Optional*): The name you would like to give to the Clementine player. The default is "Clementine Remote". +{% configuration %} +host: + description: The IP address of the Clementine Player e.g., 192.168.0.20. + required: true + type: string +port: + description: The remote control port. + required: false + default: 5500 + type: integer +access_token: + description: The authorization code needed to connect. + required: false + type: integer +name: + description: The name you would like to give to the Clementine player. + required: false + default: Clementine Remote + type: string +{% endconfiguration %} Remember that Clementine must be configured to accept connections through its network remote control protocol. diff --git a/source/_components/media_player.itunes.markdown b/source/_components/media_player.itunes.markdown index cced6a1953a..717307250a2 100644 --- a/source/_components/media_player.itunes.markdown +++ b/source/_components/media_player.itunes.markdown @@ -14,9 +14,11 @@ ha_iot_class: "Local Polling" --- -The iTunes platform allows you to control [iTunes](http://apple.com/itunes/) from Home Assistant. It uses a 3rd party server that you run on your Mac called [itunes-api](https://github.com/maddox/itunes-api). Play, pause, or skip songs remotely on iTunes running on your Mac. +The `itunes` media player platform allows you to control [iTunes](http://apple.com/itunes/) from Home Assistant. It uses a 3rd party server that you run on your Mac called [itunes-api](https://github.com/maddox/itunes-api). Play, pause or skip songs remotely on iTunes running on your Mac. -In addition to controlling iTunes, your available AirPlay endpoints will be added as media players as well. You can then individually address them and turn them on, turn them off, or adjust their volume. +In addition to controlling iTunes, your available AirPlay endpoints will be added as media players as well. You can then individually address them and turn them on, turn them off or adjust their volume. + +## {% linkable_title Configuration %} To add iTunes to your installation, add the following to your `configuration.yaml` file: @@ -27,7 +29,14 @@ media_player: host: 192.168.1.50 ``` -Configuration variables: - -- **host** (*Required*): The IP of the itunes-api API, eg. 192.168.1.50 -- **port** (*Optional*): The port where itunes-api is accessible, eg. 8181. +{% configuration %} +host: + description: The IP of the itunes-api API, e.g., 192.168.1.50. + required: true + type: string +port: + description: The port where itunes-api is accessible, e.g., 8181. + required: false + default: 8181 + type: integer +{% endconfiguration %} diff --git a/source/_components/media_player.liveboxplaytv.markdown b/source/_components/media_player.liveboxplaytv.markdown index ce474e0c9f7..368ae381777 100644 --- a/source/_components/media_player.liveboxplaytv.markdown +++ b/source/_components/media_player.liveboxplaytv.markdown @@ -16,6 +16,8 @@ ha_iot_class: "Local Polling" The `liveboxplaytv` platform allows you to control [Orange Livebox Play TV appliances](https://boutique.orange.fr/internet/decodeur-tv-livebox). +## {% linkable_title Configuration %} + To add an Orange Livebox Play TV to your installation, add the following to your `configuration.yaml` file: ```yaml @@ -25,11 +27,22 @@ media_player: host: 192.168.1.3 ``` -Configuration variables: - -- **host** (*Required*): The IP or hostname of the Orange Livebox Play TV appliance. -- **name** (*Optional*): The name to use in the frontend. Defaults to `Livebox Play TV`. -- **port** (*Optional*): The port on which the Livebox is listening on. Defaults to 8080. +{% configuration %} +host: + description: The IP address or hostname of the Orange Livebox Play TV appliance. + required: true + type: string +name: + description: The name to use in the frontend. + required: false + default: "`Livebox Play TV`" + type: string +port: + description: The port on which the Livebox is listening on. + required: false + default: 8080 + type: integer +{% endconfiguration %} ## {% linkable_title Full configuration %} diff --git a/source/_components/media_player.markdown b/source/_components/media_player.markdown index 46ead6f4af8..23c397673c4 100644 --- a/source/_components/media_player.markdown +++ b/source/_components/media_player.markdown @@ -56,7 +56,7 @@ Available services: `turn_on`, `turn_off`, `toggle`, `volume_up`, `volume_down`, | `entity_id` | yes | Target a specific media player. Defaults to all. | | `source` | no | Name of the source to switch to. Platform dependent. | -#### {% linkable_title Service `media_player/select_sound_mode` %} +#### {% linkable_title Service `media_player.select_sound_mode` %} Currently only supported on [Denon AVR](/components/media_player.denonavr/) and [Songpal](/components/media_player.songpal/). @@ -65,7 +65,7 @@ Currently only supported on [Denon AVR](/components/media_player.denonavr/) and | `entity_id` | no | Target a specific media player. For example `media_player.marantz`| | `sound_mode` | no | Name of the sound mode to switch to. Platform dependent.| -#### {% linkable_title Service `media_player/shuffle_set` %} +#### {% linkable_title Service `media_player.shuffle_set` %} Currently only supported on [Spotify](/components/media_player.spotify/), [MPD](/components/media_player.mpd/), [Kodi](/components/media_player.kodi/), [Squeezebox](/components/media_player.squeezebox/) and [Universal](/components/media_player.universal/). diff --git a/source/_components/media_player.vizio.markdown b/source/_components/media_player.vizio.markdown index 8345c3b1e80..e826693d6c3 100644 --- a/source/_components/media_player.vizio.markdown +++ b/source/_components/media_player.vizio.markdown @@ -73,11 +73,21 @@ media_player: access_token: AUTH_TOKEN ``` -Configuration variables: - -- **host** (*Required*): IP address of your TV. -- **access_token** (*Required*): Authentication token you received in the last step of the pairing process. -- **suppress_warning** (*Optional*): Set to `true` to disable self-signed certificate warnings. +{% configuration %} +host: + description: IP address of your TV. + required: true + type: string +access_token: + description: Authentication token you received in the last step of the pairing process. + required: true + type: string +suppress_warning: + description: Set to `true` to disable self-signed certificate warnings. + required: false + default: false + type: string +{% endconfiguration %} ## Notes and limitations diff --git a/source/_components/nest.markdown b/source/_components/nest.markdown index 9a22aeba843..e935935d043 100644 --- a/source/_components/nest.markdown +++ b/source/_components/nest.markdown @@ -55,11 +55,20 @@ nest: - Primary ``` -Configuration variables: - -- **client_id** (*Required*): Your Nest developer client ID. -- **client_secret** (*Required*): Your Nest developer client secret. -- **structure** (*Optional*): The structure or structures you would like to include devices from. If not specified, this will include all structures in your Nest account. +{% configuration %} +client_id: + description: Your Nest developer client ID. + required: true + type: string +client_secret: + description: Your Nest developer client secret. + required: true + type: string +structure: + description: The structure or structures you would like to include devices from. If not specified, this will include all structures in your Nest account. + required: false + type: list +{% endconfiguration %} ### {% linkable_title Services %} diff --git a/source/_components/notify.discord.markdown b/source/_components/notify.discord.markdown index 16c82bbfc1f..5164e65a6c9 100644 --- a/source/_components/notify.discord.markdown +++ b/source/_components/notify.discord.markdown @@ -23,15 +23,21 @@ To use Discord notifications, add the following to your `configuration.yaml` fil ```yaml # Example configuration.yaml entry notify: - - name: NOTIFIER_NAME - platform: discord - token: A1aB2b.C3cD4d-E5eF6f + - platform: discord + token: YOUR_DISCORD_BOT_TOKEN ``` -Configuration variables: - -- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. -- **token** (*Required*): Your bot's token. +{% configuration %} +name: + description: The notifier will bind to the service `notify.NAME`. + required: false + type: string + default: notify +token: + description: Your bot's token. + required: true + type: string +{% endconfiguration %} ### {% linkable_title Setting up the bot %} diff --git a/source/_components/notify.telegram.markdown b/source/_components/notify.telegram.markdown index 934965200ee..861fafec72a 100644 --- a/source/_components/notify.telegram.markdown +++ b/source/_components/notify.telegram.markdown @@ -15,6 +15,8 @@ ha_release: 0.7.5 The `telegram` platform uses [Telegram](https://web.telegram.org) to deliver notifications from Home Assistant to your Android device, your Windows phone, or your iOS device. +## {% linkable_title Setup %} + The requirements are: - You need a [Telegram bot](https://core.telegram.org/bots). Please follow those [instructions](https://core.telegram.org/bots#6-botfather) to create one and get the token for your bot. Keep in mind that bots are not allowed to contact users. You need to make the first contact with your user. Meaning that you need to send a message to the bot from your user. @@ -65,6 +67,12 @@ $ python3 123456789 ``` +

+If you want to add new chat IDs then you will need to disable the active configuration to actually see the result with the IDs, otherwise you may only get empty results array. +

+ +## {% linkable_title Configuration %} + To enable Telegram notifications in your installation, add the following to your `configuration.yaml` file: ```yaml diff --git a/source/_components/notify.tibber.markdown b/source/_components/notify.tibber.markdown index 48c9472d5a9..2b903e835f2 100644 --- a/source/_components/notify.tibber.markdown +++ b/source/_components/notify.tibber.markdown @@ -1,6 +1,6 @@ --- layout: page -title: "Tibber" +title: "Tibber Notification" description: "Instructions on how to integrate Tibber within Home Assistant." date: 2015-10-04 16:34 sidebar: true @@ -14,13 +14,11 @@ ha_qa_scale: silver ha_iot_class: "Cloud Polling" --- -The requirement is that you have setup [Tibber component](/components/tibber/). +The requirement is that you have setup the [`tibber` component](/components/tibber/). +## {% linkable_title Usage %} -### {% linkable_title Usage %} - -Tibber can send a notification by calling the notify service [as described here](/components/notify/). It will send a notification to all devices registered in the Tibber account. - +Tibber can send a notification by calling the [`notify` service](/components/notify/). It will send a notification to all devices registered in the Tibber account. To use notifications, please see the [getting started with automation page](/getting-started/automation/). diff --git a/source/_components/scene.deconz.markdown b/source/_components/scene.deconz.markdown index 3509f033c83..9c5038c3485 100644 --- a/source/_components/scene.deconz.markdown +++ b/source/_components/scene.deconz.markdown @@ -1,6 +1,6 @@ --- layout: page -title: "deCONZ scenes" +title: "deCONZ Scenes" description: "Instructions on how to integrate deCONZ scenes into Home Assistant." date: 2017-11-19 20:00 sidebar: true @@ -15,4 +15,4 @@ ha_iot_class: "Local Push" See the [deCONZ main component](/components/deconz/) for configuration instructions. -The `entity_id` name will be `scene.group_scene_name`, where `group` is which group the scene belongs to and the name of the scene, both group and name are defined in deCONZ. \ No newline at end of file +The `entity_id` name will be `scene.group_scene_name`, where `group` is which group the scene belongs to and the name of the scene, both group and name are defined in deCONZ. diff --git a/source/_components/sensor.airvisual.markdown b/source/_components/sensor.airvisual.markdown index a78e18c417c..9a270ac2fee 100644 --- a/source/_components/sensor.airvisual.markdown +++ b/source/_components/sensor.airvisual.markdown @@ -21,26 +21,14 @@ This platform requires an AirVisual API key, which can be obtained [here](https: The "Community" API key is limited to 10,000 calls per month. In order to leave a buffer, the `airvisual` platform queries the API every 10 minutes by default. Modification of this (via the `scan_interval` key) to a too-low value may result in your API key being deactivated.

-## {% linkable_title Configuration via Latitude/Longitude %} +## {% linkable_title Configuration %} To enable the platform and gather data via latitude/longitude, add the following lines to your `configuration.yaml` file: ```yaml sensor: - platform: airvisual - api_key: abc123 - monitored_conditions: - - us - - cn - show_on_map: false - scan_interval: 30 - # Configure by latitude/longitude: - latitude: 42.81212 - longitude: 108.12422 - # Or configure by location: - city: Los Angeles - state: California - country: USA + api_key: YOUR_AIRVISUAL_API_KEY ``` {% configuration %} @@ -87,6 +75,37 @@ country: type: string {% endconfiguration %} +## {% linkable_title Example Configurations %} + +Configuration using custom Latitude and Longitude: + +```yaml +sensor: + - platform: airvisual + api_key: YOUR_AIRVISUAL_API_KEY + monitored_conditions: + - cn + show_on_map: false + scan_interval: 30 + latitude: 42.81212 + longitude: 108.12422 +``` + +Configuration using city, state, and country: + +```yaml +sensor: + - platform: airvisual + api_key: YOUR_AIRVISUAL_API_KEY + monitored_conditions: + - us + show_on_map: false + scan_interval: 30 + city: Los Angeles + state: California + country: USA +``` + ## {% linkable_title Determining the City/State/Country %} To easily determine the proper values for a particular location, use the [AirVisual region directory](https://airvisual.com/world). Once you browse to the particular city you want, take note of the breadcrumb title, which is of the form `country > state/region > city`. Use this information to fill out `configuration.yaml`. diff --git a/source/_components/sensor.api_streams.markdown b/source/_components/sensor.api_streams.markdown index 0a5e744e645..ead045f7237 100644 --- a/source/_components/sensor.api_streams.markdown +++ b/source/_components/sensor.api_streams.markdown @@ -1,7 +1,7 @@ --- layout: page -title: "API Stream Sensor" -description: "Instructions on how to count clients using the API stream within Home Assistant." +title: "API Streams Sensor" +description: "Instructions on how to count clients using the API streams within Home Assistant." date: 2016-11-19 10:00 sidebar: true comments: false @@ -12,9 +12,10 @@ ha_category: Utility ha_release: 0.33 ha_iot_class: "Local Push" ha_qa_scale: internal +redirect_from: /components/sensor.api_stream/ --- -The `api_streams` sensor platform shows how many clients are connected to the stream API +The `api_streams` sensor platform shows how many clients are connected to the stream API. ## {% linkable_title Configuration %} diff --git a/source/_components/sensor.bloomsky.markdown b/source/_components/sensor.bloomsky.markdown index d2e1ca31a50..1c3ef6acfa7 100644 --- a/source/_components/sensor.bloomsky.markdown +++ b/source/_components/sensor.bloomsky.markdown @@ -33,15 +33,24 @@ sensor: - Voltage ``` -Configuration variables: - -- **monitored_conditions** array (*Required*): The sensors that you wish to monitor on all of your devices. Select from these options: - - Humidity - - Luminance - - Pressure - - Temperature - - UVIndex - - Voltage - +{% configuration %} +monitored_conditions: + description: "The sensors that you wish to monitor on all of your devices. Select from these options:" + required: true + type: list + keys: + humidity: + description: Humidity + luminance: + description: Luminance + pressure: + description: Pressure + temperature: + description: Temperature + uvindex: + description: UVIndex + voltage: + description: Voltage +{% endconfiguration %} More conditions are available using the [BloomSky binary sensor](/components/binary_sensor.bloomsky) component. diff --git a/source/_components/sensor.google_travel_time.markdown b/source/_components/sensor.google_travel_time.markdown index 044dd34c9ea..9b7e8046248 100644 --- a/source/_components/sensor.google_travel_time.markdown +++ b/source/_components/sensor.google_travel_time.markdown @@ -115,5 +115,6 @@ You can also use the `sensor.google_travel_sensor_update` service to update the - fri action: - service: sensor.google_travel_sensor_update - entity_id: sensor.morning_commute + data: + entity_id: sensor.morning_commute ``` diff --git a/source/_components/sensor.google_wifi.markdown b/source/_components/sensor.google_wifi.markdown index 303c89ed0a6..1924ec2f29f 100644 --- a/source/_components/sensor.google_wifi.markdown +++ b/source/_components/sensor.google_wifi.markdown @@ -16,7 +16,7 @@ ha_release: "0.50" The `google_wifi` sensor platform is displaying the exposed status of a [Google Wifi](https://madeby.google.com/wifi/) (or OnHub) router. -The sensor is able to report network status, up-time, current IP address, and firmware versions. +The sensor is able to report network status, up-time, current IP address and firmware versions. To enable this sensor, add the following lines to your `configuration.yaml` file: @@ -26,15 +26,32 @@ sensor: - platform: google_wifi ``` -Configuration variables: - -- **host** (*Optional*): The address to retrieve status from the router. Defaults to `testwifi.here` (other options include `onhub.here` and your router's IP such as `192.168.86.1`). -- **name** (*Optional*): Name to give the Google Wifi sensor. Defaults to `google_wifi`. -- **monitored_conditions** array (*Optional*): Defines the data to monitor as sensors. Defaults to all of the listed options below. - - **current_version**: Current firmware version of the router. - - **new_version**: Latest available firmware version. If router is up-to-date, this value defaults to `Latest`. - - **uptime**: Days since router has been turned on. - - **last_restart**: Date of last restart. Format is `YYYY-MM-DD HH:mm:SS`. - - **local_ip**: Local public IP address. - - **status**: Reports whether the router is or is not connected to the internet. - +{% configuration %} +host: + description: The address to retrieve status from the router. Valid options are `testwifi.here`, in some cases `onhub.here` or the router's IP address such as 192.168.86.1. + required: false + default: testwifi.here + type: string +name: + description: Name to give the Google Wifi sensor. + required: false + default: google_wifi + type: string +monitored_conditions: + description: Defines the data to monitor as sensors. Defaults to all of the listed options below. + required: false + type: map + keys: + current_version: + description: Current firmware version of the router. + new_version: + description: Latest available firmware version. If router is up-to-date, this value shows to `Latest`. + uptime: + description: Days since router has been turned on. + last_restart: + description: Date of last restart. Format is `YYYY-MM-DD HH:mm:SS`. + local_ip: + description: Local public IP address. + status: + description: Reports whether the router is or is not connected to the internet. +{% endconfiguration %} diff --git a/source/_components/sensor.nest.markdown b/source/_components/sensor.nest.markdown index 99d40e63016..801198eb46b 100644 --- a/source/_components/sensor.nest.markdown +++ b/source/_components/sensor.nest.markdown @@ -13,7 +13,6 @@ ha_release: pre 0.7 ha_iot_class: "Cloud Push" --- - The `nest` sensor platform lets you monitor sensors connected to your [Nest](https://nest.com) devices.

@@ -23,6 +22,7 @@ You must have the [Nest component](/components/nest/) configured to use these se ## {% linkable_title Configuration %} To enable sensors and customize which sensors are setup, you can extend the [Nest component](/components/nest/) configuration in your `configuration.yaml` file with the following settings: + ```yaml # Example configuration.yaml entry nest: @@ -34,9 +34,12 @@ nest: By default all sensors for your available Nest devices will be monitored. Leave `monitored_conditions` blank to disable all sensors for the [Nest component](/components/nest/). -Configuration variables: - -- **monitored_conditions** array (*Optional*): States to monitor. +{% configuration %} +monitored_conditions: + description: States to monitor. + required: false + type: list +{% endconfiguration %} The following conditions are available by device: diff --git a/source/_components/sensor.nest_weather.markdown b/source/_components/sensor.nest_weather.markdown index 971e72cb162..a8ab4c4c460 100644 --- a/source/_components/sensor.nest_weather.markdown +++ b/source/_components/sensor.nest_weather.markdown @@ -16,7 +16,6 @@ ha_iot_class: "Cloud Polling" **This platform is currently not available. It's possible that `nest_weather` will be removed in the future.**

- The `nest` weather sensor platform let you monitor current weather conditions based on the location of your [Nest](https://nest.com) thermostat.

@@ -32,12 +31,20 @@ sensor: - 'weather_temperature' ``` -Configuration variables: - -- **monitored_conditions** array (*Required*): States to monitor. - - 'weather_temperature' - - 'weather_humidity' - - 'weather_condition' - - 'wind_speed' - - 'wind_direction' - +{% configuration %} +monitored_conditions: + description: States to monitor. + required: true + type: list + keys: + weather_temperature: + description: The current temperture + weather_humidity: + description: The current humidity + weather_condition: + description: The weather conditions + wind_speed: + description: The wind speed + wind_direction: + description: The wind direction +{% endconfiguration %} diff --git a/source/_components/sensor.plex.markdown b/source/_components/sensor.plex.markdown index 34781716237..30646976192 100644 --- a/source/_components/sensor.plex.markdown +++ b/source/_components/sensor.plex.markdown @@ -27,13 +27,41 @@ sensor: - platform: plex ``` -Configuration variables: - -- **host** (*Optional*): The IP address of your Plex server. Defaults to `localhost`. -- **port** (*Optional*): The port of your Plex Server. Defaults to `32400`. -- **name** (*Optional*): Name of the Plex server. Defaults to "Plex". -- **username** (*Optional*): The username for the remote Plex server. -- **password** (*Optional*): The password for your given account on the remote Plex server. -- **server** (*Optional*): The name of your remote Plex server. -- **token** (*Optional*): X-Plex-Token of your remote Plex server. -- **ssl** (*Optional*): Use HTTPS to connect to Plex server, *NOTE* host *must not* be an IP when this option is enabled. Defaults to "False" +{% configuration %} +host: + description: The IP address of your Plex server. + required: false + default: localhost + type: string +port: + description: The port of your Plex Server. + required: false + default: 32400 + type: integer +name: + description: Name of the Plex server. + required: false + default: Plex + type: string +username: + description: The username for the remote Plex server. + required: false + type: string +password: + description: The password for your given account on the remote Plex server. + required: false + type: string +server: + description: The name of your remote Plex server. + required: false + type: string +token: + description: X-Plex-Token of your remote Plex server. + required: false + type: string +ssl: + description: Use HTTPS to connect to Plex server, *NOTE* host *must not* be an IP when this option is enabled. + required: false + default: false + type: boolean +{% endconfiguration %} diff --git a/source/_components/sensor.tibber.markdown b/source/_components/sensor.tibber.markdown index 5fb39f7999b..2daf9e4a8b1 100644 --- a/source/_components/sensor.tibber.markdown +++ b/source/_components/sensor.tibber.markdown @@ -1,6 +1,6 @@ --- layout: page -title: "Tibber" +title: "Tibber Sensor" description: "Instructions on how to integrate Tibber within Home Assistant." date: 2017-10-03 17:00 sidebar: true @@ -17,8 +17,7 @@ ha_iot_class: "Cloud Polling" The `tibber` sensor provides the current electricity price if you are a [Tibber](https://tibber.com/) customer. If you have a Tibber Pulse it will also show the electricity consumption in real time. -The requirement is that you have setup [Tibber component](/components/tibber/). - +The requirement is that you have setup the [`tibber` component](/components/tibber/). ## {% linkable_title Examples %} diff --git a/source/_components/smappee.markdown b/source/_components/smappee.markdown index 846fd2e33ef..79f6f32d8dc 100644 --- a/source/_components/smappee.markdown +++ b/source/_components/smappee.markdown @@ -59,11 +59,11 @@ host_password: required: false type: string client_id: - description: Your Smappee API client_id. + description: Your Smappee API client ID. required: false type: string client_secret: - description: Your Smappee API client_secret. + description: Your Smappee API client secret. required: false type: string username: diff --git a/source/_components/switch.orvibo.markdown b/source/_components/switch.orvibo.markdown index 656bcd4a223..fb94b023439 100644 --- a/source/_components/switch.orvibo.markdown +++ b/source/_components/switch.orvibo.markdown @@ -34,11 +34,28 @@ switch: name: "My Socket" ``` -Configuration variables: - -- **discovery** (*Optional*): Whether to discover sockets. Defaults to `true`. -- **switches** (*Optional*): - - **host** (*Required*): IP address of your socket, eg. `192.168.1.10`. - - **mac** (*Optional*): MAC address of the socket, eg "AA:BB:CC:DD:EE:FF". This is required if the socket is connected to a different subnet to the machine running Home Assistant. - - **name** (*Optional*): Your name for the socket. - +{% configuration %} +discovery: + description: Whether to discover sockets. + required: false + default: true + type: boolean +switches: + description: A list of Orvibo switches. + required: false + type: list + keys: + host: + description: "IP address of your socket, e.g., 192.168.1.10." + required: true + type: string + mac: + description: "MAC address of the socket, e.g., `AA:BB:CC:DD:EE:FF`. This is required if the socket is connected to a different subnet to the machine running Home Assistant." + required: false + type: string + name: + description: Your name for the socket. + required: false + default: Orvibo S20 Switch + type: string +{% endconfiguration %} diff --git a/source/_components/switch.pilight.markdown b/source/_components/switch.pilight.markdown index d70f748cfa5..40bdbd0a86b 100644 --- a/source/_components/switch.pilight.markdown +++ b/source/_components/switch.pilight.markdown @@ -37,14 +37,34 @@ switch: 'off': 1 ``` -Configuration variables: - -- **switches** array (*Required*): The list that contains all command switches. - - **[entry]** (*Required*): Name of the command switch. Multiple entries are possible. - - **on_code** (*Required*): The code to turn the device on. - - **off_code** (*Required*): The code to turn the device off. - - **on_code_receive** (*Optional*): If given, this command will turn the switch on if it is received by pilight. - - **off_code_receive** (*Optional*): If given, this command will turn the switch off if it is received by pilight. +{% configuration %} +switches: + description: The list that contains all command switches. + required: true + type: string + keys: + entry: + description: Name of the command switch. Multiple entries are possible. + required: true + type: list + keys: + on_code: + description: The code to turn the device on. + required: true + type: list + off_code: + description: The code to turn the device off. + required: true + type: list + on_code_receive: + description: If given, this command will turn the switch on if it is received by pilight. + required: false + type: list + off_code_receive: + description: If given, this command will turn the switch off if it is received by pilight. + required: false + type: list +{% endconfiguration %} Variables for the different codes (`on_code` and `off_code`): diff --git a/source/_components/switch.rainbird.markdown b/source/_components/switch.rainbird.markdown index 12b2f1019d4..c29241f80a8 100644 --- a/source/_components/switch.rainbird.markdown +++ b/source/_components/switch.rainbird.markdown @@ -35,11 +35,23 @@ switch: scan_interval: 10 ``` -Configuration variables: - -- **zone** (*Required*): Station zone identifier. -- **friendly_name** (*Optional*): Just a friendly name for the station. -- **trigger_time** (*Required*): The default duration to sprinkle the zone. -- **scan_interval** (*Optional*): How fast to refresh the switch. +{% configuration %} +zone: + description: Station zone identifier. + required: true + type: string +friendly_name: + description: Just a friendly name for the station. + required: false + type: string +trigger_time: + description: The default duration to sprinkle the zone. + required: true + type: integer +scan_interval: + description: How fast to refresh the switch. + required: false + type: integer +{% endconfiguration %} Please note that due to the implementation of the API within the LNK Module, there is a concurrency issue. For example, the Rain Bird app will give connection issues (like already a connection active). diff --git a/source/_components/switch.raincloud.markdown b/source/_components/switch.raincloud.markdown index 2844b924aed..a13f100e08c 100644 --- a/source/_components/switch.raincloud.markdown +++ b/source/_components/switch.raincloud.markdown @@ -13,11 +13,11 @@ ha_release: "0.55" ha_iot_class: "Cloud Polling" --- -To get your [Melnor RainCloud](https://wifiaquatimer.com) binary sensors working within Home Assistant, please follow the instructions for the general [Raincloud component](/components/raincloud). +To get your [Melnor RainCloud](https://wifiaquatimer.com) binary sensors working within Home Assistant, please follow the instructions for the general [Raincloud component](/components/raincloud/). ## {% linkable_title Configuration %} -Once you have enabled the [Raincloud component](/components/raincloud), add the following to your `configuration.yaml` file: +Once you have enabled the [Raincloud component](/components/raincloud/), add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry @@ -25,9 +25,23 @@ switch: - platform: raincloud ``` -Configuration variables: - -- **watering_minutes** (*Optional*): Value in minutes to watering your garden via frontend. Defaults to 15. The values allowed are: 5, 10, 15, 30, 45, 60. -- **monitored_conditions** array (*Optional*): Conditions to display in the frontend. If not specified, all conditions below will be enabled by default. The following conditions can be monitored. - - **auto_watering**: Toggle the watering scheduled per zone. - - **manual_watering**: Toggle manually the watering per zone. It will inherent the value in minutes specified on the RainCloud hub component. +{% configuration %} +watering_minutes: + description: "Value in minutes to watering your garden via frontend. The values allowed are: 5, 10, 15, 30, 45, 60." + required: false + default: 15 + type: integer +monitored_conditions: + description: Conditions to display in the frontend. If not specified, all conditions below will be enabled by default. + required: false + type: list + keys: + auto_watering: + description: Toggle the watering scheduled per zone. + required: false + type: boolean + manual_watering: + description: Toggle manually the watering per zone. It will inherent the value in minutes specified on the RainCloud hub component. + required: false + type: boolean +{% endconfiguration %} diff --git a/source/_components/switch.raspihats.markdown b/source/_components/switch.raspihats.markdown index c1f65847dc3..37f31ad59a4 100644 --- a/source/_components/switch.raspihats.markdown +++ b/source/_components/switch.raspihats.markdown @@ -36,17 +36,44 @@ switch: name: Light Office ``` -Configuration variables: - -- **i2c_hats** (*Optional*): Array of used I2C-HATs. - - **board** (*Required*): The board name. - - **address** (*Required*): The board I2C address, hex value. - - **channels** (*Required*): Array of used digital output channels. - - **index** (*Required*): Digital output channel index. - - **name** (*Required*): Friendly name to use for the frontend. - - **invert_logic** (*Optional*): Inverts the output logic, default is `False`. - - **initial_state** (*Optional*): Initial state, default is `None`, can also be `True` or `False`. `None` means no state is forced on the corresponding digital output when this switch is instantiated. - +{% configuration %} +i2c_hats: + description: An array of used I2C-HATs. + required: false + type: list + keys: + board: + description: The board name. + required: true + type: string + address: + description: The board I2C address as HEX value. + required: true + type: string + channels: + description: An array of used digital input channels. + required: true + type: list + keys: + index: + description: The digital input channel index. + required: true + type: integer + name: + description: The friendly name to use for the frontend. + required: true + type: string + invert_logic: + description: Inverts the input logic. + required: false + default: false + type: boolean + initial_state: + description: "The initial state, can be either `true` or `false`. `none` means no state is forced on the corresponding digital output when this switch is instantiated." + required: false + default: None + type: boolean +{% endconfiguration %} ## {% linkable_title Directions for installing smbus support on Raspberry Pi %} diff --git a/source/_components/switch.scsgate.markdown b/source/_components/switch.scsgate.markdown index 35e1f6b7f8e..1f0cdb6cf84 100644 --- a/source/_components/switch.scsgate.markdown +++ b/source/_components/switch.scsgate.markdown @@ -26,6 +26,9 @@ switch: scs_id: XXXXX ``` -Configuration variables: - -- **devices** (*Required*): A list of devices with their name to use in the frontend. +{% configuration %} +devices: + description: A list of devices with their name to use in the frontend. + required: true + type: list +{% endconfiguration %} diff --git a/source/_components/switch.telnet.markdown b/source/_components/switch.telnet.markdown index ef1345cd5bf..7a11cff4cf1 100644 --- a/source/_components/switch.telnet.markdown +++ b/source/_components/switch.telnet.markdown @@ -12,33 +12,64 @@ ha_release: 0.54 ha_iot_class: "Local Polling" --- - The `telnet` switch platform allows you to control devices with telnet commands. To enable this switch, add the following lines to your `configuration.yaml` file: +{% raw %} ```yaml # Example configuration.yaml entry switch: platform: telnet switches: projector: - resource: "host_or_ip" + resource: THE_IP_ADDRESS port: 4002 command_on: "PWR ON" command_off: "PWR OFF" command_state: "PWR?" - value_template: '{% raw %}{{ value == "PWR=01" }}{% endraw %}' + value_template: '{{ value == "PWR=01" }}' ``` +{% endraw %} -Configuration variables: - -- **switches** (*Required*): The array that contains all switches. - - **identifier** (*Required*): Name of the switch as slug. Multiple entries are possible. - - **resource** (*Required*): Host or IP of the device. - - **port** (*Optional*): Port to connect to. Default is 23 if not defined. - - **command_on** (*Required*): Command to turn device on. - - **command_off** (*Required*): Command to turn device off. - - **command_state** (*Optional*): Command to determine the state of the switch. If not defined the switch will assume successful state changes. - - **value_template** (*Optional*): The template evaluating to `true` will indicate that the switch is on. - - **name** (*Optional*): The name used to display the switch in the frontend. +{% configuration %} +switches: + description: The array that contains all switches. + required: true + type: list + keys: + identifier: + description: Name of the switch as slug. Multiple entries are possible. + required: true + type: list + keys: + resource: + description: Host name or IP address of the device. + required: true + type: string + port: + description: Port to connect to. + required: false + default: 23 + type: integer + command_on: + description: Command to turn device on. + required: true + type: string + command_off: + description: Command to turn device off. + required: true + type: string + command_state: + description: Command to determine the state of the switch. If not defined the switch will assume successful state changes. + required: false + type: string + value_template: + description: The template evaluating to `true` will indicate that the switch is on. + required: false + type: template + name: + description: The name used to display the switch in the frontend. + required: false + type: string +{% endconfiguration %} diff --git a/source/_components/tibber.markdown b/source/_components/tibber.markdown index 4148ebbb1ab..d201d5e7f34 100644 --- a/source/_components/tibber.markdown +++ b/source/_components/tibber.markdown @@ -20,16 +20,22 @@ If you have a Tibber Pulse it will also show the electricity consumption in real It also provides a notification service. +## {% linkable_title Setup %} + +Go to [developer.tibber.com/](https://developer.tibber.com/) to get your API token. + +## {% linkable_title Configuration %} + To add Tibber to your installation, add the following to your `configuration.yaml` file: ```yaml tibber: - access_token: d1007ead2dc84a2b82f0de19451c5fb22112f7ae11d19bf2bedb224a003ff74a + access_token: YOUR_ACCESS_TOKEN ``` {% configuration %} access_token: - description: Go to [developer.tibber.com/](https://developer.tibber.com/) to get your API token. + description: Your Tibber API token. required: true type: string {% endconfiguration %} diff --git a/source/_components/tts.picotts.markdown b/source/_components/tts.picotts.markdown index 49fb5823d41..29f0c748a40 100644 --- a/source/_components/tts.picotts.markdown +++ b/source/_components/tts.picotts.markdown @@ -24,10 +24,13 @@ tts: - platform: picotts ``` -Configuration variables: - -- **language** (*Optional*): The language to use. Defaults to `en-US`. -Supported languages : 'en-US', 'en-GB', 'de-DE', 'es-ES', 'fr-FR', 'it-IT' +{% configuration %} +language: + description: "The language to use. Supported languages : 'en-US', 'en-GB', 'de-DE', 'es-ES', 'fr-FR', 'it-IT'" + required: false + default: "`en-US`" + type: string +{% endconfiguration %} A full configuration sample: diff --git a/source/_components/tts.voicerss.markdown b/source/_components/tts.voicerss.markdown index 99e6b5d685c..7e660a29a54 100644 --- a/source/_components/tts.voicerss.markdown +++ b/source/_components/tts.voicerss.markdown @@ -14,25 +14,44 @@ ha_release: 0.35 The `voicerss` text-to-speech platform uses [VoiceRSS](http://www.voicerss.org/) Text-to-Speech engine to read a text with natural sounding voices. +## {% linkable_title Configuration %} + To enable text-to-speech with VoiceRSS, add the following lines to your `configuration.yaml`: ```yaml # Example configuration.yaml entry tts: - platform: voicerss - api_key: 'XXXXXXXX' + api_key: YOUR_API_KEY ``` -Configuration variables: +{% configuration %} +api_key: + description: The API Key for VoiceRSS. + required: true + type: string +language: + description: The language to use. + required: false + default: "`en-us`" + type: string +codec: + description: The audio codec. + required: false + default: mp3 + type: string +format: + description: The audio sample format. + required: false + default: 8khz_8bit_mono + type: string +{% endconfiguration %} -- **api_key** (*Required*): API Key for use this service. -- **language** (*Optional*): The language to use. Defaults to `en-us`. -- **codec** (*Optional*): Audio codec. Default is 'mp3'. -- **format** (*Optional*): Audio sample format. Default is '8khz_8bit_mono' +Check the [VoiceRSS API documentation](http://www.voicerss.org/api/documentation.aspx) for allow values. -See on api [documentation](http://www.voicerss.org/api/documentation.aspx) for allow values. +## {% linkable_title Full configuration example %} -A full configuration sample: +The configuration sample below show how a entry can look like: ```yaml # Example configuration.yaml entry diff --git a/source/_components/tts.yandextts.markdown b/source/_components/tts.yandextts.markdown index af30eacea74..3bf29219ea6 100644 --- a/source/_components/tts.yandextts.markdown +++ b/source/_components/tts.yandextts.markdown @@ -14,27 +14,54 @@ ha_release: 0.36 The `yandextts` text-to-speech platform uses [Yandex SpeechKit](https://tech.yandex.com/speechkit/) Text-to-Speech engine to read a text with natural sounding voices. +## {% linkable_title Configuration %} + To enable text-to-speech with Yandex SpeechKit, add the following lines to your `configuration.yaml`: ```yaml # Example configuration.yaml entry tts: - platform: yandextts - api_key: 'XXXXXXXX' + api_key: THE_API_KEY ``` -Configuration variables: - -- **api_key** (*Required*): API Key for use this service. -- **language** (*Optional*): The language to use. Defaults to `en-US`. Supported `en-US`, `ru-RU`, `uk-UK`, `tr-TR`. -- **codec** (*Optional*): Audio codec. Default is `mp3`. Supported us `mp3`, `wav`, `opus`. -- **voice** (*Optional*): Speaker voice. Default is `zahar`. Supported female voices are `jane`, `oksana`, `alyss`, `omazh` and male voices are `zahar` and `ermil`. -- **emotion** (*Optional*): Speaker emotional intonation. Default is `neutral`. Also supported are `good` (friendly) and `evil` (angry) -- **speed** (*Optional*): Speech speed. Default value is `1`. Highest speed is `3` and lowest `0,1` +{% configuration %} +api_key: + description: The API Key for use this service. + required: true + type: string +language: + description: "The language to use. Supported `en-US`, `ru-RU`, `uk-UK`, `tr-TR`." + required: false + default: "`en-US`" + type: string +codec: + description: "The audio codec. Supported us `mp3`, `wav`, `opus`." + required: false + default: "`mp3`" + type: string +voice: + description: "The speaker voice. Supported female voices are `jane`, `oksana`, `alyss`, `omazh` and male voices are `zahar` and `ermil`." + required: false + default: "`zahar`" + type: string +emotion: + description: "The speaker emotional intonation. Also supported are `good` (friendly) and `evil` (angry)" + required: false + default: "`neutral`" + type: string +speed: + description: The speech speed. Highest speed is `3` and lowest `0,1` + required: false + default: "`1`" + type: float +{% endconfiguration %} Please check the [API documentation](https://tech.yandex.com/speechkit/cloud/doc/guide/concepts/tts-http-request-docpage/) for details. It seems that the English version of documentation is outdated. You could request an API key [by email](https://tech.yandex.com/speechkit/cloud/) or [online](https://developer.tech.yandex.ru/). -A full configuration sample: +## {% linkable_title Full configuration example %} + +The configuration sample below show how a entry can look like: ```yaml # Example configuration.yaml entry diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 07f1194e713..b1c3fa06491 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -280,7 +280,7 @@ Just use the "Square bracket notation" to get the value. {% raw %} ```yaml -'{{ value_json["values"]["temp"] }}' +'{{ value_json['values']['temp'] }}' ``` {% endraw %} diff --git a/source/_docs/ecosystem/ios/location.markdown b/source/_docs/ecosystem/ios/location.markdown index 596a4b93a4b..694e26f4e7a 100644 --- a/source/_docs/ecosystem/ios/location.markdown +++ b/source/_docs/ecosystem/ios/location.markdown @@ -48,7 +48,7 @@ zone.home: minor: 43814 ``` -Restart Home Assistant and then the iOS app. It will begin then begin using iBeacons _instead of your location_ for enter and exit triggers around your zones. To add an iBeacon to `zone.home` add the above under your `customize`. +Restart Home Assistant and then the iOS app. It will then begin using iBeacons _instead of your location_ for enter and exit triggers around your zones. To add an iBeacon to `zone.home` add the above under your `customize`. [apple-energy-guide]: https://developer.apple.com/library/content/documentation/Performance/Conceptual/EnergyGuide-iOS/LocationBestPractices.html#//apple_ref/doc/uid/TP40015243-CH24-SW4 [apple-location-programming-guide]: https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/LocationAwarenessPG/CoreLocation/CoreLocation.html#//apple_ref/doc/uid/TP40009497-CH2-SW9 diff --git a/source/_docs/installation/macos.markdown b/source/_docs/installation/macos.markdown index 51292c43ab2..c7b2c7c22c9 100644 --- a/source/_docs/installation/macos.markdown +++ b/source/_docs/installation/macos.markdown @@ -11,7 +11,7 @@ footer: true [macOS](http://www.apple.com/macos/) is available by default on Apple computer. If you run a different operating system, please refer to the other section of the documentation. -To run Home Assistant on macOS you need to install Python first. Download Python 3.5.3 or later from https://www.python.org/downloads/mac-osx/ and follow the instructions of the installer. +To run Home Assistant on macOS you need to install Python first. Download Python 3.5.3 or later from [https://www.python.org/downloads/mac-osx/](https://www.python.org/downloads/mac-osx/) and follow the instructions of the installer. Open a terminal and install Home Assistant. diff --git a/source/_docs/scripts/conditions.markdown b/source/_docs/scripts/conditions.markdown index 1cefa9c1161..0f30a71d0ba 100644 --- a/source/_docs/scripts/conditions.markdown +++ b/source/_docs/scripts/conditions.markdown @@ -107,7 +107,7 @@ Tests if an entity is a specified state. condition: condition: state entity_id: device_tracker.paulus - state: not_home + state: 'not_home' # optional: trigger only if state was this for last X time. for: hours: 1 diff --git a/source/_lovelace/gauge.markdown b/source/_lovelace/gauge.markdown index a9e5d80e0f0..605b4b18489 100644 --- a/source/_lovelace/gauge.markdown +++ b/source/_lovelace/gauge.markdown @@ -19,7 +19,7 @@ Screenshot of the gauge card. ```yaml - type: gauge - entity: sensor.cpu_usuage + entity: sensor.cpu_usage ``` {% configuration %} @@ -77,7 +77,7 @@ Title and Unit of Measurement Example: - type: gauge title: CPU Usuage unit_of_measurement: '%' - entity: sensor.cpu_usuage + entity: sensor.cpu_usage ```

@@ -91,7 +91,7 @@ Define the severity map: - type: gauge title: With Severity unit_of_measurement: '%' - entity: sensor.cpu_usuage + entity: sensor.cpu_usage severity: green: 0 yellow: 45 diff --git a/source/_posts/2018-10-12-release-80.markdown b/source/_posts/2018-10-12-release-80.markdown index 36537324d3e..0e67ff7a1ee 100644 --- a/source/_posts/2018-10-12-release-80.markdown +++ b/source/_posts/2018-10-12-release-80.markdown @@ -42,6 +42,27 @@ On the devices side, we got basic support for the new IKEA TRÅDFRI switches, Ho - Add new component fritzbox binary_sensor ([@hthiery] - [#17057]) ([fritzbox docs]) ([binary_sensor.fritzbox docs]) (new-platform) - Add a webhook automation trigger ([@balloob] - [#17246]) ([automation.webhook docs]) (beta fix) (new-platform) +## {% linkable_title Release 0.80.1 - October 15 %} + +- Fix automation editor ([@armills]) +- Fix arm/disarm calls. ([@mbrrg] - [#17381]) ([alarm_control_panel.spc docs]) +- Fix hangout.send_message requiring data key ([@quazzie] - [#17393]) ([hangouts docs]) +- Bugfix eventstream with EOF on end ([@pvizeli] - [#17465]) ([api docs]) +- Fix websocket API ([@balloob] - [#17471]) ([websocket_api docs]) + +[#17381]: https://github.com/home-assistant/home-assistant/pull/17381 +[#17393]: https://github.com/home-assistant/home-assistant/pull/17393 +[#17465]: https://github.com/home-assistant/home-assistant/pull/17465 +[#17471]: https://github.com/home-assistant/home-assistant/pull/17471 +[@balloob]: https://github.com/balloob +[@mbrrg]: https://github.com/mbrrg +[@pvizeli]: https://github.com/pvizeli +[@quazzie]: https://github.com/quazzie +[alarm_control_panel.spc docs]: /components/alarm_control_panel.spc/ +[api docs]: /components/api/ +[hangouts docs]: /components/hangouts/ +[websocket_api docs]: /components/websocket_api/ + ## {% linkable_title New Features %} - Add faucet, shower, sprinkler, valve to HomeKit ([@cdce8p] - [#17145]) ([homekit docs]) (new-feature) diff --git a/source/developers/credits.markdown b/source/developers/credits.markdown index c2e7f95aa35..b6a222c594e 100644 --- a/source/developers/credits.markdown +++ b/source/developers/credits.markdown @@ -2,7 +2,7 @@ layout: page title: "Credits" description: "Credits for the developers who contributed to Home Assistant." -date: 2018-09-28 20:02:13 +0000 +date: 2018-10-14 11:41:31 +0000 sidebar: true comments: false sharing: true @@ -13,7 +13,7 @@ This page contains a list of people who have contributed in one way or another t ### {% linkable_title Author %} -- [Paulus Schoutsen (@balloob)](https://github.com/balloob "7770 total commits to the home-assistant organization, 4347 commits to home-assistant, 1619 commits to home-assistant.io, 1080 commits to home-assistant-polymer, 237 commits to home-assistant-js, 132 commits to developers.home-assistant, 127 commits to netdisco, 94 commits to home-assistant-js-websocket, 40 commits to hass-release, 17 commits to LabelBot, 15 commits to home-assistant-assets, 11 commits to hassio, 9 commits to hbmqtt-auth-home-assistant, 8 commits to example-custom-config, 7 commits to micropython-home-assistant, 6 commits to custom-panel-starter-kit-react, 4 commits to ui-schema, 3 commits to hassio-addons, 3 commits to hassio-build, 2 commits to hassio-addons-example, 2 commits to issue-bot, 2 commits to home-assistant-iOS, 2 commits to lambda-home-assistant-github, 1 commit to warrant, 1 commit to home-assistant-notebooks, 1 commit to architecture") +- [Paulus Schoutsen (@balloob)](https://github.com/balloob "7886 total commits to the home-assistant organization, 4417 commits to home-assistant, 1641 commits to home-assistant.io, 1102 commits to home-assistant-polymer, 237 commits to home-assistant-js, 134 commits to developers.home-assistant, 127 commits to netdisco, 94 commits to home-assistant-js-websocket, 40 commits to hass-release, 17 commits to LabelBot, 15 commits to home-assistant-assets, 11 commits to hassio, 9 commits to hbmqtt-auth-home-assistant, 8 commits to example-custom-config, 7 commits to micropython-home-assistant, 6 commits to custom-panel-starter-kit-react, 4 commits to ui-schema, 3 commits to hassio-addons, 3 commits to hassio-build, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-iOS, 2 commits to issue-bot, 2 commits to hassio-addons-example, 1 commit to home-assistant-notebooks, 1 commit to warrant, 1 commit to architecture") ### {% linkable_title Contributors %} @@ -21,13 +21,15 @@ This page contains a list of people who have contributed in one way or another t - [7even (@hwikene)](https://github.com/hwikene "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [a-andre (@a-andre)](https://github.com/a-andre "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [Aaron Bach (@bachya)](https://github.com/bachya "84 total commits to the home-assistant organization, 59 commits to home-assistant, 25 commits to home-assistant.io") +- [Aaron Bach (@bachya)](https://github.com/bachya "89 total commits to the home-assistant organization, 63 commits to home-assistant, 26 commits to home-assistant.io") - [Aaron Linville (@linville)](https://github.com/linville "2 total commits to the home-assistant organization, 2 commits to appdaemon") -- [Abílio Costa (@abmantis)](https://github.com/abmantis "27 total commits to the home-assistant organization, 15 commits to home-assistant, 8 commits to home-assistant.io, 2 commits to home-assistant-polymer, 1 commit to home-assistant-js-websocket, 1 commit to netdisco") +- [Abílio Costa (@abmantis)](https://github.com/abmantis "28 total commits to the home-assistant organization, 16 commits to home-assistant, 8 commits to home-assistant.io, 2 commits to home-assistant-polymer, 1 commit to netdisco, 1 commit to home-assistant-js-websocket") +- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Adam Baxter (@voltagex)](https://github.com/voltagex "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Adam Cooper (@GenericStudent)](https://github.com/GenericStudent "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.io") - [Adam Dullage (@Dullage)](https://github.com/Dullage "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Adam Mills (@armills)](https://github.com/armills "332 total commits to the home-assistant organization, 174 commits to home-assistant, 93 commits to home-assistant-polymer, 60 commits to home-assistant.io, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant, 1 commit to developers.home-assistant") +- [Adam Mills (@armills)](https://github.com/armills "335 total commits to the home-assistant organization, 175 commits to home-assistant, 95 commits to home-assistant-polymer, 60 commits to home-assistant.io, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant, 1 commit to developers.home-assistant") +- [adipose (@adipose)](https://github.com/adipose "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [Adrian Popa (@mad-ady)](https://github.com/mad-ady "5 total commits to the home-assistant organization, 4 commits to appdaemon, 1 commit to home-assistant-polymer") - [Adrien Ball (@adrienball)](https://github.com/adrienball "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the home-assistant organization, 2 commits to home-assistant") @@ -36,10 +38,8 @@ This page contains a list of people who have contributed in one way or another t - [akloeckner (@akloeckner)](https://github.com/akloeckner "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Alan Bowman (@alanbowman)](https://github.com/alanbowman "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Alan Fischer (@alanfischer)](https://github.com/alanfischer "21 total commits to the home-assistant organization, 17 commits to home-assistant, 4 commits to home-assistant.io") -- [Alan Tse (@alandtse)](https://github.com/alandtse "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.io") -- [Alasdair Nicol (@alasdairnicol)](https://github.com/alasdairnicol "2 total commits to the home-assistant organization, 2 commits to home-assistant.io") -- [Albatross (@DyingAlbatross)](https://github.com/DyingAlbatross "2 total commits to the home-assistant organization, 2 commits to home-assistant.io") -- [Albert Lee (@trisk)](https://github.com/trisk "20 total commits to the home-assistant organization, 12 commits to home-assistant, 8 commits to home-assistant.io") +- [Alan Tse (@alandtse)](https://github.com/alandtse "2 total commits to the home-assistant organization, 2 commits to home-assistant") +- [Albert Lee (@trisk)](https://github.com/trisk "18 total commits to the home-assistant organization, 12 commits to home-assistant, 6 commits to home-assistant.io") - [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Alessandro Staniscia (@Odyno)](https://github.com/Odyno "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") @@ -53,9 +53,10 @@ This page contains a list of people who have contributed in one way or another t - [Alexis Iglauer (@ax42)](https://github.com/ax42 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Alfie Day (@Azelphur)](https://github.com/Azelphur "12 total commits to the home-assistant organization, 12 commits to home-assistant") - [Aliaksandr (@minchik)](https://github.com/minchik "7 total commits to the home-assistant organization, 3 commits to home-assistant.io, 2 commits to appdaemon, 2 commits to home-assistant") -- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "148 total commits to the home-assistant organization, 83 commits to home-assistant.io, 53 commits to home-assistant, 7 commits to home-assistant-polymer, 3 commits to developers.home-assistant, 1 commit to pi-gen, 1 commit to hassio-addons") +- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "154 total commits to the home-assistant organization, 87 commits to home-assistant.io, 55 commits to home-assistant, 7 commits to home-assistant-polymer, 3 commits to developers.home-assistant, 1 commit to hassio-addons, 1 commit to pi-gen") +- [Amir Hanan (@Amir974)](https://github.com/Amir974 "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") - [amorsillo (@AndrewMorsillo)](https://github.com/AndrewMorsillo "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") -- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "258 total commits to the home-assistant organization, 212 commits to home-assistant, 44 commits to home-assistant.io, 2 commits to home-assistant-polymer") +- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "269 total commits to the home-assistant organization, 221 commits to home-assistant, 45 commits to home-assistant.io, 3 commits to home-assistant-polymer") - [andig (@andig)](https://github.com/andig "2 total commits to the home-assistant organization, 2 commits to pi-gen") - [Andrea Campi (@andreacampi)](https://github.com/andreacampi "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Andreas Björshammar (@abjorshammar)](https://github.com/abjorshammar "2 total commits to the home-assistant organization, 2 commits to home-assistant") @@ -124,34 +125,31 @@ This page contains a list of people who have contributed in one way or another t - [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant-polymer") - [Björn Orri (@bjornorri)](https://github.com/bjornorri "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS") - [Björn Ramberg (@bjorne)](https://github.com/bjorne "1 total commits to the home-assistant organization, 1 commit to hassio-build") -- [Blake Blackshear (@blakeblackshear)](https://github.com/blakeblackshear "2 total commits to the home-assistant organization, 2 commits to home-assistant") +- [Blake Blackshear (@blakeblackshear)](https://github.com/blakeblackshear "9 total commits to the home-assistant organization, 7 commits to home-assistant.io, 2 commits to home-assistant") - [Bob Anderson (@rwa)](https://github.com/rwa "11 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.io") -- [Bob Clough (@thinkl33t)](https://github.com/thinkl33t "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Bob Igo (@Human)](https://github.com/Human "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Boced66 (@boced66)](https://github.com/boced66 "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [bonanitech (@bonanitech)](https://github.com/bonanitech "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") - [boojew (@boojew)](https://github.com/boojew "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") -- [Boris K (@bokub)](https://github.com/bokub "12 total commits to the home-assistant organization, 6 commits to home-assistant, 6 commits to home-assistant.io") -- [borpin (@borpin)](https://github.com/borpin "1 total commits to the home-assistant organization, 1 commit to hassos") +- [Boris K (@bokub)](https://github.com/bokub "12 total commits to the home-assistant organization, 6 commits to home-assistant.io, 6 commits to home-assistant") - [bottomquark (@bottomquark)](https://github.com/bottomquark "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Boyi C (@fanthos)](https://github.com/fanthos "23 total commits to the home-assistant organization, 17 commits to home-assistant-polymer, 6 commits to home-assistant") -- [Brad Dixon (@rbdixon)](https://github.com/rbdixon "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Brad Fitzpatrick (@bradfitz)](https://github.com/bradfitz "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") -- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") -- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") +- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "2 total commits to the home-assistant organization, 2 commits to home-assistant-polymer") - [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the home-assistant organization, 484 commits to home-assistant.io") - [Brandon Weeks (@brandonweeks)](https://github.com/brandonweeks "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [brburns (@brburns)](https://github.com/brburns "2 total commits to the home-assistant organization, 2 commits to netdisco") - [Brenda Wallace (@Br3nda)](https://github.com/Br3nda "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "11 total commits to the home-assistant organization, 11 commits to home-assistant.io") -- [Brent Hughes (@bah2830)](https://github.com/bah2830 "27 total commits to the home-assistant organization, 18 commits to home-assistant, 8 commits to home-assistant.io, 1 commit to netdisco") +- [Brent Hughes (@bah2830)](https://github.com/bah2830 "28 total commits to the home-assistant organization, 18 commits to home-assistant, 9 commits to home-assistant.io, 1 commit to netdisco") - [Brent Kerlin (@bkerlin)](https://github.com/bkerlin "1 total commits to the home-assistant organization, 1 commit to hassio-build") - [Brent Saltzman (@brent20)](https://github.com/brent20 "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") - [Brian Cribbs (@cribbstechnologies)](https://github.com/cribbstechnologies "43 total commits to the home-assistant organization, 26 commits to home-assistant, 15 commits to home-assistant.io, 2 commits to home-assistant-polymer") -- [Brian Hopkins (@btotharye)](https://github.com/btotharye "6 total commits to the home-assistant organization, 4 commits to home-assistant.io, 2 commits to home-assistant") -- [Brian J King (@brianjking)](https://github.com/brianjking "14 total commits to the home-assistant organization, 14 commits to home-assistant.io") +- [Brian Hopkins (@btotharye)](https://github.com/btotharye "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") +- [Brian J King (@brianjking)](https://github.com/brianjking "16 total commits to the home-assistant organization, 16 commits to home-assistant.io") - [Brian Jinwright (@bjinwright)](https://github.com/bjinwright "159 total commits to the home-assistant organization, 159 commits to warrant") +- [Brian Orpin (@borpin)](https://github.com/borpin "1 total commits to the home-assistant organization, 1 commit to hassos") - [BRUH Automation (@bruhautomation)](https://github.com/bruhautomation "3 total commits to the home-assistant organization, 3 commits to hassbian-scripts") - [Bruno Adele (@badele)](https://github.com/badele "22 total commits to the home-assistant organization, 22 commits to home-assistant") - [Bruno Binet (@bbinet)](https://github.com/bbinet "1 total commits to the home-assistant organization, 1 commit to hassio-build") @@ -161,20 +159,18 @@ This page contains a list of people who have contributed in one way or another t - [c727 (@c727)](https://github.com/c727 "242 total commits to the home-assistant organization, 157 commits to home-assistant-polymer, 53 commits to home-assistant.io, 11 commits to ui-schema, 10 commits to developers.home-assistant, 9 commits to home-assistant, 2 commits to hassio") - [Caius Seiger (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Caleb Dunn (@finish06)](https://github.com/finish06 "7 total commits to the home-assistant organization, 7 commits to home-assistant") -- [Cameron Bulock (@cbulock)](https://github.com/cbulock "3 total commits to the home-assistant organization, 2 commits to home-assistant, 1 commit to netdisco") -- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "99 total commits to the home-assistant organization, 91 commits to home-assistant.io, 5 commits to home-assistant, 1 commit to fabric-home-assistant, 1 commit to homebridge-homeassistant, 1 commit to hassbian-scripts") +- [Cameron Bulock (@cbulock)](https://github.com/cbulock "1 total commits to the home-assistant organization, 1 commit to netdisco") +- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "99 total commits to the home-assistant organization, 91 commits to home-assistant.io, 5 commits to home-assistant, 1 commit to homebridge-homeassistant, 1 commit to fabric-home-assistant, 1 commit to hassbian-scripts") - [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the home-assistant organization, 6 commits to home-assistant") -- [cdce8p (@cdce8p)](https://github.com/cdce8p "157 total commits to the home-assistant organization, 94 commits to home-assistant, 42 commits to home-assistant.io, 13 commits to home-assistant-polymer, 5 commits to hass-release, 3 commits to developers.home-assistant") +- [cdce8p (@cdce8p)](https://github.com/cdce8p "178 total commits to the home-assistant organization, 111 commits to home-assistant, 43 commits to home-assistant.io, 13 commits to home-assistant-polymer, 6 commits to developers.home-assistant, 5 commits to hass-release") - [Cecron (@Cecron)](https://github.com/Cecron "1 total commits to the home-assistant organization, 1 commit to appdaemon") -- [Cedric Van Goethem (@Zepheus)](https://github.com/Zepheus "2 total commits to the home-assistant organization, 2 commits to home-assistant") - [Cenk Gündoğan (@cgundogan)](https://github.com/cgundogan "1 total commits to the home-assistant organization, 1 commit to libcoap") - [Censored3 (@Censored3)](https://github.com/Censored3 "2 total commits to the home-assistant organization, 2 commits to hassio-addons") -- [Cezar Sá Espinola (@cezarsa)](https://github.com/cezarsa "2 total commits to the home-assistant organization, 2 commits to home-assistant") -- [cgtobi (@cgtobi)](https://github.com/cgtobi "35 total commits to the home-assistant organization, 22 commits to home-assistant, 13 commits to home-assistant.io") +- [cgtobi (@cgtobi)](https://github.com/cgtobi "51 total commits to the home-assistant organization, 27 commits to home-assistant.io, 24 commits to home-assistant") - [chanders (@chanders)](https://github.com/chanders "2 total commits to the home-assistant organization, 2 commits to hadashboard") - [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "19 total commits to the home-assistant organization, 12 commits to home-assistant, 7 commits to home-assistant.io") -- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "37 total commits to the home-assistant organization, 16 commits to home-assistant.io, 12 commits to home-assistant, 9 commits to home-assistant-polymer") -- [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io") +- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "45 total commits to the home-assistant organization, 18 commits to home-assistant, 18 commits to home-assistant.io, 9 commits to home-assistant-polymer") +- [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.io") - [Chayoung You (@yous)](https://github.com/yous "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Check your git settings\! (@invalid-email-address)](https://github.com/invalid-email-address "1 total commits to the home-assistant organization, 1 commit to libcoap") - [Chris (@chennin)](https://github.com/chennin "15 total commits to the home-assistant organization, 11 commits to home-assistant.io, 4 commits to home-assistant") @@ -185,7 +181,7 @@ This page contains a list of people who have contributed in one way or another t - [ChrisS85 (@ChrisS85)](https://github.com/ChrisS85 "1 total commits to the home-assistant organization, 1 commit to hassio-build") - [Christiaan Blom (@Deinara)](https://github.com/Deinara "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "8 total commits to the home-assistant organization, 8 commits to home-assistant") -- [Christian Studer (@cstuder)](https://github.com/cstuder "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") +- [Christian Studer (@cstuder)](https://github.com/cstuder "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "39 total commits to the home-assistant organization, 23 commits to home-assistant, 16 commits to home-assistant.io") - [Christoph Gerneth (@c7h)](https://github.com/c7h "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Christoph Wagner (@Christoph-Wagner)](https://github.com/Christoph-Wagner "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") @@ -196,7 +192,7 @@ This page contains a list of people who have contributed in one way or another t - [citruz (@citruz)](https://github.com/citruz "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [clach04 (@clach04)](https://github.com/clach04 "4 total commits to the home-assistant organization, 3 commits to home-assistant.io, 1 commit to hassbian-scripts") - [Claus F\. Strasburger (@cfstras)](https://github.com/cfstras "5 total commits to the home-assistant organization, 5 commits to pi-gen") -- [cogneato (@cogneato)](https://github.com/cogneato "20 total commits to the home-assistant organization, 15 commits to home-assistant.io, 3 commits to developers.home-assistant, 2 commits to hassos") +- [cogneato (@cogneato)](https://github.com/cogneato "21 total commits to the home-assistant organization, 15 commits to home-assistant.io, 4 commits to developers.home-assistant, 2 commits to hassos") - [Colin Frei (@colinfrei)](https://github.com/colinfrei "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Colin O'Dell (@colinodell)](https://github.com/colinodell "33 total commits to the home-assistant organization, 18 commits to home-assistant, 15 commits to home-assistant.io") - [Colin Teubner (@netopiax)](https://github.com/netopiax "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") @@ -209,34 +205,35 @@ This page contains a list of people who have contributed in one way or another t - [Craig J\. Midwinter (@craigjmidwinter)](https://github.com/craigjmidwinter "27 total commits to the home-assistant organization, 20 commits to home-assistant, 7 commits to home-assistant.io") - [CTLS (@CTLS)](https://github.com/CTLS "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [CV (@dagobert)](https://github.com/dagobert "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") -- [cxlwill (@cxlwill)](https://github.com/cxlwill "4 total commits to the home-assistant organization, 2 commits to hassbian-scripts, 2 commits to home-assistant-polymer") -- [Dale Higgs (@dale3h)](https://github.com/dale3h "45 total commits to the home-assistant organization, 32 commits to home-assistant.io, 11 commits to home-assistant, 1 commit to hassbot, 1 commit to homebridge-homeassistant") -- [damarco (@damarco)](https://github.com/damarco "7 total commits to the home-assistant organization, 7 commits to home-assistant") +- [cxlwill (@cxlwill)](https://github.com/cxlwill "4 total commits to the home-assistant organization, 2 commits to home-assistant-polymer, 2 commits to hassbian-scripts") +- [Dale Higgs (@dale3h)](https://github.com/dale3h "45 total commits to the home-assistant organization, 32 commits to home-assistant.io, 11 commits to home-assistant, 1 commit to homebridge-homeassistant, 1 commit to hassbot") +- [damarco (@damarco)](https://github.com/damarco "9 total commits to the home-assistant organization, 9 commits to home-assistant") - [Dan (@danieljkemp)](https://github.com/danieljkemp "23 total commits to the home-assistant organization, 16 commits to home-assistant, 7 commits to home-assistant.io") -- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "17 total commits to the home-assistant organization, 14 commits to home-assistant, 3 commits to home-assistant.io") -- [Dan Klaffenbach (@klada)](https://github.com/klada "5 total commits to the home-assistant organization, 5 commits to home-assistant") +- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "18 total commits to the home-assistant organization, 15 commits to home-assistant, 3 commits to home-assistant.io") +- [Dan Klaffenbach (@klada)](https://github.com/klada "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Dan Nixon (@DanNixon)](https://github.com/DanNixon "25 total commits to the home-assistant organization, 19 commits to home-assistant, 6 commits to home-assistant.io") - [Dan Ports (@drkp)](https://github.com/drkp "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Dan Smith (@kk7ds)](https://github.com/kk7ds "84 total commits to the home-assistant organization, 68 commits to home-assistant, 14 commits to home-assistant.io, 2 commits to home-assistant-polymer") - [Dani (@danichispa)](https://github.com/danichispa "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") - [Daniel Bowman (@vrih)](https://github.com/vrih "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to netdisco") - [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "335 total commits to the home-assistant organization, 214 commits to home-assistant, 118 commits to home-assistant.io, 3 commits to home-assistant-polymer") -- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "107 total commits to the home-assistant organization, 54 commits to home-assistant, 42 commits to home-assistant.io, 11 commits to hassio-addons") +- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "341 total commits to the home-assistant organization, 218 commits to home-assistant, 120 commits to home-assistant.io, 3 commits to home-assistant-polymer") +- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "111 total commits to the home-assistant organization, 57 commits to home-assistant, 43 commits to home-assistant.io, 11 commits to hassio-addons") - [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") -- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "31 total commits to the home-assistant organization, 21 commits to home-assistant.io, 10 commits to home-assistant") +- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "37 total commits to the home-assistant organization, 23 commits to home-assistant.io, 14 commits to home-assistant") - [Daniel Trnka (@trnila)](https://github.com/trnila "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Daniel Watkins (@OddBloke)](https://github.com/OddBloke "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Daniel Welch (@danielwelch)](https://github.com/danielwelch "6 total commits to the home-assistant organization, 3 commits to home-assistant.io, 2 commits to homebridge-homeassistant, 1 commit to hassio-addons") - [DanielXYZ2000 (@DanielXYZ2000)](https://github.com/DanielXYZ2000 "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [dasos (@dasos)](https://github.com/dasos "11 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to netdisco") -- [datafx (@datafx)](https://github.com/datafx "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [datafx (@datafx)](https://github.com/datafx "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") +- [Dav0815 (@Dav0815)](https://github.com/Dav0815 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Dave Banks (@djbanks)](https://github.com/djbanks "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Dave J (@kxtcd950)](https://github.com/kxtcd950 "3 total commits to the home-assistant organization, 3 commits to hassbian-scripts") - [David (@fanaticDavid)](https://github.com/fanaticDavid "16 total commits to the home-assistant organization, 12 commits to home-assistant.io, 3 commits to home-assistant, 1 commit to home-assistant-polymer") - [David Broadfoot (@dlbroadfoot)](https://github.com/dlbroadfoot "5 total commits to the home-assistant organization, 5 commits to home-assistant") -- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "16 total commits to the home-assistant organization, 16 commits to home-assistant.io") +- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "19 total commits to the home-assistant organization, 18 commits to home-assistant.io, 1 commit to developers.home-assistant") - [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [David Grant (@davegravy)](https://github.com/davegravy "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [David McNett (@nugget)](https://github.com/nugget "10 total commits to the home-assistant organization, 5 commits to home-assistant, 5 commits to home-assistant.io") @@ -259,20 +256,21 @@ This page contains a list of people who have contributed in one way or another t - [DetroitEE (@DetroitEE)](https://github.com/DetroitEE "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [devdelay (@devdelay)](https://github.com/devdelay "16 total commits to the home-assistant organization, 7 commits to home-assistant.io, 5 commits to home-assistant, 4 commits to homebridge-homeassistant") - [Devon Peet (@dpeet)](https://github.com/dpeet "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [Diogo Gomes (@dgomes)](https://github.com/dgomes "75 total commits to the home-assistant organization, 49 commits to home-assistant, 25 commits to home-assistant.io, 1 commit to developers.home-assistant") +- [Diogo Gomes (@dgomes)](https://github.com/dgomes "77 total commits to the home-assistant organization, 51 commits to home-assistant, 25 commits to home-assistant.io, 1 commit to developers.home-assistant") - [Dmitri Pribysh (@dmand)](https://github.com/dmand "1 total commits to the home-assistant organization, 1 commit to hassos") - [Domantas (@Dohxis)](https://github.com/Dohxis "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [dramamoose (@dramamoose)](https://github.com/dramamoose "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") - [DrewSK (@dzsquared)](https://github.com/dzsquared "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") -- [DubhAd (@DubhAd)](https://github.com/DubhAd "456 total commits to the home-assistant organization, 452 commits to home-assistant.io, 2 commits to hassos, 2 commits to developers.home-assistant") +- [DubhAd (@DubhAd)](https://github.com/DubhAd "488 total commits to the home-assistant organization, 484 commits to home-assistant.io, 2 commits to developers.home-assistant, 2 commits to hassos") - [Duoxilian (@Duoxilian)](https://github.com/Duoxilian "11 total commits to the home-assistant organization, 6 commits to home-assistant.io, 5 commits to home-assistant") - [ebpetway (@ebpetway)](https://github.com/ebpetway "55 total commits to the home-assistant organization, 55 commits to warrant") - [Egor Tsinko (@etsinko)](https://github.com/etsinko "12 total commits to the home-assistant organization, 9 commits to home-assistant, 3 commits to home-assistant.io") - [Eitan Mosenkis (@emosenkis)](https://github.com/emosenkis "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to netdisco") - [eldanb (@eldanb)](https://github.com/eldanb "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [Ellis Percival (@flyte)](https://github.com/flyte "29 total commits to the home-assistant organization, 25 commits to home-assistant, 4 commits to home-assistant.io") -- [emontnemery (@emontnemery)](https://github.com/emontnemery "11 total commits to the home-assistant organization, 11 commits to home-assistant") +- [Emeric (@Mryck)](https://github.com/Mryck "11 total commits to the home-assistant organization, 11 commits to home-assistant.io") +- [emontnemery (@emontnemery)](https://github.com/emontnemery "21 total commits to the home-assistant organization, 15 commits to home-assistant, 6 commits to home-assistant.io") - [engrbm87 (@engrbm87)](https://github.com/engrbm87 "3 total commits to the home-assistant organization, 3 commits to appdaemon") - [Eric Hagan (@ehagan)](https://github.com/ehagan "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant-polymer") - [Eric Oosting (@eoosting)](https://github.com/eoosting "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") @@ -284,10 +282,10 @@ This page contains a list of people who have contributed in one way or another t - [Eu (@covrig)](https://github.com/covrig "2 total commits to the home-assistant organization, 2 commits to home-assistant-polymer") - [Eugenio Panadero (@azogue)](https://github.com/azogue "77 total commits to the home-assistant organization, 46 commits to home-assistant, 25 commits to home-assistant.io, 3 commits to homebridge-homeassistant, 3 commits to home-assistant-polymer") - [Ezra Bowden (@bn0)](https://github.com/bn0 "2 total commits to the home-assistant organization, 2 commits to warrant") -- [Fabian Affolter (@fabaff)](https://github.com/fabaff "4991 total commits to the home-assistant organization, 3124 commits to home-assistant.io, 1724 commits to home-assistant, 33 commits to home-assistant-assets, 32 commits to home-assistant-notebooks, 19 commits to developers.home-assistant, 11 commits to home-assistant-polymer, 11 commits to hassio-build, 10 commits to netdisco, 7 commits to hassos, 6 commits to hassio-addons, 6 commits to hassio, 3 commits to hass-release, 2 commits to home-assistant-iOS, 1 commit to ui-schema, 1 commit to example-custom-config, 1 commit to home-assistant-js-websocket") +- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5024 total commits to the home-assistant organization, 3141 commits to home-assistant.io, 1737 commits to home-assistant, 33 commits to home-assistant-assets, 32 commits to home-assistant-notebooks, 22 commits to developers.home-assistant, 11 commits to home-assistant-polymer, 11 commits to hassio-build, 10 commits to netdisco, 7 commits to hassos, 6 commits to hassio, 6 commits to hassio-addons, 3 commits to hass-release, 2 commits to home-assistant-iOS, 1 commit to example-custom-config, 1 commit to home-assistant-js-websocket, 1 commit to ui-schema") - [Fabian Fischer (@nodomain)](https://github.com/nodomain "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the home-assistant organization, 4 commits to home-assistant") -- [Fabien Piuzzi (@reefab)](https://github.com/reefab "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant-polymer") +- [Fabien Piuzzi (@reefab)](https://github.com/reefab "8 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [fakezeta (@fakezeta)](https://github.com/fakezeta "7 total commits to the home-assistant organization, 7 commits to home-assistant") - [Felix Krause (@KrauseFx)](https://github.com/KrauseFx "27 total commits to the home-assistant organization, 27 commits to issue-bot") @@ -295,27 +293,29 @@ This page contains a list of people who have contributed in one way or another t - [Ferry van Zeelst (@StaticCube)](https://github.com/StaticCube "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "8 total commits to the home-assistant organization, 8 commits to home-assistant") - [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to netdisco") -- [Florian Klien (@flowolf)](https://github.com/flowolf "17 total commits to the home-assistant organization, 14 commits to home-assistant.io, 3 commits to home-assistant") +- [Florian Klien (@flowolf)](https://github.com/flowolf "22 total commits to the home-assistant organization, 17 commits to home-assistant.io, 5 commits to home-assistant") - [florianj1 (@florianj1)](https://github.com/florianj1 "1 total commits to the home-assistant organization, 1 commit to hassio") - [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.io") - [Fonta (@f0nt4)](https://github.com/f0nt4 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") -- [Franck Nijhof (@frenck)](https://github.com/frenck "68 total commits to the home-assistant organization, 32 commits to home-assistant.io, 16 commits to hassio-cli, 10 commits to hassio, 4 commits to hassio-addons, 3 commits to home-assistant, 2 commits to home-assistant-polymer, 1 commit to appdaemon") +- [Franck Nijhof (@frenck)](https://github.com/frenck "81 total commits to the home-assistant organization, 37 commits to home-assistant.io, 17 commits to hassio-cli, 11 commits to hassio, 6 commits to developers.home-assistant, 4 commits to hassio-addons, 3 commits to home-assistant, 2 commits to home-assistant-polymer, 1 commit to appdaemon") - [Frank (@syphernl)](https://github.com/syphernl "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Frantz (@rofrantz)](https://github.com/rofrantz "17 total commits to the home-assistant organization, 9 commits to home-assistant, 4 commits to home-assistant.io, 3 commits to netdisco, 1 commit to home-assistant-js-websocket") - [Frederic Hemberger (@fhemberger)](https://github.com/fhemberger "93 total commits to the home-assistant organization, 93 commits to home-assistant.io") - [Frederik Bolding (@FrederikBolding)](https://github.com/FrederikBolding "4 total commits to the home-assistant organization, 4 commits to home-assistant") -- [Fredrik Lindqvist (@Landrash)](https://github.com/Landrash "226 total commits to the home-assistant organization, 112 commits to hassbian-scripts, 73 commits to home-assistant.io, 36 commits to pi-gen, 4 commits to home-assistant, 1 commit to home-assistant-polymer") +- [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "6 total commits to the home-assistant organization, 5 commits to home-assistant.io, 1 commit to developers.home-assistant") +- [Fredrik Lindqvist (@Landrash)](https://github.com/Landrash "232 total commits to the home-assistant organization, 118 commits to hassbian-scripts, 73 commits to home-assistant.io, 36 commits to pi-gen, 4 commits to home-assistant, 1 commit to home-assistant-polymer") - [freol35241 (@freol35241)](https://github.com/freol35241 "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the home-assistant organization, 13 commits to home-assistant.io") - [Gabor SZOLLOSI (@szogi)](https://github.com/szogi "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Gabriel Oliveira (@gabrielboliveira)](https://github.com/gabrielboliveira "2 total commits to the home-assistant organization, 1 commit to hassio-addons, 1 commit to hassos") - [geekofweek (@geekofweek)](https://github.com/geekofweek "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the home-assistant organization, 14 commits to home-assistant") +- [George Marshall (@georgemarshall)](https://github.com/georgemarshall "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [George\.M (@nodinosaur)](https://github.com/nodinosaur "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") -- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "17 total commits to the home-assistant organization, 11 commits to home-assistant.io, 5 commits to home-assistant, 1 commit to appdaemon") +- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "18 total commits to the home-assistant organization, 11 commits to home-assistant.io, 6 commits to home-assistant, 1 commit to appdaemon") - [Georgi Yanev (@jumpalottahigh)](https://github.com/jumpalottahigh "6 total commits to the home-assistant organization, 4 commits to home-assistant.io, 2 commits to home-assistant-polymer") - [Georgii Staroselskii (@staroselskii)](https://github.com/staroselskii "1 total commits to the home-assistant organization, 1 commit to pi-gen") -- [Gerard (@gerard33)](https://github.com/gerard33 "14 total commits to the home-assistant organization, 8 commits to home-assistant, 6 commits to home-assistant.io") +- [Gerard (@gerard33)](https://github.com/gerard33 "20 total commits to the home-assistant organization, 11 commits to home-assistant.io, 9 commits to home-assistant") - [Gergely Imreh (@imrehg)](https://github.com/imrehg "16 total commits to the home-assistant organization, 11 commits to home-assistant, 5 commits to home-assistant.io") - [Gianluca Barbaro (@MrMep)](https://github.com/MrMep "24 total commits to the home-assistant organization, 16 commits to home-assistant, 8 commits to home-assistant.io") - [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "5 total commits to the home-assistant organization, 5 commits to home-assistant") @@ -324,23 +324,25 @@ This page contains a list of people who have contributed in one way or another t - [githubbuh (@githubbuh)](https://github.com/githubbuh "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [gitmopp (@gitmopp)](https://github.com/gitmopp "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Giuseppe (@glpatcern)](https://github.com/glpatcern "5 total commits to the home-assistant organization, 5 commits to home-assistant") -- [Glenn Waters (@gwww)](https://github.com/gwww "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") +- [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") +- [Glenn Waters (@gwww)](https://github.com/gwww "9 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to developers.home-assistant, 1 commit to home-assistant-polymer") - [GMFalka (@GMFalka)](https://github.com/GMFalka "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Gopal Kildoliya (@gopalkildoliya)](https://github.com/gopalkildoliya "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Grant McConnaughey (@grantmcconnaughey)](https://github.com/grantmcconnaughey "8 total commits to the home-assistant organization, 8 commits to warrant") - [GreenTurtwig (@GreenTurtwig)](https://github.com/GreenTurtwig "80 total commits to the home-assistant organization, 75 commits to home-assistant.io, 5 commits to home-assistant") - [Greg Dowling (@pavoni)](https://github.com/pavoni "209 total commits to the home-assistant organization, 183 commits to home-assistant, 25 commits to home-assistant.io, 1 commit to netdisco") -- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "25 total commits to the home-assistant organization, 21 commits to home-assistant, 4 commits to home-assistant.io") +- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "28 total commits to the home-assistant organization, 23 commits to home-assistant, 5 commits to home-assistant.io") - [Greg MacLellan (@gregmac)](https://github.com/gregmac "1 total commits to the home-assistant organization, 1 commit to pi-gen") - [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Gregory Benner (@Klathmon)](https://github.com/Klathmon "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [GTH (@gunnarhelgason)](https://github.com/gunnarhelgason "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Guillaume Rischard (@grischard)](https://github.com/grischard "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the home-assistant organization, 20 commits to home-assistant") +- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Guy Parisi (@Guyanthalas)](https://github.com/Guyanthalas "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") - [gwendalg (@gwendalg)](https://github.com/gwendalg "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Hans Bakker (@hansmbakker)](https://github.com/hansmbakker "5 total commits to the home-assistant organization, 5 commits to home-assistant") -- [hanzoh (@hanzoh)](https://github.com/hanzoh "4 total commits to the home-assistant organization, 4 commits to home-assistant") +- [hanzoh (@hanzoh)](https://github.com/hanzoh "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [happyleavesaoc (@happyleavesaoc)](https://github.com/happyleavesaoc "114 total commits to the home-assistant organization, 90 commits to home-assistant, 23 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Harald Nagel (@haraldnagel)](https://github.com/haraldnagel "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Hate-Usernames (@Hate-Usernames)](https://github.com/Hate-Usernames "3 total commits to the home-assistant organization, 3 commits to home-assistant") @@ -348,7 +350,8 @@ This page contains a list of people who have contributed in one way or another t - [hcooper (@hcooper)](https://github.com/hcooper "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "20 total commits to the home-assistant organization, 15 commits to home-assistant, 5 commits to home-assistant.io") -- [Heiko Thiery (@hthiery)](https://github.com/hthiery "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") +- [Heiko Thiery (@hthiery)](https://github.com/hthiery "11 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.io") +- [Heinrich Dahms (@htdahms)](https://github.com/htdahms "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS") - [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "4 total commits to the home-assistant organization, 3 commits to netdisco, 1 commit to appdaemon") - [Helmut Januschka (@hjanuschka)](https://github.com/hjanuschka "3 total commits to the home-assistant organization, 3 commits to issue-bot") - [Henrik Nicolaisen (@hmn)](https://github.com/hmn "6 total commits to the home-assistant organization, 6 commits to home-assistant") @@ -365,15 +368,14 @@ This page contains a list of people who have contributed in one way or another t - [Ian Copp (@icopp)](https://github.com/icopp "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Ian Richardson (@iantrich)](https://github.com/iantrich "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") - [ianj001 (@ianj001)](https://github.com/ianj001 "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") -- [icovada (@icovada)](https://github.com/icovada "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.io") +- [icovada (@icovada)](https://github.com/icovada "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Igor Shults (@ishults)](https://github.com/ishults "12 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.io, 1 commit to home-assistant-polymer") -- [Ioan Loosley (@ioangogo)](https://github.com/ioangogo "15 total commits to the home-assistant organization, 12 commits to home-assistant.io, 3 commits to home-assistant") -- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") +- [Ioan Loosley (@ioangogo)](https://github.com/ioangogo "18 total commits to the home-assistant organization, 15 commits to home-assistant.io, 3 commits to home-assistant") +- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Issac Kelly (@issackelly)](https://github.com/issackelly "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Jaak Laineste (@jaakla)](https://github.com/jaakla "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Jacen (@jacen92)](https://github.com/jacen92 "2 total commits to the home-assistant organization, 2 commits to pi-gen") - [Jack (@jackjohnsonuk)](https://github.com/jackjohnsonuk "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") -- [jack (@jackmakesthings)](https://github.com/jackmakesthings "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Jack Minardi (@jminardi)](https://github.com/jminardi "8 total commits to the home-assistant organization, 8 commits to home-assistant") - [Jacob Mansfield (@cyberjacob)](https://github.com/cyberjacob "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Jacob Siverskog (@jsiverskog)](https://github.com/jsiverskog "1 total commits to the home-assistant organization, 1 commit to pi-gen") @@ -392,21 +394,21 @@ This page contains a list of people who have contributed in one way or another t - [Janne Grunau (@jannau)](https://github.com/jannau "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Jason Carter (@JasonCarter80)](https://github.com/JasonCarter80 "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") - [Jason Hite (@jasonmhite)](https://github.com/jasonmhite "6 total commits to the home-assistant organization, 6 commits to appdaemon") -- [Jason Hu (@awarecan)](https://github.com/awarecan "150 total commits to the home-assistant organization, 98 commits to home-assistant, 24 commits to home-assistant.io, 17 commits to home-assistant-polymer, 9 commits to developers.home-assistant, 1 commit to home-assistant-js-websocket, 1 commit to netdisco") +- [Jason Hu (@awarecan)](https://github.com/awarecan "163 total commits to the home-assistant organization, 104 commits to home-assistant, 27 commits to home-assistant.io, 21 commits to home-assistant-polymer, 9 commits to developers.home-assistant, 1 commit to netdisco, 1 commit to home-assistant-js-websocket") - [Jason Hunter (@hunterjm)](https://github.com/hunterjm "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Jay Stevens (@Jay2645)](https://github.com/Jay2645 "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [JAYMAN-ATX (@JAYMAN-ATX)](https://github.com/JAYMAN-ATX "2 total commits to the home-assistant organization, 2 commits to homebridge-homeassistant") - [JC Connell (@jcconnell)](https://github.com/jcconnell "12 total commits to the home-assistant organization, 7 commits to home-assistant.io, 5 commits to home-assistant") +- [jchasey (@jchasey)](https://github.com/jchasey "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") - [Jean\-Michel Julien (@KurdyMalloy)](https://github.com/KurdyMalloy "1 total commits to the home-assistant organization, 1 commit to libcoap") - [Jeepers Creepers (@jjensn)](https://github.com/jjensn "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Jeff Schroeder (@SEJeff)](https://github.com/SEJeff "17 total commits to the home-assistant organization, 17 commits to home-assistant") - [Jeff Wilson (@jawilson)](https://github.com/jawilson "25 total commits to the home-assistant organization, 19 commits to home-assistant, 6 commits to home-assistant.io") - [Jens (@jhoepken)](https://github.com/jhoepken "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "8 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.io") -- [Jerad Meisner (@jeradM)](https://github.com/jeradM "58 total commits to the home-assistant organization, 34 commits to home-assistant-polymer, 12 commits to home-assistant.io, 12 commits to home-assistant") +- [Jeppe Ladefoged (@ladefoged81)](https://github.com/ladefoged81 "11 total commits to the home-assistant organization, 11 commits to home-assistant.io") +- [Jerad Meisner (@jeradM)](https://github.com/jeradM "62 total commits to the home-assistant organization, 37 commits to home-assistant-polymer, 13 commits to home-assistant, 12 commits to home-assistant.io") - [Jeremiah Wuenschel (@jer)](https://github.com/jer "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Jeremy Williams (@jwillaz)](https://github.com/jwillaz "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [jeremysv (@jeremysv)](https://github.com/jeremysv "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Jeroen ter Heerdt (@jeroenterheerdt)](https://github.com/jeroenterheerdt "37 total commits to the home-assistant organization, 20 commits to home-assistant, 17 commits to home-assistant.io") - [Jerold Albertson (@jeroldalbertson-wf)](https://github.com/jeroldalbertson-wf "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Jerry Workman (@JerryWorkman)](https://github.com/JerryWorkman "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") @@ -417,8 +419,7 @@ This page contains a list of people who have contributed in one way or another t - [jiafengwang (@jiafengwang)](https://github.com/jiafengwang "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [jimbob1001 (@jimbob1001)](https://github.com/jimbob1001 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Joakim Nohlgård (@gebart)](https://github.com/gebart "2 total commits to the home-assistant organization, 2 commits to libcoap") -- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "129 total commits to the home-assistant organization, 104 commits to hassbian-scripts, 22 commits to home-assistant.io, 3 commits to home-assistant") -- [jodur (@jodur)](https://github.com/jodur "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "156 total commits to the home-assistant organization, 130 commits to hassbian-scripts, 23 commits to home-assistant.io, 3 commits to home-assistant") - [Joe Lu (@snjoetw)](https://github.com/snjoetw "25 total commits to the home-assistant organization, 19 commits to home-assistant, 5 commits to home-assistant.io, 1 commit to appdaemon") - [Joe McMonagle (@joemcmonagle)](https://github.com/joemcmonagle "13 total commits to the home-assistant organization, 13 commits to home-assistant.io") - [joe248 (@joe248)](https://github.com/joe248 "3 total commits to the home-assistant organization, 3 commits to home-assistant") @@ -428,11 +429,11 @@ This page contains a list of people who have contributed in one way or another t - [Johan van der Kuijl (@Rubyan)](https://github.com/Rubyan "4 total commits to the home-assistant organization, 3 commits to home-assistant.io, 1 commit to appdaemon") - [Johann Kellerman (@kellerza)](https://github.com/kellerza "181 total commits to the home-assistant organization, 148 commits to home-assistant, 33 commits to home-assistant.io") - [Johannes K\. (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") -- [Johannes Truschnigg (@jtru)](https://github.com/jtru "1 total commits to the home-assistant organization, 1 commit to hassos") +- [Johannes Truschnigg (@jtru)](https://github.com/jtru "2 total commits to the home-assistant organization, 2 commits to hassos") - [John (@J-C-B)](https://github.com/J-C-B "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "224 total commits to the home-assistant organization, 156 commits to home-assistant, 45 commits to home-assistant.io, 23 commits to home-assistant-polymer") +- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "225 total commits to the home-assistant organization, 156 commits to home-assistant, 45 commits to home-assistant.io, 24 commits to home-assistant-polymer") - [John Lindley (@jwl17330536)](https://github.com/jwl17330536 "1 total commits to the home-assistant organization, 1 commit to appdaemon") -- [John Mihalic (@mezz64)](https://github.com/mezz64 "51 total commits to the home-assistant organization, 37 commits to home-assistant, 12 commits to home-assistant.io, 1 commit to hadashboard, 1 commit to home-assistant-polymer") +- [John Mihalic (@mezz64)](https://github.com/mezz64 "51 total commits to the home-assistant organization, 37 commits to home-assistant, 12 commits to home-assistant.io, 1 commit to home-assistant-polymer, 1 commit to hadashboard") - [Johnny Chadda (@joch)](https://github.com/joch "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Jon Caruana (@joncar)](https://github.com/joncar "3 total commits to the home-assistant organization, 3 commits to home-assistant") @@ -445,10 +446,10 @@ This page contains a list of people who have contributed in one way or another t - [joopert (@joopert)](https://github.com/joopert "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Jordi (@hokus15)](https://github.com/hokus15 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Jordy (@jbarrancos)](https://github.com/jbarrancos "40 total commits to the home-assistant organization, 40 commits to home-assistant") -- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "34 total commits to the home-assistant organization, 31 commits to home-assistant.io, 2 commits to hassio-cli, 1 commit to hassio-addons") +- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "37 total commits to the home-assistant organization, 33 commits to home-assistant.io, 2 commits to hassio-cli, 1 commit to hassio, 1 commit to hassio-addons") - [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to home-assistant.io") - [Joseph Carter (@iKarith)](https://github.com/iKarith "9 total commits to the home-assistant organization, 9 commits to pi-gen") -- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to homebridge-homeassistant") +- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to homebridge-homeassistant") - [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "28 total commits to the home-assistant organization, 15 commits to home-assistant, 13 commits to home-assistant.io") - [Josh Wright (@JshWright)](https://github.com/JshWright "28 total commits to the home-assistant organization, 20 commits to home-assistant, 8 commits to home-assistant.io") - [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the home-assistant organization, 1 commit to libcoap") @@ -456,23 +457,25 @@ This page contains a list of people who have contributed in one way or another t - [Juggels (@Juggels)](https://github.com/Juggels "11 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.io") - [Julian Kaffke (@jaykay)](https://github.com/jaykay "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [Julian Kahnert (@JulianKahnert)](https://github.com/JulianKahnert "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to home-assistant") -- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "31 total commits to the home-assistant organization, 24 commits to home-assistant, 7 commits to home-assistant.io") -- [jumpkick (@jumpkick)](https://github.com/jumpkick "15 total commits to the home-assistant organization, 12 commits to home-assistant, 3 commits to home-assistant.io") +- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "32 total commits to the home-assistant organization, 25 commits to home-assistant, 7 commits to home-assistant.io") +- [jumpkick (@jumpkick)](https://github.com/jumpkick "12 total commits to the home-assistant organization, 12 commits to home-assistant") - [Junian Triajianto (@junian)](https://github.com/junian "1 total commits to the home-assistant organization, 1 commit to pi-gen") - [Justin Dray (@justin8)](https://github.com/justin8 "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") - [Justin Hayes (@GussyH)](https://github.com/GussyH "8 total commits to the home-assistant organization, 7 commits to hadashboard, 1 commit to appdaemon") -- [Justin Weberg (@justweb1)](https://github.com/justweb1 "26 total commits to the home-assistant organization, 13 commits to home-assistant-polymer, 7 commits to hassbot, 4 commits to home-assistant, 1 commit to home-assistant-js, 1 commit to hassio") +- [Justin Weberg (@justweb1)](https://github.com/justweb1 "26 total commits to the home-assistant organization, 13 commits to home-assistant-polymer, 7 commits to hassbot, 4 commits to home-assistant, 1 commit to hassio, 1 commit to home-assistant-js") - [Justyn Shull (@justyns)](https://github.com/justyns "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [Jérémie Klein (@grm)](https://github.com/grm "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Karen Goode (@kfgoode)](https://github.com/kfgoode "4 total commits to the home-assistant organization, 4 commits to home-assistant") +- [Karl Kihlström (@kalkih)](https://github.com/kalkih "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [karlkar (@karlkar)](https://github.com/karlkar "15 total commits to the home-assistant organization, 10 commits to home-assistant, 5 commits to home-assistant.io") - [kbickar (@kbickar)](https://github.com/kbickar "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") - [Ken Bannister (@kb2ma)](https://github.com/kb2ma "1 total commits to the home-assistant organization, 1 commit to libcoap") - [Ken Davidson (@kwdavidson)](https://github.com/kwdavidson "15 total commits to the home-assistant organization, 13 commits to home-assistant.io, 2 commits to appdaemon") -- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "10 total commits to the home-assistant organization, 10 commits to home-assistant") +- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "12 total commits to the home-assistant organization, 12 commits to home-assistant") +- [kernehed (@kernehed)](https://github.com/kernehed "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") - [Kevin Eifinger (@eifinger)](https://github.com/eifinger "1 total commits to the home-assistant organization, 1 commit to appdaemon") -- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "19 total commits to the home-assistant organization, 11 commits to home-assistant, 8 commits to home-assistant.io") +- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "24 total commits to the home-assistant organization, 13 commits to home-assistant, 11 commits to home-assistant.io") - [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Kevin Gottsman (@gottsman)](https://github.com/gottsman "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") - [Kevin Siml (@appzer)](https://github.com/appzer "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") @@ -480,6 +483,7 @@ This page contains a list of people who have contributed in one way or another t - [kfcook (@kfcook)](https://github.com/kfcook "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [kireyeu (@kireyeu)](https://github.com/kireyeu "4 total commits to the home-assistant organization, 4 commits to home-assistant-notebooks") - [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "12 total commits to the home-assistant organization, 5 commits to home-assistant, 5 commits to home-assistant.io, 2 commits to home-assistant-polymer") +- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "68 total commits to the home-assistant organization, 68 commits to home-assistant.io") - [Klaus (@k-laus)](https://github.com/k-laus "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [koolsb (@koolsb)](https://github.com/koolsb "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Kory Prince (@korylprince)](https://github.com/korylprince "4 total commits to the home-assistant organization, 4 commits to home-assistant-polymer") @@ -489,15 +493,14 @@ This page contains a list of people who have contributed in one way or another t - [Kyle Hendricks (@kylehendricks)](https://github.com/kylehendricks "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [lamiskin (@lamiskin)](https://github.com/lamiskin "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Lars Englund (@larsenglund)](https://github.com/larsenglund "1 total commits to the home-assistant organization, 1 commit to appdaemon") -- [lee-js (@lee-js)](https://github.com/lee-js "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Lennart Bernhardt (@LennyPenny)](https://github.com/LennyPenny "1 total commits to the home-assistant organization, 1 commit to hassio-build") - [Leon99 (@Leon99)](https://github.com/Leon99 "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Leonardo Saraiva (@vyper)](https://github.com/vyper "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [leschekfm (@leschekfm)](https://github.com/leschekfm "3 total commits to the home-assistant organization, 3 commits to hassbian-scripts") - [Lev Aronsky (@aronsky)](https://github.com/aronsky "16 total commits to the home-assistant organization, 13 commits to home-assistant, 3 commits to home-assistant.io") -- [Lewis Juggins (@lwis)](https://github.com/lwis "66 total commits to the home-assistant organization, 53 commits to home-assistant, 12 commits to home-assistant.io, 1 commit to home-assistant-polymer") -- [lichtteil (@lichtteil)](https://github.com/lichtteil "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [Lewis Juggins (@lwis)](https://github.com/lwis "67 total commits to the home-assistant organization, 54 commits to home-assistant, 12 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "18 total commits to the home-assistant organization, 13 commits to home-assistant.io, 5 commits to home-assistant") -- [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "5 total commits to the home-assistant organization, 3 commits to home-assistant.io, 2 commits to hadashboard") +- [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "2 total commits to the home-assistant organization, 2 commits to hadashboard") - [linvinus (@linvinus)](https://github.com/linvinus "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [lrmate (@lrmate)](https://github.com/lrmate "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Luar Roji (@cyberplant)](https://github.com/cyberplant "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") @@ -511,6 +514,7 @@ This page contains a list of people who have contributed in one way or another t - [Lukas Barth (@tinloaf)](https://github.com/tinloaf "37 total commits to the home-assistant organization, 23 commits to home-assistant, 12 commits to home-assistant.io, 2 commits to home-assistant-polymer") - [Lukas Porubcan (@Luc3as)](https://github.com/Luc3as "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Luke Armstrong (@lukearmstrong)](https://github.com/lukearmstrong "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [Luuk (@luukd)](https://github.com/luukd "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [LvivEchoes (@LvivEchoes)](https://github.com/LvivEchoes "8 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Maarten Groeneweg (@lazytesting)](https://github.com/lazytesting "1 total commits to the home-assistant organization, 1 commit to hassio-addons") - [Maciej Bieniek (@bieniu)](https://github.com/bieniu "7 total commits to the home-assistant organization, 6 commits to home-assistant, 1 commit to home-assistant-polymer") @@ -520,16 +524,17 @@ This page contains a list of people who have contributed in one way or another t - [Magnus Lyckå (@magnus-lycka)](https://github.com/magnus-lycka "1 total commits to the home-assistant organization, 1 commit to netdisco") - [MagnusKnutas (@MagnusKnutas)](https://github.com/MagnusKnutas "29 total commits to the home-assistant organization, 29 commits to home-assistant") - [Mahasri Kalavala (@skalavala)](https://github.com/skalavala "32 total commits to the home-assistant organization, 32 commits to home-assistant.io") +- [Makrand Gupta (@makrandgupta)](https://github.com/makrandgupta "1 total commits to the home-assistant organization, 1 commit to hassos") - [Mal Curtis (@snikch)](https://github.com/snikch "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [Malte Franken (@exxamalte)](https://github.com/exxamalte "18 total commits to the home-assistant organization, 11 commits to home-assistant, 5 commits to home-assistant.io, 1 commit to home-assistant-polymer, 1 commit to developers.home-assistant") +- [Malte Franken (@exxamalte)](https://github.com/exxamalte "22 total commits to the home-assistant organization, 15 commits to home-assistant, 5 commits to home-assistant.io, 1 commit to developers.home-assistant, 1 commit to home-assistant-polymer") - [Marc Egli (@frog32)](https://github.com/frog32 "12 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to hassio-addons-example") - [Marc Forth (@mf-social)](https://github.com/mf-social "28 total commits to the home-assistant organization, 27 commits to home-assistant.io, 1 commit to fabric-home-assistant") - [Marc Khouri (@ubnt-marc-khouri)](https://github.com/ubnt-marc-khouri "4 total commits to the home-assistant organization, 2 commits to home-assistant-polymer, 1 commit to hassio-build, 1 commit to developers.home-assistant") - [Marc Pabst (@marcpabst)](https://github.com/marcpabst "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Marc Plano\-Lesay (@Kernald)](https://github.com/Kernald "10 total commits to the home-assistant organization, 10 commits to home-assistant.io") -- [Marcel Hoppe (@hobbypunk90)](https://github.com/hobbypunk90 "12 total commits to the home-assistant organization, 6 commits to home-assistant.io, 6 commits to home-assistant") +- [Marcel Hoppe (@hobbypunk90)](https://github.com/hobbypunk90 "13 total commits to the home-assistant organization, 7 commits to home-assistant.io, 6 commits to home-assistant") - [Marcel030nl (@Marcel030nl)](https://github.com/Marcel030nl "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "159 total commits to the home-assistant organization, 89 commits to home-assistant, 67 commits to home-assistant.io, 1 commit to home-assistant-assets, 1 commit to home-assistant-polymer, 1 commit to hassio-build") +- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "159 total commits to the home-assistant organization, 89 commits to home-assistant, 67 commits to home-assistant.io, 1 commit to home-assistant-assets, 1 commit to hassio-build, 1 commit to home-assistant-polymer") - [Marcin Domański (@kabturek)](https://github.com/kabturek "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Marcin Jaworski (@yawor)](https://github.com/yawor "12 total commits to the home-assistant organization, 12 commits to appdaemon") - [Marco (@marconett)](https://github.com/marconett "3 total commits to the home-assistant organization, 3 commits to appdaemon") @@ -545,22 +550,24 @@ This page contains a list of people who have contributed in one way or another t - [markferry (@markferry)](https://github.com/markferry "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Markus (@iMarkus)](https://github.com/iMarkus "1 total commits to the home-assistant organization, 1 commit to hassio") - [Markus Becker (@markushx)](https://github.com/markushx "6 total commits to the home-assistant organization, 6 commits to libcoap") +- [Markus Nigbur (@mnigbur)](https://github.com/mnigbur "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Markus Peter (@bimbar)](https://github.com/bimbar "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the home-assistant organization, 6 commits to home-assistant") -- [Martin Berg (@mbrrg)](https://github.com/mbrrg "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") +- [Martin Berg (@mbrrg)](https://github.com/mbrrg "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.io") - [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "179 total commits to the home-assistant organization, 144 commits to home-assistant, 30 commits to home-assistant.io, 5 commits to developers.home-assistant") +- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "184 total commits to the home-assistant organization, 147 commits to home-assistant, 32 commits to home-assistant.io, 5 commits to developers.home-assistant") - [Martin Rowan (@shortbloke)](https://github.com/shortbloke "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.io") - [Martin Weinelt (@mweinelt)](https://github.com/mweinelt "17 total commits to the home-assistant organization, 9 commits to home-assistant, 7 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Martokk (@martokk)](https://github.com/martokk "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Mathew Peterson (@mathewpeterson)](https://github.com/mathewpeterson "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") +- [Mathieu Velten (@MatMaul)](https://github.com/MatMaul "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Matt D (@matt1)](https://github.com/matt1 "1 total commits to the home-assistant organization, 1 commit to hassio-cli") - [Matt N\. (@mnoorenberghe)](https://github.com/mnoorenberghe "54 total commits to the home-assistant organization, 25 commits to home-assistant-iOS, 17 commits to home-assistant.io, 9 commits to home-assistant, 2 commits to home-assistant-polymer, 1 commit to homebridge-homeassistant") - [Matt Rogers (@rogersmj)](https://github.com/rogersmj "20 total commits to the home-assistant organization, 20 commits to hadashboard") -- [Matt Schmitt (@schmittx)](https://github.com/schmittx "90 total commits to the home-assistant organization, 52 commits to homebridge-homeassistant, 21 commits to home-assistant, 12 commits to home-assistant.io, 3 commits to home-assistant-polymer, 2 commits to developers.home-assistant") +- [Matt Schmitt (@schmittx)](https://github.com/schmittx "91 total commits to the home-assistant organization, 52 commits to homebridge-homeassistant, 22 commits to home-assistant, 12 commits to home-assistant.io, 3 commits to home-assistant-polymer, 2 commits to developers.home-assistant") - [Matt Snyder (@oblogic7)](https://github.com/oblogic7 "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") -- [Matt White (@mw-white)](https://github.com/mw-white "10 total commits to the home-assistant organization, 5 commits to home-assistant, 5 commits to home-assistant.io") - [Matt White (@matt-FFFFFF)](https://github.com/matt-FFFFFF "1 total commits to the home-assistant organization, 1 commit to hassio-addons") +- [Matt White (@mw-white)](https://github.com/mw-white "10 total commits to the home-assistant organization, 5 commits to home-assistant, 5 commits to home-assistant.io") - [Matteo Lampugnani (@t30)](https://github.com/t30 "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") - [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Matthew Garrett (@mjg59)](https://github.com/mjg59 "30 total commits to the home-assistant organization, 22 commits to home-assistant, 7 commits to home-assistant.io, 1 commit to netdisco") @@ -569,14 +576,13 @@ This page contains a list of people who have contributed in one way or another t - [Matthias Dötsch (@brainexe)](https://github.com/brainexe "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Matthias Urlichs (@smurfix)](https://github.com/smurfix "6 total commits to the home-assistant organization, 3 commits to appdaemon, 3 commits to home-assistant") - [Mattias Welponer (@mxworm)](https://github.com/mxworm "24 total commits to the home-assistant organization, 14 commits to home-assistant, 9 commits to home-assistant.io, 1 commit to home-assistant-polymer") -- [mattie47 (@mattie47)](https://github.com/mattie47 "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Max Mudde (@makzdot)](https://github.com/makzdot "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") - [Max Prokhorov (@mcspr)](https://github.com/mcspr "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") -- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [maxclaey (@maxclaey)](https://github.com/maxclaey "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io") +- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") +- [maxclaey (@maxclaey)](https://github.com/maxclaey "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [maxlaverse (@maxlaverse)](https://github.com/maxlaverse "6 total commits to the home-assistant organization, 6 commits to home-assistant") +- [mbo18 (@mbo18)](https://github.com/mbo18 "1 total commits to the home-assistant organization, 1 commit to hassio") - [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS") -- [mcfrojd (@mcfrojd)](https://github.com/mcfrojd "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Menno Blom (@b10m)](https://github.com/b10m "4 total commits to the home-assistant organization, 3 commits to home-assistant.io, 1 commit to netdisco") - [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [mgbowen (@mgbowen)](https://github.com/mgbowen "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") @@ -590,10 +596,10 @@ This page contains a list of people who have contributed in one way or another t - [Michael Luggen (@l00mi)](https://github.com/l00mi "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Michael Requeny (@requenym)](https://github.com/requenym "14 total commits to the home-assistant organization, 14 commits to home-assistant.io") - [Michael Shim (@shimeez)](https://github.com/shimeez "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant") +- [Michael Wei (@no2chem)](https://github.com/no2chem "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "65 total commits to the home-assistant organization, 34 commits to home-assistant, 27 commits to home-assistant.io, 3 commits to home-assistant-polymer, 1 commit to netdisco") - [Michel Settembrino (@Michel-Settembrino)](https://github.com/Michel-Settembrino "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [micw (@micw)](https://github.com/micw "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io") -- [mihalski (@mihalski)](https://github.com/mihalski "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [micw (@micw)](https://github.com/micw "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [Mike (@mradziwo)](https://github.com/mradziwo "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Mike Christianson (@MikeChristianson)](https://github.com/MikeChristianson "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [Mike Megally (@cmsimike)](https://github.com/cmsimike "14 total commits to the home-assistant organization, 9 commits to home-assistant, 5 commits to home-assistant.io") @@ -603,7 +609,7 @@ This page contains a list of people who have contributed in one way or another t - [Milan V\. (@milanvo)](https://github.com/milanvo "18 total commits to the home-assistant organization, 10 commits to home-assistant, 7 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [miniconfig (@miniconfig)](https://github.com/miniconfig "27 total commits to the home-assistant organization, 20 commits to home-assistant, 7 commits to home-assistant.io") - [Minims (@Minims)](https://github.com/Minims "3 total commits to the home-assistant organization, 3 commits to homebridge-homeassistant") -- [Mister Wil (@MisterWil)](https://github.com/MisterWil "20 total commits to the home-assistant organization, 14 commits to home-assistant, 6 commits to home-assistant.io") +- [Mister Wil (@MisterWil)](https://github.com/MisterWil "21 total commits to the home-assistant organization, 15 commits to home-assistant, 6 commits to home-assistant.io") - [Mitesh Patel (@gurumitts)](https://github.com/gurumitts "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.io") - [Mitko Masarliev (@masarliev)](https://github.com/masarliev "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.io") - [MizterB (@MizterB)](https://github.com/MizterB "3 total commits to the home-assistant organization, 3 commits to home-assistant") @@ -616,34 +622,37 @@ This page contains a list of people who have contributed in one way or another t - [motir (@motir)](https://github.com/motir "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "9 total commits to the home-assistant organization, 6 commits to home-assistant.io, 3 commits to home-assistant") - [mueslo (@mueslo)](https://github.com/mueslo "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [mukundv (@mukundv)](https://github.com/mukundv "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [mvn23 (@mvn23)](https://github.com/mvn23 "3 total commits to the home-assistant organization, 3 commits to home-assistant") +- [mvn23 (@mvn23)](https://github.com/mvn23 "11 total commits to the home-assistant organization, 6 commits to home-assistant.io, 5 commits to home-assistant") - [Myles Eftos (@madpilot)](https://github.com/madpilot "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "15 total commits to the home-assistant organization, 10 commits to home-assistant, 5 commits to home-assistant.io") - [Nathan Flynn (@eperdeme)](https://github.com/eperdeme "1 total commits to the home-assistant organization, 1 commit to hassio-addons") -- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "22 total commits to the home-assistant organization, 10 commits to home-assistant, 8 commits to home-assistant.io, 2 commits to homebridge-homeassistant, 1 commit to home-assistant-polymer, 1 commit to appdaemon") +- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "22 total commits to the home-assistant organization, 10 commits to home-assistant, 8 commits to home-assistant.io, 2 commits to homebridge-homeassistant, 1 commit to appdaemon, 1 commit to home-assistant-polymer") - [Nathan Knotts (@nknotts)](https://github.com/nknotts "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") +- [Neil Crosby (@NeilCrosby)](https://github.com/NeilCrosby "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") - [Neil Lathwood (@laf)](https://github.com/laf "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Nelis Willers (@NelisW)](https://github.com/NelisW "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant") - [NeLLyMerC (@NeLLyMerC)](https://github.com/NeLLyMerC "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Nicholas Amadori (@namadori)](https://github.com/namadori "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Nicholas Griffin (@nicholasgriffintn)](https://github.com/nicholasgriffintn "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") +- [Nicholas Westerhausen (@nwesterhausen)](https://github.com/nwesterhausen "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") - [Nick Touran (@partofthething)](https://github.com/partofthething "38 total commits to the home-assistant organization, 25 commits to home-assistant, 13 commits to home-assistant.io") - [Nick Whyte (@nickw444)](https://github.com/nickw444 "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [Nicko van Someren (@nickovs)](https://github.com/nickovs "4 total commits to the home-assistant organization, 4 commits to home-assistant") +- [Nicko van Someren (@nickovs)](https://github.com/nickovs "5 total commits to the home-assistant organization, 5 commits to home-assistant") - [Nicolas Graziano (@ngraziano)](https://github.com/ngraziano "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Nicolas Martignoni (@martignoni)](https://github.com/martignoni "1 total commits to the home-assistant organization, 1 commit to pi-gen") -- [Niels Mündler (@nielstron)](https://github.com/nielstron "21 total commits to the home-assistant organization, 16 commits to home-assistant, 3 commits to home-assistant.io, 2 commits to netdisco") +- [Niels Mündler (@nielstron)](https://github.com/nielstron "18 total commits to the home-assistant organization, 16 commits to home-assistant, 2 commits to netdisco") - [Nigel Rook (@NigelRook)](https://github.com/NigelRook "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Niklas (@niklaswa)](https://github.com/niklaswa "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Niklas Wagner (@Skaronator)](https://github.com/Skaronator "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") +- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to home-assistant-polymer") - [Nolan Darilek (@ndarilek)](https://github.com/ndarilek "1 total commits to the home-assistant organization, 1 commit to hassio") - [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "123 total commits to the home-assistant organization, 95 commits to home-assistant, 28 commits to home-assistant.io") - [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to home-assistant") - [NotoriousBDG (@notoriousbdg)](https://github.com/notoriousbdg "3 total commits to the home-assistant organization, 3 commits to hassio-addons") - [NovapaX (@NovapaX)](https://github.com/NovapaX "59 total commits to the home-assistant organization, 50 commits to home-assistant-polymer, 8 commits to home-assistant, 1 commit to home-assistant-assets") +- [noxhirsch (@noxhirsch)](https://github.com/noxhirsch "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [ntalekt (@ntalekt)](https://github.com/ntalekt "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") - [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to homebridge-homeassistant") - [obgm (@obgm)](https://github.com/obgm "480 total commits to the home-assistant organization, 480 commits to libcoap") @@ -651,21 +660,23 @@ This page contains a list of people who have contributed in one way or another t - [Ole\-Kenneth (@olekenneth)](https://github.com/olekenneth "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [Oleksii Serdiuk (@leppa)](https://github.com/leppa "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io") - [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "28 total commits to the home-assistant organization, 18 commits to home-assistant, 9 commits to home-assistant.io, 1 commit to netdisco") +- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "29 total commits to the home-assistant organization, 19 commits to home-assistant, 9 commits to home-assistant.io, 1 commit to netdisco") - [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the home-assistant organization, 10 commits to home-assistant") -- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") +- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") - [Open Home Automation (@open-homeautomation)](https://github.com/open-homeautomation "41 total commits to the home-assistant organization, 29 commits to home-assistant, 12 commits to home-assistant.io") - [ottersen (@ottersen)](https://github.com/ottersen "11 total commits to the home-assistant organization, 11 commits to home-assistant.io") -- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "74 total commits to the home-assistant organization, 58 commits to home-assistant, 13 commits to home-assistant.io, 3 commits to home-assistant-polymer") +- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "99 total commits to the home-assistant organization, 71 commits to home-assistant, 22 commits to home-assistant.io, 4 commits to home-assistant-polymer, 2 commits to developers.home-assistant") - [oznu (@oznu)](https://github.com/oznu "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [Parker Moore (@parkr)](https://github.com/parkr "60 total commits to the home-assistant organization, 60 commits to home-assistant.io") - [pascal (@passie)](https://github.com/passie "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant-polymer") - [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the home-assistant organization, 9 commits to home-assistant, 1 commit to netdisco") -- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "3760 total commits to the home-assistant organization, 1321 commits to hassio, 677 commits to hassos, 479 commits to home-assistant, 467 commits to hassio-build, 373 commits to hassio-addons, 333 commits to home-assistant.io, 34 commits to hassio-homeassistant, 23 commits to developers.home-assistant, 20 commits to hassio-cli, 17 commits to hassio-addons-example, 9 commits to hassio-base, 3 commits to hassio-addons-development, 2 commits to home-assistant-polymer, 1 commit to netdisco, 1 commit to home-assistant-js-websocket") +- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "3798 total commits to the home-assistant organization, 1341 commits to hassio, 680 commits to hassos, 484 commits to home-assistant, 468 commits to hassio-build, 375 commits to hassio-addons, 333 commits to home-assistant.io, 36 commits to hassio-homeassistant, 27 commits to developers.home-assistant, 20 commits to hassio-cli, 17 commits to hassio-addons-example, 10 commits to hassio-base, 3 commits to hassio-addons-development, 2 commits to home-assistant-polymer, 1 commit to home-assistant-js-websocket, 1 commit to netdisco") - [Pat Thoyts (@patthoyts)](https://github.com/patthoyts "2 total commits to the home-assistant organization, 2 commits to netdisco") +- [Patrick (@tradiuz)](https://github.com/tradiuz "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io") +- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.io") +- [Paul Davis (@paulbdavis)](https://github.com/paulbdavis "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Paul Hendry (@pshendry)](https://github.com/pshendry "1 total commits to the home-assistant organization, 1 commit to warrant") - [Paul Jimenez (@pjz)](https://github.com/pjz "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Paul Nicholls (@pauln)](https://github.com/pauln "2 total commits to the home-assistant organization, 2 commits to netdisco") @@ -675,32 +686,31 @@ This page contains a list of people who have contributed in one way or another t - [Pedro Navarro (@pedronavf)](https://github.com/pedronavf "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Pedro Pombeiro (@PombeirP)](https://github.com/PombeirP "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Per Osbäck (@perosb)](https://github.com/perosb "19 total commits to the home-assistant organization, 19 commits to home-assistant") -- [Per Sandström (@persandstrom)](https://github.com/persandstrom "124 total commits to the home-assistant organization, 98 commits to home-assistant, 14 commits to home-assistant.io, 12 commits to home-assistant-polymer") +- [Per Sandström (@persandstrom)](https://github.com/persandstrom "131 total commits to the home-assistant organization, 101 commits to home-assistant, 18 commits to home-assistant.io, 12 commits to home-assistant-polymer") - [Pete Peterson (@petey)](https://github.com/petey "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [PeteBa (@PeteBa)](https://github.com/PeteBa "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant-polymer") - [Peter Epley (@epleypa)](https://github.com/epleypa "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") - [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to home-assistant") - [Petr Vraník (@konikvranik)](https://github.com/konikvranik "11 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.io") - [pezinek (@pezinek)](https://github.com/pezinek "8 total commits to the home-assistant organization, 8 commits to home-assistant") +- [Phi Dong (@pdong)](https://github.com/pdong "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Phil (@godloth)](https://github.com/godloth "10 total commits to the home-assistant organization, 10 commits to home-assistant.io") - [Phil Cole (@filcole)](https://github.com/filcole "9 total commits to the home-assistant organization, 6 commits to home-assistant.io, 3 commits to home-assistant") - [Phil Elson (@pelson)](https://github.com/pelson "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Phil Frost (@bitglue)](https://github.com/bitglue "8 total commits to the home-assistant organization, 8 commits to home-assistant") -- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "24 total commits to the home-assistant organization, 18 commits to home-assistant.io, 6 commits to home-assistant") +- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "25 total commits to the home-assistant organization, 19 commits to home-assistant.io, 6 commits to home-assistant") - [Phil Kates (@philk)](https://github.com/philk "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.io") - [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") - [Philip Howard (@Gadgetoid)](https://github.com/Gadgetoid "1 total commits to the home-assistant organization, 1 commit to pi-gen") - [Philip Kleimeyer (@philklei)](https://github.com/philklei "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Philip Lundrigan (@philipbl)](https://github.com/philipbl "65 total commits to the home-assistant organization, 56 commits to home-assistant, 9 commits to home-assistant.io") -- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "19 total commits to the home-assistant organization, 12 commits to home-assistant, 7 commits to home-assistant.io") +- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "20 total commits to the home-assistant organization, 13 commits to home-assistant, 7 commits to home-assistant.io") - [Philipp Hellmich (@runningman84)](https://github.com/runningman84 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "40 total commits to the home-assistant organization, 27 commits to home-assistant, 11 commits to home-assistant.io, 1 commit to hassio-build, 1 commit to appdaemon") - [Phill Price (@phillprice)](https://github.com/phillprice "12 total commits to the home-assistant organization, 12 commits to home-assistant.io") - [PhracturedBlue (@PhracturedBlue)](https://github.com/PhracturedBlue "42 total commits to the home-assistant organization, 25 commits to home-assistant, 13 commits to home-assistant.io, 4 commits to home-assistant-polymer") -- [PhyberApex (@PhyberApex)](https://github.com/PhyberApex "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Pierre Ståhl (@postlund)](https://github.com/postlund "50 total commits to the home-assistant organization, 33 commits to home-assistant, 11 commits to home-assistant.io, 4 commits to netdisco, 2 commits to home-assistant-polymer") - [pkonnekermetametrics (@pkonnekermetametrics)](https://github.com/pkonnekermetametrics "5 total commits to the home-assistant organization, 5 commits to warrant") -- [plyblu (@plyblu)](https://github.com/plyblu "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [PuckStar (@PuckStar)](https://github.com/PuckStar "7 total commits to the home-assistant organization, 7 commits to home-assistant.io") - [quthla (@quthla)](https://github.com/quthla "13 total commits to the home-assistant organization, 5 commits to home-assistant-polymer, 4 commits to home-assistant-iOS, 4 commits to home-assistant") - [rafale77 (@rafale77)](https://github.com/rafale77 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") @@ -725,15 +735,17 @@ This page contains a list of people who have contributed in one way or another t - [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Rob Cranfill (@RobCranfill)](https://github.com/RobCranfill "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1432 total commits to the home-assistant organization, 754 commits to home-assistant-iOS, 260 commits to home-assistant, 249 commits to home-assistant.io, 93 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 14 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to scenegen, 3 commits to hadashboard, 3 commits to home-assistant-js, 3 commits to hassbot, 3 commits to appdaemon, 3 commits to organization, 3 commits to home-assistant-js-websocket, 2 commits to home-assistant-notebooks, 2 commits to LabelBot, 2 commits to fabric-home-assistant, 2 commits to micropython-home-assistant, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-assets") +- [Robbert Müller (@mjrider)](https://github.com/mjrider "2 total commits to the home-assistant organization, 2 commits to hassio-cli") +- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1447 total commits to the home-assistant organization, 769 commits to home-assistant-iOS, 260 commits to home-assistant, 249 commits to home-assistant.io, 93 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 14 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to organization, 3 commits to home-assistant-js-websocket, 3 commits to scenegen, 3 commits to hadashboard, 3 commits to appdaemon, 3 commits to hassbot, 3 commits to home-assistant-js, 2 commits to fabric-home-assistant, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-notebooks, 2 commits to LabelBot, 2 commits to micropython-home-assistant, 2 commits to home-assistant-assets") - [Robert (@metbril)](https://github.com/metbril "8 total commits to the home-assistant organization, 8 commits to home-assistant.io") - [Robert Accettura (@raccettura)](https://github.com/raccettura "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") +- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "1 total commits to the home-assistant organization, 1 commit to hassos") - [Robert Schütz (@dotlambda)](https://github.com/dotlambda "3 total commits to the home-assistant organization, 2 commits to netdisco, 1 commit to appdaemon") -- [Robert Svensson (@Kane610)](https://github.com/Kane610 "80 total commits to the home-assistant organization, 53 commits to home-assistant, 24 commits to home-assistant.io, 1 commit to netdisco, 1 commit to home-assistant-polymer, 1 commit to developers.home-assistant") +- [Robert Svensson (@Kane610)](https://github.com/Kane610 "83 total commits to the home-assistant organization, 53 commits to home-assistant, 26 commits to home-assistant.io, 2 commits to developers.home-assistant, 1 commit to netdisco, 1 commit to home-assistant-polymer") - [Robin (@robmarkcole)](https://github.com/robmarkcole "57 total commits to the home-assistant organization, 35 commits to home-assistant.io, 19 commits to home-assistant, 2 commits to home-assistant-assets, 1 commit to hassos") - [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the home-assistant organization, 1 commit to appdaemon") - [Roddie Hasan (@eiddor)](https://github.com/eiddor "6 total commits to the home-assistant organization, 6 commits to home-assistant.io") -- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "8 total commits to the home-assistant organization, 8 commits to home-assistant") +- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "18 total commits to the home-assistant organization, 15 commits to home-assistant, 3 commits to home-assistant.io") - [Roi Dayan (@roidayan)](https://github.com/roidayan "6 total commits to the home-assistant organization, 6 commits to home-assistant") - [roiff (@roiff)](https://github.com/roiff "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [Rolf Schäuble (@rschaeuble)](https://github.com/rschaeuble "1 total commits to the home-assistant organization, 1 commit to appdaemon") @@ -748,7 +760,7 @@ This page contains a list of people who have contributed in one way or another t - [Ruslan Sayfutdinov (@KapJI)](https://github.com/KapJI "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") - [Russ K (@rkubes)](https://github.com/rkubes "2 total commits to the home-assistant organization, 2 commits to pi-gen") - [Russell Cloran (@rcloran)](https://github.com/rcloran "37 total commits to the home-assistant organization, 33 commits to home-assistant, 4 commits to homebridge-homeassistant") -- [Ryan Bahm (@rdbahm)](https://github.com/rdbahm "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [Ryan Bahm (@rdbahm)](https://github.com/rdbahm "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Ryan Bray (@rbray89)](https://github.com/rbray89 "13 total commits to the home-assistant organization, 12 commits to hassos, 1 commit to hassio-build") - [Ryan Daigle (@rwdaigle)](https://github.com/rwdaigle "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Ryan Jarvis (@Cabalist)](https://github.com/Cabalist "1 total commits to the home-assistant organization, 1 commit to hassbian-scripts") @@ -760,7 +772,7 @@ This page contains a list of people who have contributed in one way or another t - [Sacha Telgenhof (@stelgenhof)](https://github.com/stelgenhof "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Sam Holmes (@sam3d)](https://github.com/sam3d "4 total commits to the home-assistant organization, 4 commits to pi-gen") - [sam-io (@sam-io)](https://github.com/sam-io "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [sander76 (@sander76)](https://github.com/sander76 "43 total commits to the home-assistant organization, 39 commits to home-assistant, 4 commits to home-assistant.io") +- [sander76 (@sander76)](https://github.com/sander76 "40 total commits to the home-assistant organization, 40 commits to home-assistant") - [sbYm (@GongT)](https://github.com/GongT "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [schumpeter2 (@schumpeter2)](https://github.com/schumpeter2 "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Scott (@lostage)](https://github.com/lostage "1 total commits to the home-assistant organization, 1 commit to developers.home-assistant") @@ -770,10 +782,10 @@ This page contains a list of people who have contributed in one way or another t - [Scott Reston (@ih8gates)](https://github.com/ih8gates "10 total commits to the home-assistant organization, 9 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Sean Dague (@sdague)](https://github.com/sdague "77 total commits to the home-assistant organization, 54 commits to home-assistant, 14 commits to home-assistant.io, 5 commits to home-assistant-polymer, 3 commits to netdisco, 1 commit to home-assistant-js") - [Sean Gollschewsky (@gollo)](https://github.com/gollo "17 total commits to the home-assistant organization, 10 commits to home-assistant, 4 commits to home-assistant.io, 3 commits to hassio-build") -- [Sean Wilson (@swilson)](https://github.com/swilson "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to home-assistant-polymer") +- [Sean Wilson (@swilson)](https://github.com/swilson "9 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.io, 1 commit to home-assistant-polymer") - [Sebastian (@sebk-666)](https://github.com/sebk-666 "6 total commits to the home-assistant organization, 5 commits to home-assistant.io, 1 commit to netdisco") - [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the home-assistant organization, 3 commits to libcoap") -- [Sebastian Muszynski (@syssi)](https://github.com/syssi "138 total commits to the home-assistant organization, 88 commits to home-assistant, 45 commits to home-assistant.io, 3 commits to netdisco, 2 commits to home-assistant-polymer") +- [Sebastian Muszynski (@syssi)](https://github.com/syssi "146 total commits to the home-assistant organization, 93 commits to home-assistant, 48 commits to home-assistant.io, 3 commits to netdisco, 2 commits to home-assistant-polymer") - [Sebastian von Minckwitz (@teodoc)](https://github.com/teodoc "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Semir Patel (@analogue)](https://github.com/analogue "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Sergey Isachenko (@zabuldon)](https://github.com/zabuldon "9 total commits to the home-assistant organization, 9 commits to home-assistant") @@ -785,7 +797,7 @@ This page contains a list of people who have contributed in one way or another t - [Simon (@echox)](https://github.com/echox "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Simon Holzmayer (@sholzmayer)](https://github.com/sholzmayer "2 total commits to the home-assistant organization, 1 commit to hassio, 1 commit to developers.home-assistant") - [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to home-assistant") -- [sjabby (@sjabby)](https://github.com/sjabby "29 total commits to the home-assistant organization, 28 commits to home-assistant.io, 1 commit to hassbian-scripts") +- [sjabby (@sjabby)](https://github.com/sjabby "30 total commits to the home-assistant organization, 29 commits to home-assistant.io, 1 commit to hassbian-scripts") - [Sjors Spoorendonk (@sjorsjes)](https://github.com/sjorsjes "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [sjoshi10 (@sjoshi10)](https://github.com/sjoshi10 "1 total commits to the home-assistant organization, 1 commit to warrant") - [snizzleorg (@snizzleorg)](https://github.com/snizzleorg "5 total commits to the home-assistant organization, 5 commits to hadashboard") @@ -795,13 +807,12 @@ This page contains a list of people who have contributed in one way or another t - [Stefan Jonasson (@stefan-jonasson)](https://github.com/stefan-jonasson "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.io") - [Stefano Scipioni (@scipioni)](https://github.com/scipioni "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Steltek (@Steltek)](https://github.com/Steltek "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") -- [stephanerosi (@stephanerosi)](https://github.com/stephanerosi "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.io") +- [stephanerosi (@stephanerosi)](https://github.com/stephanerosi "8 total commits to the home-assistant organization, 8 commits to home-assistant") - [Stephen Edgar (@ntwb)](https://github.com/ntwb "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant") -- [Stephen Tomkinson (@neonbunny)](https://github.com/neonbunny "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Stephen Vanterpool (@blackgold9)](https://github.com/blackgold9 "75 total commits to the home-assistant organization, 73 commits to home-assistant-iOS, 1 commit to developers.home-assistant, 1 commit to home-assistant-polymer") +- [Stephen Vanterpool (@blackgold9)](https://github.com/blackgold9 "94 total commits to the home-assistant organization, 92 commits to home-assistant-iOS, 1 commit to developers.home-assistant, 1 commit to home-assistant-polymer") - [Stephen Yeargin (@stephenyeargin)](https://github.com/stephenyeargin "25 total commits to the home-assistant organization, 24 commits to hubot-home-assistant, 1 commit to home-assistant-polymer") - [Steve Easley (@SteveEasley)](https://github.com/SteveEasley "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to netdisco") +- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "40 total commits to the home-assistant organization, 37 commits to home-assistant, 3 commits to netdisco") - [Stu Gott (@stu-gott)](https://github.com/stu-gott "9 total commits to the home-assistant organization, 5 commits to home-assistant.io, 4 commits to home-assistant") - [Stuart Williams (@stuwil)](https://github.com/stuwil "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Sven\-Hendrik Haase (@svenstaro)](https://github.com/svenstaro "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") @@ -810,14 +821,13 @@ This page contains a list of people who have contributed in one way or another t - [Sytone (@sytone)](https://github.com/sytone "8 total commits to the home-assistant organization, 6 commits to home-assistant.io, 1 commit to hassio-build, 1 commit to developers.home-assistant") - [Sören Oldag (@soldag)](https://github.com/soldag "16 total commits to the home-assistant organization, 8 commits to home-assistant, 8 commits to home-assistant.io") - [Tabakhase (@tabakhase)](https://github.com/tabakhase "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") -- [tadly (@tadly)](https://github.com/tadly "7 total commits to the home-assistant organization, 7 commits to home-assistant") +- [tadly (@tadly)](https://github.com/tadly "8 total commits to the home-assistant organization, 8 commits to home-assistant") - [tango-foxtrot (@tango-foxtrot)](https://github.com/tango-foxtrot "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Taylor Peet (@RePeet13)](https://github.com/RePeet13 "9 total commits to the home-assistant organization, 9 commits to home-assistant.io") - [Teagan Glenn (@Teagan42)](https://github.com/Teagan42 "59 total commits to the home-assistant organization, 49 commits to home-assistant, 9 commits to home-assistant.io, 1 commit to home-assistant-js") - [Ted Drain (@TD22057)](https://github.com/TD22057 "4 total commits to the home-assistant organization, 4 commits to home-assistant") -- [tedstriker (@tedstriker)](https://github.com/tedstriker "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Teemu Mikkonen (@T3m3z)](https://github.com/T3m3z "3 total commits to the home-assistant organization, 3 commits to home-assistant") -- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "60 total commits to the home-assistant organization, 47 commits to home-assistant, 9 commits to home-assistant.io, 4 commits to netdisco") +- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "62 total commits to the home-assistant organization, 49 commits to home-assistant, 9 commits to home-assistant.io, 4 commits to netdisco") - [Teguh Sobirin (@tjstyle)](https://github.com/tjstyle "2 total commits to the home-assistant organization, 2 commits to pi-gen") - [Tentoe (@Tentoe)](https://github.com/Tentoe "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Theb-1 (@Theb-1)](https://github.com/Theb-1 "5 total commits to the home-assistant organization, 5 commits to home-assistant") @@ -832,6 +842,7 @@ This page contains a list of people who have contributed in one way or another t - [ThinkPadNL (@ThinkPadNL)](https://github.com/ThinkPadNL "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Thom Troy (@ttroy50)](https://github.com/ttroy50 "15 total commits to the home-assistant organization, 8 commits to home-assistant.io, 7 commits to home-assistant") - [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "3 total commits to the home-assistant organization, 3 commits to home-assistant") +- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "9 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to home-assistant, 2 commits to home-assistant-polymer") - [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "1 total commits to the home-assistant organization, 1 commit to libcoap") - [Thomas Phillips (@thomas-phillips-nz)](https://github.com/thomas-phillips-nz "2 total commits to the home-assistant organization, 2 commits to pi-gen") - [Thomas Purchas (@thomaspurchas)](https://github.com/thomaspurchas "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") @@ -855,26 +866,27 @@ This page contains a list of people who have contributed in one way or another t - [Tom (@Qu3uk)](https://github.com/Qu3uk "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Tom Dickman (@tdickman)](https://github.com/tdickman "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the home-assistant organization, 53 commits to home-assistant, 9 commits to home-assistant.io, 6 commits to home-assistant-polymer, 2 commits to netdisco") -- [Tom Harris (@teharris1)](https://github.com/teharris1 "28 total commits to the home-assistant organization, 18 commits to home-assistant, 10 commits to home-assistant.io") +- [Tom Harris (@teharris1)](https://github.com/teharris1 "29 total commits to the home-assistant organization, 19 commits to home-assistant, 10 commits to home-assistant.io") - [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "13 total commits to the home-assistant organization, 6 commits to home-assistant, 4 commits to home-assistant-polymer, 3 commits to home-assistant.io") +- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "15 total commits to the home-assistant organization, 6 commits to home-assistant, 4 commits to home-assistant-polymer, 4 commits to home-assistant.io, 1 commit to developers.home-assistant") - [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Tomi Salmi (@tomppasalmi)](https://github.com/tomppasalmi "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Tomi Tuhkanen (@ttu)](https://github.com/ttu "3 total commits to the home-assistant organization, 3 commits to home-assistant") +- [Tommy Jonsson (@quazzie)](https://github.com/quazzie "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [TopdRob (@TopdRob)](https://github.com/TopdRob "7 total commits to the home-assistant organization, 7 commits to home-assistant") - [Torkild Retvedt (@torkildr)](https://github.com/torkildr "2 total commits to the home-assistant organization, 2 commits to appdaemon") - [Toshik (@Toshik)](https://github.com/Toshik "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") - [Touliloup (@RiRomain)](https://github.com/RiRomain "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") -- [tradiuz (@tradiuz)](https://github.com/tradiuz "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") -- [travislreno (@travislreno)](https://github.com/travislreno "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") +- [Travis Carr (@tmcarr)](https://github.com/tmcarr "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [trbs (@trbs)](https://github.com/trbs "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Trevor (@tboyce021)](https://github.com/tboyce021 "15 total commits to the home-assistant organization, 10 commits to home-assistant, 5 commits to home-assistant.io") - [Trey Hunner (@treyhunner)](https://github.com/treyhunner "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the home-assistant organization, 5 commits to home-assistant") -- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "12 total commits to the home-assistant organization, 6 commits to home-assistant.io, 6 commits to home-assistant") +- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "15 total commits to the home-assistant organization, 8 commits to home-assistant, 7 commits to home-assistant.io") +- [tuxuser (@tuxuser)](https://github.com/tuxuser "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Tyler Page (@iamtpage)](https://github.com/iamtpage "3 total commits to the home-assistant organization, 3 commits to home-assistant.io") - [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant") -- [uchagani (@uchagani)](https://github.com/uchagani "8 total commits to the home-assistant organization, 7 commits to home-assistant, 1 commit to home-assistant-polymer") +- [uchagani (@uchagani)](https://github.com/uchagani "9 total commits to the home-assistant organization, 8 commits to home-assistant, 1 commit to home-assistant-polymer") - [Uli (@uehler)](https://github.com/uehler "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [ultratoto14 (@ultratoto14)](https://github.com/ultratoto14 "1 total commits to the home-assistant organization, 1 commit to netdisco") - [UnrealKazu (@UnrealKazu)](https://github.com/UnrealKazu "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") @@ -885,12 +897,13 @@ This page contains a list of people who have contributed in one way or another t - [Victor Cerutti (@victorcerutti)](https://github.com/victorcerutti "3 total commits to the home-assistant organization, 3 commits to home-assistant-polymer") - [Viet Dzung (@dzungpv)](https://github.com/dzungpv "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Vignesh Venkat (@vickyg3)](https://github.com/vickyg3 "11 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.io") -- [Ville Skyttä (@scop)](https://github.com/scop "109 total commits to the home-assistant organization, 71 commits to home-assistant, 13 commits to home-assistant.io, 11 commits to netdisco, 4 commits to hassio-addons, 3 commits to hassio-cli, 2 commits to home-assistant-polymer, 2 commits to hassio-build, 2 commits to developers.home-assistant, 1 commit to hassio") +- [Ville Skyttä (@scop)](https://github.com/scop "117 total commits to the home-assistant organization, 76 commits to home-assistant, 14 commits to home-assistant.io, 11 commits to netdisco, 4 commits to hassio-addons, 4 commits to hassio-cli, 3 commits to developers.home-assistant, 2 commits to hassio-build, 2 commits to home-assistant-polymer, 1 commit to hassio") - [Villányi Bálint (@villanyibalint)](https://github.com/villanyibalint "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Vincent Van Den Berghe (@vandenberghev)](https://github.com/vandenberghev "3 total commits to the home-assistant organization, 3 commits to home-assistant") - [viswa-swami (@viswa-swami)](https://github.com/viswa-swami "9 total commits to the home-assistant organization, 9 commits to home-assistant") - [Vlad Korniev (@vkorn)](https://github.com/vkorn "1 total commits to the home-assistant organization, 1 commit to hassio-build") - [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the home-assistant organization, 3 commits to libcoap") +- [vMeph (@vMeph)](https://github.com/vMeph "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [vrs01 (@vrs01)](https://github.com/vrs01 "20 total commits to the home-assistant organization, 14 commits to home-assistant.io, 6 commits to appdaemon") - [Wagner Sartori Junior (@trunet)](https://github.com/trunet "1 total commits to the home-assistant organization, 1 commit to netdisco") - [Wesley Young (@wesdyoung)](https://github.com/wesdyoung "1 total commits to the home-assistant organization, 1 commit to warrant") @@ -899,9 +912,10 @@ This page contains a list of people who have contributed in one way or another t - [Will W\. (@tiktok7)](https://github.com/tiktok7 "4 total commits to the home-assistant organization, 4 commits to home-assistant") - [Willems Davy (@joyrider3774)](https://github.com/joyrider3774 "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [William Johansson (@radhus)](https://github.com/radhus "1 total commits to the home-assistant organization, 1 commit to hassio") -- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "123 total commits to the home-assistant organization, 83 commits to home-assistant, 37 commits to home-assistant.io, 2 commits to netdisco, 1 commit to developers.home-assistant") +- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "128 total commits to the home-assistant organization, 85 commits to home-assistant, 38 commits to home-assistant.io, 2 commits to developers.home-assistant, 2 commits to netdisco, 1 commit to home-assistant-polymer") - [williamlehman (@williamlehman)](https://github.com/williamlehman "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Wim Haanstra (@depl0y)](https://github.com/depl0y "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.io") +- [WofWca (@WofWca)](https://github.com/WofWca "7 total commits to the home-assistant organization, 4 commits to home-assistant.io, 3 commits to developers.home-assistant") - [wokar (@wokar)](https://github.com/wokar "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.io") - [Wolf\-Bastian Pöttner (@BastianPoe)](https://github.com/BastianPoe "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.io") - [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "5 total commits to the home-assistant organization, 5 commits to home-assistant") @@ -912,14 +926,16 @@ This page contains a list of people who have contributed in one way or another t - [Yevgeniy (@sgttrs)](https://github.com/sgttrs "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [yingzong (@yingzong)](https://github.com/yingzong "1 total commits to the home-assistant organization, 1 commit to warrant") - [yulongying (@yulongying)](https://github.com/yulongying "1 total commits to the home-assistant organization, 1 commit to home-assistant-js-websocket") +- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer") - [Zen Tormey (@xehn)](https://github.com/xehn "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Zhao Lu (@zlu)](https://github.com/zlu "4 total commits to the home-assistant organization, 4 commits to home-assistant.io") - [Zio Tibia (@ziotibia81)](https://github.com/ziotibia81 "12 total commits to the home-assistant organization, 7 commits to home-assistant.io, 5 commits to home-assistant") - [Zorks (@Zorks)](https://github.com/Zorks "5 total commits to the home-assistant organization, 5 commits to home-assistant.io") - [Zoé Bőle (@zoe1337)](https://github.com/zoe1337 "3 total commits to the home-assistant organization, 3 commits to home-assistant") +- [zxdavb (@zxdavb)](https://github.com/zxdavb "10 total commits to the home-assistant organization, 10 commits to home-assistant.io") - [Åskar Andersson (@olskar)](https://github.com/olskar "10 total commits to the home-assistant organization, 6 commits to home-assistant.io, 3 commits to home-assistant, 1 commit to hassbian-scripts") This page is irregularly updated using the [`credits_generator` tool](https://github.com/home-assistant/home-assistant.github.io/tree/next/credits_generator). If you think that you are missing, please let us know. -This page was last updated Friday, September 28th 2018, 8:02:13 pm UTC. +This page was last updated Sunday, October 14th 2018, 11:41:31 am UTC.