diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index 1f74dac813e..3cb32f42203 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -4,7 +4,8 @@ on: [push, pull_request] jobs: remark: - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Checking out files from GitHub uses: actions/checkout@v1 diff --git a/Gemfile b/Gemfile index 4c86a237eba..88969a48fa7 100644 --- a/Gemfile +++ b/Gemfile @@ -13,18 +13,18 @@ end group :jekyll_plugins do gem 'jekyll-paginate', '1.1.0' gem 'jekyll-redirect-from', '0.15.0' - gem 'jekyll-sitemap', '1.3.1' + gem 'jekyll-sitemap', '1.4.0' gem 'jekyll-time-to-read', '0.1.2' gem 'jekyll-commonmark', '1.3.1' end gem 'sinatra', '2.0.7' -gem 'nokogiri', '1.10.5' +gem 'nokogiri', '1.10.6' # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem # and associated library install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do - gem 'tzinfo', '~> 1.2' + gem 'tzinfo', '~> 2.0' gem 'tzinfo-data' end diff --git a/Gemfile.lock b/Gemfile.lock index 0bd8ccada10..18e2e968de2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -25,8 +25,8 @@ GEM http_parser.rb (~> 0.6.0) eventmachine (1.2.7) eventmachine (1.2.7-x64-mingw32) - ffi (1.11.1) - ffi (1.11.1-x64-mingw32) + ffi (1.11.2) + ffi (1.11.2-x64-mingw32) forwardable-extended (2.6.0) http_parser.rb (0.6.0) i18n (1.7.0) @@ -54,7 +54,7 @@ GEM jekyll (>= 3.3, < 5.0) jekyll-sass-converter (2.0.1) sassc (> 2.0.1, < 3.0) - jekyll-sitemap (1.3.1) + jekyll-sitemap (1.4.0) jekyll (>= 3.7, < 5.0) jekyll-time-to-read (0.1.2) jekyll @@ -71,9 +71,9 @@ GEM mini_portile2 (2.4.0) multi_json (1.14.1) mustermann (1.0.3) - nokogiri (1.10.5) + nokogiri (1.10.6) mini_portile2 (~> 2.4.0) - nokogiri (1.10.5-x64-mingw32) + nokogiri (1.10.6-x64-mingw32) mini_portile2 (~> 2.4.0) pathutil (0.16.2) forwardable-extended (~> 2.6) @@ -85,7 +85,7 @@ GEM rb-fsevent (0.10.3) rb-inotify (0.10.0) ffi (~> 1.0) - rouge (3.12.0) + rouge (3.13.0) ruby-enum (0.7.2) i18n safe_yaml (1.0.5) @@ -104,10 +104,9 @@ GEM stringex (2.8.5) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) - thread_safe (0.3.6) tilt (2.0.10) - tzinfo (1.2.5) - thread_safe (~> 0.1) + tzinfo (2.0.0) + concurrent-ruby (~> 1.0) tzinfo-data (1.2019.3) tzinfo (>= 1.0.0) unicode-display_width (1.6.0) @@ -122,14 +121,14 @@ DEPENDENCIES jekyll-commonmark (= 1.3.1) jekyll-paginate (= 1.1.0) jekyll-redirect-from (= 0.15.0) - jekyll-sitemap (= 1.3.1) + jekyll-sitemap (= 1.4.0) jekyll-time-to-read (= 0.1.2) - nokogiri (= 1.10.5) + nokogiri (= 1.10.6) rake (= 13.0.1) sass-globbing (= 1.1.5) sinatra (= 2.0.7) stringex (= 2.8.5) - tzinfo (~> 1.2) + tzinfo (~> 2.0) tzinfo-data RUBY VERSION diff --git a/_config.yml b/_config.yml index d1af9113949..ed5e2351b61 100644 --- a/_config.yml +++ b/_config.yml @@ -101,8 +101,8 @@ social: # Home Assistant release details current_major_version: 0 current_minor_version: 102 -current_patch_version: 0 -date_released: 2019-11-20 +current_patch_version: 3 +date_released: 2019-11-29 # Either # or the anchor link to latest release notes in the blog post. # Must be prefixed with a # and have double quotes around it. diff --git a/source/_addons/mosquitto.markdown b/source/_addons/mosquitto.markdown index 7b1f5af0c3f..67e74ff8f00 100644 --- a/source/_addons/mosquitto.markdown +++ b/source/_addons/mosquitto.markdown @@ -77,6 +77,16 @@ To use the Mosquitto as [broker](/docs/mqtt/broker/#run-your-own), go to the int Password: MQTT_PASSWORD ``` +If you are using the ACL, remember to enter the newly created user and homeassistant in `/share/mosquitto/accesscontrollist` as follows: + +```text +user [YOUR_MQTT_USER] +topic readwrite # +user homeassistant +topic readwrite # +``` + + Note: .yaml modifications are not required. See [testing your setup](/docs/mqtt/testing/) to verify the steps above. diff --git a/source/_addons/samba.markdown b/source/_addons/samba.markdown index 3aa6f3eff87..324d8a5bdfd 100644 --- a/source/_addons/samba.markdown +++ b/source/_addons/samba.markdown @@ -14,7 +14,7 @@ Be careful when setting up port forwarding for remote access. If you don't restr
-Sometimes shares will not show up under network in Windows. Then you could open the file browser, click the address field where it says "> Network" and type //HASSIO to access Hass.io shares. +Sometimes shares will not show up under network in Windows. Then you could open the file browser, click the address field where it says "> Network" and type `\\HASSIO` to access Hass.io shares.
diff --git a/source/_cookbook/track_battery_level.markdown b/source/_cookbook/track_battery_level.markdown index caaede14705..76051b8c5aa 100644 --- a/source/_cookbook/track_battery_level.markdown +++ b/source/_cookbook/track_battery_level.markdown @@ -4,6 +4,9 @@ description: "Basic example how to track the battery level of your mobile device ha_category: Automation Examples --- +### Android and iOS Devices +The [Home Assistant Companion Apps](https://companion.home-assistant.io/) for iOS and Android pass the current battery level to Home Assistant with every location update. The default name of the sensor used is `sensor.battery_level`. + ### iOS Devices If you have a device running iOS (iPhone, iPad, etc), The [iCloud](/integrations/icloud) integration is gathering various details about your device including the battery level. To display it in the Frontend use a [template sensor](/integrations/template). You can also use the `battery` [sensor device class](/integrations/sensor/#device-class) to dynamically change the icon with the battery level. @@ -26,10 +29,6 @@ sensor: ``` {% endraw %} -### Android and iOS Devices -While running the [Owntracks](/integrations/owntracks) device tracker you can retrieve the battery level. -How you achieve this depends on how you have configured your Owntracks instance. - #### MQTT If you have configured Owntracks to send reports via MQTT you can use the received data via a MQTT sensor. Replace username with your MQTT username (for the embedded MQTT it's simply homeassistant), and deviceid with the set Device ID in Owntracks. @@ -48,7 +47,7 @@ sensor: #### HTTP -If you have configured Owntracks to send reports to your Home Assistant instance via HTTP you can use a template sensor. +If you have configured Owntracks to send reports to your Home Assistant instance via HTTP you can use a template sensor. Replace `deviceid` with the set Device ID in Owntracks. {% raw %} diff --git a/source/_docs/automation/editor.markdown b/source/_docs/automation/editor.markdown index 3cb6a998a96..37f4886676d 100644 --- a/source/_docs/automation/editor.markdown +++ b/source/_docs/automation/editor.markdown @@ -79,7 +79,7 @@ For example, the below automation will be triggered when the sun goes from below ```yaml # Example automations.yaml entry -- id: my_unique_id # <-- Required for editor to work. +- id: my_unique_id # <-- Required for editor to work, for automations created with the editor the id will be automatically generated. alias: Hello world trigger: - platform: state diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 5df06230c4f..dde02bf7380 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -104,7 +104,7 @@ Other state examples: {% if states('sensor.temperature') | float > 20 %} It is warm! -{%endif %} +{% endif %} {{ as_timestamp(states.binary_sensor.garage_door.last_changed) }} @@ -325,7 +325,10 @@ Some of these functions can also be used in a [filter](https://jinja.palletsproj - `e` mathematical constant, approximately 2.71828. - `pi` mathematical constant, approximately 3.14159. - `tau` mathematical constant, approximately 6.28318. -- Filter `round(x)` will convert the input to a number and round it to `x` decimals. +- Filter `round(x)` will convert the input to a number and round it to `x` decimals. Round has four modes and the default mode (with no mode specified) will [round-to-even](https://en.wikipedia.org/wiki/Rounding#Roundhalfto_even). + - `round(x, "floor")` will always round down to `x` decimals + - `round(x, "ceil")` will always round up to `x` decimals + - `round(1, "half")` will always round to the nearest .5 value. `x` should be 1 for this mode - Filter `max` will obtain the largest item in a sequence. - Filter `min` will obtain the smallest item in a sequence. - Filter `value_one|bitwise_and(value_two)` perform a bitwise and(&) operation with two values. @@ -377,7 +380,7 @@ Nested JSON in a response is supported as well: }, "values": { "temp": 26.09, - "hum": 56.73, + "hum": 56.73 } } ``` diff --git a/source/_docs/configuration/troubleshooting.markdown b/source/_docs/configuration/troubleshooting.markdown index 6c0b22d35cd..a41b99ae906 100644 --- a/source/_docs/configuration/troubleshooting.markdown +++ b/source/_docs/configuration/troubleshooting.markdown @@ -22,7 +22,7 @@ One of the most common problems with Home Assistant is an invalid `configuration - You can test your configuration using the command line with: `hass --script check_config`. - On Hass.io you can use the [hassio command](/hassio/commandline/#home-assistant): `hassio homeassistant check`. - - On Docker you can use `docker exec home-assistant python -m homeassistant --script check_config --config /config` - where `homeassistant` is the name of the container. + - On Docker you can use `docker exec home-assistant python -m homeassistant --script check_config --config /config` - where `home-assistant` is the name of the container. - The configuration files, including `configuration.yaml` must be UTF-8 encoded. If you see error like `'utf-8' codec can't decode byte`, edit the offending configuration and re-save it as UTF-8. - You can verify your configuration's yaml structure using [this online YAML parser](http://yaml-online-parser.appspot.com/) or [YAML Lint](http://www.yamllint.com/). - To learn more about the quirks of YAML, read [YAML IDIOSYNCRASIES](https://docs.saltstack.com/en/latest/topics/troubleshooting/yaml_idiosyncrasies.html) by SaltStack (the examples there are specific to SaltStack, but do explain YAML issues well). diff --git a/source/_docs/ecosystem/appdaemon.markdown b/source/_docs/ecosystem/appdaemon.markdown index dff067d4042..5f8e20b8284 100755 --- a/source/_docs/ecosystem/appdaemon.markdown +++ b/source/_docs/ecosystem/appdaemon.markdown @@ -57,7 +57,7 @@ import appdaemon.plugins.hass.hassapi as hass class FlashyMotionLights(hass.Hass): def initialize(self): - self.listen_state(self.motion, "binary_sensor.drive", new = "on") + self.listen_state(self.motion, "binary_sensor.drive", new="on") def motion(self, entity, attribute, old, new, kwargs): if self.sun_down(): @@ -78,7 +78,7 @@ import appdaemon.plugins.hass.hassapi as hass class MotionLights(hass.Hass): def initialize(self): - self.listen_state(self.motion, "binary_sensor.drive", new = "on") + self.listen_state(self.motion, "binary_sensor.drive", new="on") def motion(self, entity, attribute, old, new, kwargs): if self.self.sun_down(): diff --git a/source/_docs/ecosystem/certificates/tls_self_signed_certificate.markdown b/source/_docs/ecosystem/certificates/tls_self_signed_certificate.markdown index e352481dd5b..d2b1d2c7d29 100644 --- a/source/_docs/ecosystem/certificates/tls_self_signed_certificate.markdown +++ b/source/_docs/ecosystem/certificates/tls_self_signed_certificate.markdown @@ -1,13 +1,16 @@ --- -title: "Self-signed certificate for SSL/TLS" -description: "Configure a self-signed certificate to use with Home Assistant" +title: "Certificate Authority and self-signed certificate for SSL/TLS" +description: "Configure a Certificate Authority and self-signed certificate to use with Home Assistant" redirect_from: /cookbook/tls_self_signed_certificate/ --- If your Home Assistant instance is only accessible from your local network you can still protect the communication between your browsers and the frontend with SSL/TLS. -[Let's encrypt]({{site_root}}/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/) will only work if you have a DNS entry and remote access is allowed. +[Let's encrypt]({{site_root}}/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/) will only work if you have a DNS entry and remote access is allowed. + The solution is to use a self-signed certificate. As you most likely don't have a certification authority (CA) your browser will complain about the security. If you have a CA then this will not be an issue. +If you use Chrome browser version 58 or above and/or **don't want to have issues regarding a non-trusted CA or CN (Common Name)**, follow this full tutorial: [Create Root Certificate Authority and self-signed certificate for your Home Assistant. Compatible with Chrome browser > version 58](https://gist.github.com/tiagofreire-pt/4920be8d03a3dfa8201c6afedd00305e). Otherwise, follow this: + To create a certificate locally, you need the [OpenSSL](https://www.openssl.org/) command-line tool. Change to your Home Assistant [configuration directory](/getting-started/configuration/) like `~/.homeassistant`. This will make it easier to backup your certificate and the key. Run the command shown below. @@ -15,28 +18,47 @@ Change to your Home Assistant [configuration directory](/getting-started/configu The certificate **must** be `.pem` extension. ```bash -openssl req -sha256 -newkey rsa:4096 -nodes -keyout privkey.pem -x509 -days 730 -out certificate.pem +openssl req -sha256 -newkey rsa:4096 -nodes -keyout privkey.pem -x509 -days 730 -out fullchain.pem ``` For details about the parameters, please check the OpenSSL documentation. Provide the requested information during the generation process. -At the end you will have two files called `privkey.pem` and `certificate.pem`. The key and the certificate. +At the end you will have two files called `privkey.pem` and `fullchain.pem`. The key and the certificate. Update the `http:` entry in your `configuration.yaml` file and let it point to your created files. +Hass.io: + ```yaml http: - ssl_certificate: /home/your_user/.homeassistant/certificate.pem + ssl_certificate: /ssl/fullchain.pem + ssl_key: /ssl/privkey.pem +``` + +Non-hass.io: + +```yaml +http: + ssl_certificate: /home/your_user/.homeassistant/fullchain.pem ssl_key: /home/your_user/.homeassistant/privkey.pem ``` -A restart of Home Assistant is required for the changes to take effect. +A restart of Home Assistant is required for the new certificate to take effect. If you get any log error about *ssl_key* or *ssl_certificate* that is **not a file for dictionary value** when run Home Assistant, you need to change owner or access permission of the `.pem` files as following: - + +Hass.io (through Console or SSH plug-in): + ```bash -sudo chown homeassistant:homeassistant certificate.pem privkey.pem -sudo chmod 755 certificate.pem privkey.pem +chown root:root fullchain.pem privkey.pem +chmod 600 fullchain.pem privkey.pem +``` + +Non-hass-io: + +```bash +sudo chown homeassistant:homeassistant fullchain.pem privkey.pem +sudo chmod 600 fullchain.pem privkey.pem ``` A tutorial "[Working with SSL Certificates, Private Keys and CSRs](https://www.digitalocean.com/community/tutorials/openssl-essentials-working-with-ssl-certificates-private-keys-and-csrs)" could give you some insight about special cases. @@ -46,7 +68,7 @@ A tutorial "[Working with SSL Certificates, Private Keys and CSRs](https://www.d #### iOS If you are going to use this certificate with the iOS app, you need to ensure you complete **all** fields during the certificate creation process, then: -* Send **only** the `certificate.pem` file to the iOS device, using airdrop or other transfer method. +* Send **only** the `fullchain.pem` file to the iOS device, using airdrop or other transfer method. * Open the `.pem` file on the iOS device, follow the prompts to trust and install it. * If you are using iOS 10.3 or newer then [additional steps](https://support.apple.com/en-us/HT204477) are needed. diff --git a/source/_docs/ecosystem/ios.markdown b/source/_docs/ecosystem/ios.markdown deleted file mode 100644 index 15b293692b8..00000000000 --- a/source/_docs/ecosystem/ios.markdown +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: "iOS" -description: "Documentation about the Home Assistant iOS app." -redirect_from: /ecosystem/ios/ ---- - -The Home Assistant for iOS app offers a companion app for iOS which is deeply integrated into both Home Assistant and iOS. Its basic features include: - -* Advanced push notifications -* Location tracking -* Basic control of all Home Assistant entities -* Integration with third party apps - -The app is available on the iOS App Store in every country that Apple supports. - -

- -## Basic requirements - -* iOS device running at least iOS 9, but iOS 10 is greatly preferred. -* Home Assistant 0.42.4 or higher for push notification support. -* SSL is strongly recommended. Self-signed SSL certificates will not work due to Apple's limitations. - -The `ios` integration is the companion integration for the Home Assistant iOS app. While not required, adding the `ios` integration to your setup will greatly enhance the iOS app with new notification, location and sensor functions not possible with a standalone app. - -Loading the `ios` integration will also load the [`device_tracker`](/integrations/device_tracker), [`zeroconf`](/integrations/zeroconf) and [`notify`](/integrations/notify) platforms. - -The Home Assistant for iOS app supports the new authentication system introduced in Home Assistant 0.77. - -## Setup - -### Automated Setup - -The `ios` integration will automatically be loaded under the following circumstances: - -1. The [`discovery`](/integrations/discovery) integration is enabled. -2. You have just installed the app and are at the getting started screen. - -Automated discovery and integration loading only happens at first install of the app. You may need to wait a few minutes for the iOS integration to load as the `discovery` integration only scans the network every 5 minutes. - -After the first automated setup you need to add `ios:` to your configuration so that the integration loads by default even after restarting Home Assistant. - -### Manual Setup - -You may also manually load the `ios` integration by adding the following to your configuration: - -```yaml -# Example configuration.yaml entry -ios: -``` - -{% configuration %} -push: - description: Actionable push notifications configuration. See the [actionable notifications documentation](/docs/ecosystem/ios/notifications/actions/) for more information. - required: false - type: list -{% endconfiguration %} - diff --git a/source/_docs/ecosystem/ios/devices_file.markdown b/source/_docs/ecosystem/ios/devices_file.markdown deleted file mode 100644 index 9d1d2043786..00000000000 --- a/source/_docs/ecosystem/ios/devices_file.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "ios.conf" -description: "Describes the contents and purpose of ios.conf" ---- - -The `ios.conf` file contains the most recent state of all registered iOS devices. Deleting this file will not disable the devices and the file will be recreated the next time a new device is connected or an existing one reconnects. diff --git a/source/_docs/ecosystem/ios/integration.markdown b/source/_docs/ecosystem/ios/integration.markdown deleted file mode 100644 index aa1b8252607..00000000000 --- a/source/_docs/ecosystem/ios/integration.markdown +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Integration" -description: "Examples of how Home Assistant for iOS can be integrated with other apps" -redirect_from: /ecosystem/ios/integration/ ---- - -Home Assistant for iOS supports opening from other apps via URL. - -Query parameters are passed as a dictionary in the call. - -## Call service -Example: `homeassistant://call_service/device_tracker.see?entity_id=device_tracker.entity` - -## Fire event -You can create an [event trigger](/docs/automation/trigger/#event-trigger) and fire the event. - -Example: `homeassistant://fire_event/custom_event?entity_id=MY_CUSTOM_EVENT` - -## Send one shot location -Example: `homeassistant://send_location/` diff --git a/source/_docs/ecosystem/ios/location.markdown b/source/_docs/ecosystem/ios/location.markdown deleted file mode 100644 index 87cd0bce96c..00000000000 --- a/source/_docs/ecosystem/ios/location.markdown +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Location" -description: "Documentation about the location tracking abilities in Home Assistant for iOS" -redirect_from: /ecosystem/ios/location/ ---- - -## Location tracking when outside a Home Assistant zone - -Home Assistant for iOS receives _significant location updates_ from iOS. Whenever an update is received, it is sent to Home Assistant. Roughly, an update is received every time that your device transfers to a new cellular tower, a significant amount of time has passed (usually a couple hours) or a connection state changes and the system notices your location recently changed. - -Apple [defines][apple-location-programming-guide] significant significant-change location updates as: - -> The significant-change location service delivers updates only when there has been a significant change in the device’s location, such as 500 meters or more. - -They also say in the [Energy Efficiency Guide][apple-energy-guide]: - -> Significant-change location updates wake the system and your app once every 15 minutes, at minimum, even if no location changes have occurred. - -Finally, I think this answer from [Stack Overflow][stackoverflow] says it best: - -> The significant location change is the least accurate of all the location monitoring types. It only gets its updates when there is a cell tower transition or change. This can mean a varying level of accuracy and updates based on where the user is. City area, more updates with more towers. Out of town, interstate, fewer towers and changes. - -What's the real story on significant-change location updates? Who knows, because Apple keeps it private. - -## Location tracking in Home Assistant zones - -At launch, Home Assistant for iOS sets up geofences for all zones in your Home Assistant configuration. Enter and exit notifications are sent to Home Assistant. - -### Configuration - -Add `track_ios: false` to your zone configurations to disable zone location tracking for all connected iOS apps. - -### iBeacons - -As of 1.0.3 the app has basic support for using iBeacons to trigger enter/exit updates. To configure them, add your iBeacon details to your zone like this: - -```yaml -zone.home: - beacon: - uuid: B9407F30-F5F8-466E-AFF9-25556B57FE6D - major: 60042 - minor: 43814 -``` - -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 -[stackoverflow]: http://stackoverflow.com/a/13331625/486182 diff --git a/source/_docs/ecosystem/ios/notifications.markdown b/source/_docs/ecosystem/ios/notifications.markdown deleted file mode 100644 index 2d7ec759bf1..00000000000 --- a/source/_docs/ecosystem/ios/notifications.markdown +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Notifications Introduction" -description: "Getting started with iOS notifications" -redirect_from: /ecosystem/ios/notifications/ ---- - -The `ios` notify platform enables sending push notifications to the Home Assistant iOS app. - -The 'ios' integration will automatically load the notify service. -The service integration can be called using `service: notify.ios_`. -Your device ID can be found in the `ios.conf` file in your configuration folder. The file is compressed JSON. You can view it easier by copying the file contents and pasting them into [JSONLint](http://jsonlint.com). - -In this example, the device ID is `robbiet480_7plus`, so the notify service to use is `notify.ios_robbiet480_7plus`: -```json -{"devices":{"robbiet480_7plus":{"app":{"bundleIdentifer":"io.robbie.HomeAssistant","versionNumber":1,"buildNumber":53},"pushSounds":[],"permissions":["location"],"deviceId":"robbiet480_7plus","device":{"type":"iPhone 7 Plus","systemName":"iOS","systemVersion":"10.3","permanentID":"AB9F02FE-6AC6-47B8-ADEB-5DD87B489156","localizedModel":"iPhone","name":"Robbie's iPhone 7 Plus","model":"iPhone"},"battery":{"state":"Full","level":100},"pushToken":"SECRET","pushId":"SECRET"}}} -``` - -You can find more information in the [Basic Notifications](/docs/ecosystem/ios/notifications/basic/) documentation and the [Actionable Notifications](/docs/ecosystem/ios/notifications/actions/) documentation. diff --git a/source/_docs/ecosystem/ios/notifications/actions.markdown b/source/_docs/ecosystem/ios/notifications/actions.markdown deleted file mode 100644 index f67edbf5eba..00000000000 --- a/source/_docs/ecosystem/ios/notifications/actions.markdown +++ /dev/null @@ -1,144 +0,0 @@ ---- -title: "Actionable notifications" -description: "Making push notifications a two way system" -redirect_from: /ecosystem/ios/notifications/actions/ ---- - -Actionable notifications allow you to attach 1-4 custom buttons to a notification. When one of the actions is selected Home Assistant will be notified which action was chosen. This allows you to build complex automations. - -Examples of actionable notifications: - -- A notification is sent whenever motion is detected in your home while you are away or asleep. You can add an action to Sound Alarm. When tapped, Home Assistant is notified that the `sound_alarm` action was selected. You can add an automation to sound the burglar alarm whenever this event is seen. -- Someone rings your front door bell. You can send an action to lock or unlock your front door. When tapped, a notification is sent back to Home Assistant upon which you can build automations. -- Send a notification whenever your garage door opens with actions to open and close the garage. - -

- - Actionable notifications allow the user to send a command back to Home Assistant. -

- -## Overview of how actionable notifications work - -In advance of sending a notification: - -1. Define a notification category in your Home Assistant configuration which contain 1-4 actions. -2. At launch iOS app requests notification categories from Home Assistant (can also be done manually in notification settings). - -When sending a notification: - -1. Send a notification with `data.push.category` set to a pre-defined notification category identifier. -2. Push notification delivered to device -3. User opens notification. -3. Action tapped -4. Identifier of action sent back to HA as the `actionName` property of the event `ios.notification_action_fired`, along with other metadata such as the device and category name. - -

- - How the iOS device and Home Assistant work together to enable actionable notifications. -

- -## Definitions -- Category - A category represents a type of notification that the app might receive. Think of it as a unique group of actions. -- Actions - An action consists of a button title and the information that iOS needs to notify the app when the action is selected. You create separate action objects for distinct action your app supports. - -## Category parameters - -- **name** (*Required*): A friendly name for this category. -- **identifier** (*Required*): A unique identifier for the category. Must be lowercase and have no special characters or spaces. -- **actions** (*Required*): A list of actions. - -## Actions parameters - -- **identifier** (*Required*): A unique identifier for this action. Must be uppercase and have no special characters or spaces. Only needs to be unique to the category, not unique globally. -- **title** (*Required*): The text to display on the button. Keep it short. -- **activationMode** (*Optional*): The mode in which to run the app when the action is performed. Setting this to `foreground` will make the app open after selecting. Default value is `background`. -- **authenticationRequired** (*Optional*): If `true`, the user must unlock the device before the action is performed. -- **destructive** (*Optional*): When the value of this property is a truthy value, the system displays the corresponding button differently to indicate that the action is destructive (text color is red). -- **behavior** (*Optional*): When `textInput` the system provides a way for the user to enter a text response to be included with the notification. The entered text will be sent back to Home Assistant. Default value is `default`. -- **textInputButtonTitle** (*Optional*): The button label. *Required* if `behavior` is `textInput`. -- **textInputPlaceholder** (*Optional*): The placeholder text to show in the text input field. Only used if `behavior` is `textInput` and the device runs iOS 10. - -Here's a fully built example configuration: - -```yaml -ios: - push: - categories: - - name: Alarm - identifier: 'alarm' - actions: - - identifier: 'SOUND_ALARM' - title: 'Sound Alarm' - activationMode: 'background' - authenticationRequired: true - destructive: true - behavior: 'default' - - identifier: 'SILENCE_ALARM' - title: 'Silence Alarm' - activationMode: 'background' - authenticationRequired: true - destructive: false - behavior: 'textInput' - textInputButtonTitle: 'Silencio!' - textInputPlaceholder: 'Placeholder' -``` - -## Building automations for notification actions -Here is an example automation to send a notification with a category in the payload: - -```yaml -automation: - - alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_robbies_iphone_7_plus - data: - message: "Something happened at home!" - data: - push: - badge: 5 - sound: - category: "alarm" # Needs to match the top level identifier you used in the ios configuration - action_data: # Anything passed in action_data will get echoed back to Home Assistant. - entity_id: light.test - my_custom_data: foo_bar -``` - -When an action is selected an event named `ios.notification_action_fired` will be emitted on the Home Assistant event bus. Below is an example payload. - -```json -{ - "sourceDeviceName": "Robbie's iPhone 7 Plus", - "sourceDeviceID": "robbies_iphone_7_plus", - "actionName": "SOUND_ALARM", - "sourceDevicePushId": "ab9f02fe-6ac6-47b8-adeb-5dd87b489156", - "textInput": "", - "actionData": {} -} -``` - -Here's an example automation for the given payload: -```yaml -automation: - - alias: Sound the alarm - trigger: - platform: event - event_type: ios.notification_action_fired - event_data: - actionName: SOUND_ALARM - action: - ... -``` - -Notes: - -* `textInput` will only exist if `behavior` was set to `textInput`. -* `actionData` is a dictionary with parameters passed in the `action_data` dictionary of the `push` dictionary in the original notification. -* When adding or updating push categories be sure to update push settings within the Home Assistant iOS app. This can be found within the app at **Settings** (gear icon) > **Notification Settings**. - -## Compatibility with different devices - -* For devices that support "Force Touch" / "3D Touch" - a long press on the notification will cause the actions to appear. Devices such as iPhone 6S, iPhone 6S Plus, iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus, iPhone X, iPhone XS, iPhone XS Max as well as some iPad and Apple Watch models. - -* For device that do not support this feature - a left to right swipe on the notification + tap on 'View' button, will cause the relevant actions to appear. Devices such as iPhone 6 and below, iPhone SE, iPhone XR as some iPad models. diff --git a/source/_docs/ecosystem/ios/notifications/architecture.markdown b/source/_docs/ecosystem/ios/notifications/architecture.markdown deleted file mode 100644 index 13719e92967..00000000000 --- a/source/_docs/ecosystem/ios/notifications/architecture.markdown +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "Architecture" -description: "The push notification system layout" -redirect_from: /ecosystem/ios/notifications/architecture/ ---- - -

- - The push notification infrastructure layout -

diff --git a/source/_docs/ecosystem/ios/notifications/attachments.markdown b/source/_docs/ecosystem/ios/notifications/attachments.markdown deleted file mode 100644 index 25f55d40199..00000000000 --- a/source/_docs/ecosystem/ios/notifications/attachments.markdown +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: "Notification attachments" -description: "Adding attachments to iOS push notifications" -redirect_from: /ecosystem/ios/notifications/attachments/ ---- - -iOS 10 adds _attachments_ to notifications. An attachment is an image, video, or audio file which is downloaded to the device when a notification is received and shown alongside the notification. A thumbnail is shown when the notification is not expanded. The full size attachment is shown when the notification is expanded. - -
-To expand a notification on 3D Touch devices simply force touch any notification. On non-3D Touch devices swipe and tap the "View" button. -
- -```yaml -- alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_robbies_iphone_7_plus - data: - message: "Something happened at home!" - data: - attachment: - url: "https://github.com/home-assistant/home-assistant-assets/blob/master/logo-round-192x192.png?raw=true" - content-type: png - hide-thumbnail: false -``` - -Notes: -* The thumbnail of the notification will be the media at the `url`. -* The notification content is the media at the `url`. -* Attachment can be used with custom push notification categories. - -## Example - -

- - An unexpanded push notification with an attachment. -

- -

- - The same notification but expanded to show the full size attachment -

- -## Supported media types - -If the attachment does not appear please ensure it is in one of the following formats: - -### Audio attachments - -Maximum file size: 5 MB - -Allowed Formats: AIFF, WAV, MP3, MPEG4 Audio - -### Image attachments - -Maximum file size: 10 MB - -Allowed Formats: JPEG, GIF, PNG - -### Video attachments - -Maximum file size: 50 MB - -Allowed Formats: MPEG, MPEG2, MPEG4, AVI - -## Configuration - -- **url** (*Required*): The URL of content to use as the attachment. This URL _must_ be accessible from the Internet, or the receiving device must be on the same network as the hosted content. -- **content-type** (*Optional*): By default, the extension of the URL will be checked to determine the filetype. If there is no extension/it can't be determined you can manually provide a file extension. -- **hide-thumbnail** (*Optional*): If set to `true` the thumbnail will not show on the notification. The content will only be viewable by expanding. diff --git a/source/_docs/ecosystem/ios/notifications/basic.markdown b/source/_docs/ecosystem/ios/notifications/basic.markdown deleted file mode 100644 index bfc46df1047..00000000000 --- a/source/_docs/ecosystem/ios/notifications/basic.markdown +++ /dev/null @@ -1,99 +0,0 @@ ---- -title: "Basic Notifications" -description: "Basic notes about iOS notifications" -redirect_from: /ecosystem/ios/notifications/basic/ ---- - -The iOS notify platform accepts the standard `title`, `message` and `target` parameters. The iOS notify platform supports targets as services. Assuming that you did not set a `name` when configuring the platform you should find all your registered and notification-enabled iOS devices available as notify targets as services with names prefixed "notify.ios_" and then the device name you entered at setup. - -Notes: - -* `title` only displays on Apple Watch and devices with iOS 10 or above. - -* `target` can be used to specific a single device using its PushID, found in `ios.conf`. The preferred way of providing a target is through a target specific notify service. - -

- - A push notification showing all of the basic options `title` and `message` as well as `subtitle` and [actions](/ecosystem/ios/notifications/actions/). -

- -### Enhancing basic notifications - -#### Badge -You can set the icon badge in the payload: - -```yaml -automation: - - alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_ - data: - title: "Smart Home Alerts" - message: "Something happened at home!" - data: - push: - badge: 5 -``` - -#### Subtitle -Starting with iOS 10, a subtitle is supported in addition to the title: - -```yaml -automation - - alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_ - data: - title: "Smart Home Alerts" - message: "Something happened at home!" - data: - subtitle: "Subtitle goes here" -``` - -#### Thread-id (grouping notifications) -Starting with iOS 12, grouping of notifications is supported. All notifications with the same thread-id will be grouped together in the notification center. Without a thread-id, all notifications from the app will be placed in a single group. - -```yaml -automation: - - alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_ - data: - title: "Smart Home Alerts" - message: "Something happened at home!" - data: - push: - thread-id: "example-notification-group" -``` - - -### Sending notifications to multiple phones -To send notifications to multiple phones, create a [notification group](/integrations/notify.group/): -```yaml -notify: - - name: NOTIFIER_NAME - platform: group - services: - - service: ios_iphone_one - - service: ios_iphone_two -``` -Now, you can send notifications to everyone in the group using: -```yaml - automation: - - alias: Notify iOS app - trigger: - ... - action: - service: notify.NOTIFIER_NAME - data: - message: "Something happened at home!" - data: - push: - badge: 5 -``` diff --git a/source/_docs/ecosystem/ios/notifications/content_extensions.markdown b/source/_docs/ecosystem/ios/notifications/content_extensions.markdown deleted file mode 100644 index 4badaa3df48..00000000000 --- a/source/_docs/ecosystem/ios/notifications/content_extensions.markdown +++ /dev/null @@ -1,103 +0,0 @@ ---- -title: "Dynamic content" -description: "Extend your notifications with dynamic content" -redirect_from: /ecosystem/ios/notifications/content_extensions/ ---- - -With the new Content Extension feature found in iOS 10, dynamic content can now be displayed as part of a notification without opening an app. - -# Map -Will show a map with a red tipped pin at the coordinates given. -The map will be centered at the coordinates given. - -```yaml -service: notify.ios_ -data: - message: Something happened at home! - data: - push: - category: map - action_data: - latitude: "40.785091" - longitude: "-73.968285" -``` - -## Showing a second pin - -You can use the following properties under `action_data` to display a second pin. If used, the first pin will be red and the second green. - -- **second_latitude**: The latitude of the second pin. **Must be a string!** -- **second_longitude**: The longitude of the second pin. **Must be a string!** -- **shows_line_between_points**: A Boolean value indicating whether a line should be drawn between the first and second pin. - -## Extra configuration - -You can also pass the following properties under `action_data` to modify the map in various ways. All are expected to be boolean values unless otherwise noted: - -- **shows_compass**: A Boolean indicating whether the map displays a compass control. -- **shows_points_of_interest**: A Boolean indicating whether the map displays point-of-interest information. -- **shows_scale**: A Boolean indicating whether the map shows scale information. -- **shows_traffic**: A Boolean value indicating whether the map displays traffic information. -- **shows_user_location**: A Boolean value indicating whether the map should try to display the user’s location. - -

- - An example of the map dynamic content. -

- - -# Camera Stream - -The notification thumbnail will be a still image from the camera. -The notification content is a real time MJPEG stream of a camera (assuming the camera supports it). - -You can use the attachment parameters `content-type` and `hide-thumbnail` with camera to control the thumbnail. - -You can view an example [here](https://www.youtube.com/watch?v=LmYwpxPKW0g). - -Note: This functionality is only available from iOS 11 onwards. - -```yaml -service: notify.ios_ -data: - message: Motion detected in the Living Room - data: - attachment: - content-type: jpeg - push: - category: camera - entity_id: camera.demo_camera -``` - -
- -
- -# Combining with actionable notifications - -As you can see the `category` key is used to tell the device what kind of content extension to use. You can use the same category identifiers in your own custom [actions](/ecosystem/ios/notifications/actions/) to add actions to the content extension. - -For example this configuration adds actions to a camera content message. - -```yaml -ios: - push: - categories: - - name: Camera With Actions - identifier: 'camera' - actions: - - identifier: 'OPEN_COVER' - title: 'Open Cover' - activationMode: 'background' - authenticationRequired: true - destructive: no - - identifier: 'CLOSE_COVER' - title: 'Close Cover' - activationMode: 'background' - authenticationRequired: true - destructive: true -``` - -# Troubleshooting - -If you are having problems with receiving these special notifications try restarting your phone first. The extensions somewhat often fail to register properly until a restart. diff --git a/source/_docs/ecosystem/ios/notifications/privacy_security_rate_limits.markdown b/source/_docs/ecosystem/ios/notifications/privacy_security_rate_limits.markdown deleted file mode 100644 index aec550b5a7e..00000000000 --- a/source/_docs/ecosystem/ios/notifications/privacy_security_rate_limits.markdown +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Privacy, rate limiting and security" -description: "Notes about important topics relating to push notifications" -redirect_from: /ecosystem/ios/notifications/privacy_security_rate_limits/ ---- - -## Privacy - -No notification content is stored on remote servers. Only the required push registration data and a simple counter of the total number of push notifications sent per day per device (for rate limiting purposes) is kept. - -## Rate limiting - -Currently, you are allowed to send a maximum of 150 push notifications per day per device. This is to ensure that the service remains cheap to maintain. In the future we may add support for upgrading to allow more notifications. The rate limit resets at midnight UTC daily. When a notification is sent your current rate limits (including sent notifications and notifications remaining for the day) will be output to your Home Assistant logs. If an error occurs while sending a notification your rate limit will not be affected. - -## Security - -All traffic between your Home Assistant instance, the push infrastructure, and Apple, is encrypted with SSL. diff --git a/source/_docs/ecosystem/ios/notifications/requesting_location_updates.markdown b/source/_docs/ecosystem/ios/notifications/requesting_location_updates.markdown deleted file mode 100644 index 7573adabddc..00000000000 --- a/source/_docs/ecosystem/ios/notifications/requesting_location_updates.markdown +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "Requesting location updates" -description: "Ask the device to send a location update remotely" -redirect_from: /ecosystem/ios/notifications/requesting_location_updates/ ---- - -
-Do not rely on this functionality due to the time limits mentioned below. -
- -You can force a device to attempt to report its location by sending a special notification. - -```yaml -automation - - alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_ - data: - message: "request_location_update" -``` - -Assuming the device receives the notification, it will attempt to get a location update within 5 seconds and report it to Home Assistant. This is a little bit hit or miss since Apple imposes a maximum time allowed for the app to work with the notification and location updates sometimes take longer than usual due to factors such as waiting for GPS acquisition. - diff --git a/source/_docs/ecosystem/ios/notifications/sounds.markdown b/source/_docs/ecosystem/ios/notifications/sounds.markdown deleted file mode 100644 index 0668b16dc76..00000000000 --- a/source/_docs/ecosystem/ios/notifications/sounds.markdown +++ /dev/null @@ -1,180 +0,0 @@ ---- -title: "Notification Sounds" -description: "Adding sounds to notifications" -redirect_from: /ecosystem/ios/notifications/sounds/ ---- - -Adding a custom sound to a notification allows you to easily identify the notification without even looking at your device. Home Assistant for iOS comes with some notification sounds pre-installed but you can also upload your own. - -Here is an example notification that uses one of the pre-installed sounds. - -```yaml -- alias: Notify iOS app - trigger: - ... - action: - service: notify.ios_ - data: - message: “Something happened at home!” - data: - push: - sound: "US-EN-Morgan-Freeman-Roommate-Is-Arriving.wav" -``` - -Notes: -* You must use the full filename in the payload (including extension). - -## Custom push notification sounds - -The app allows you to use your own custom sounds in push notifications. The sounds must be formatted as 32bit float 48000Hz wav files. You set the filename of the sound in the notification payload. To add sounds: - -1. Connect the device to a PC or Mac running the latest version of iTunes. -2. Go to the device in iTunes. -3. Select "File Sharing" in the left-hand menu. -4. Select Home Assistant. -5. Drag and drop properly formatted sounds (32bit float 48000Hz wav files). -6. Click Sync in the lower right. -7. Once the sync is complete, disconnect the device from the computer. -8. On your iOS device, open the Home Assistant app. -9. Go to Settings -> Notification Settings. -10. Select "Import sounds from iTunes". - -Assuming that you correctly formatted the sounds they are now available to use in push notifications. - -Notes: - -* **Please note that due to a bug in iOS 10 you may need to restart your entire device before notification sounds can be played. This should hopefully be fixed by Apple soon.** -* Uploading a file with the same name as an existing one will overwrite the original. -* You can view what sounds are installed on each device by inspecting the `ios.conf` file in your configuration directory. They are listed in the `pushSounds` array. - -### Preinstalled notification sounds - -```txt -US-EN-Alexa-Back-Door-Opened.wav -US-EN-Alexa-Back-Door-Unlocked.wav -US-EN-Alexa-Basement-Door-Opened.wav -US-EN-Alexa-Basement-Door-Unlocked.wav -US-EN-Alexa-Boyfriend-Is-Arriving.wav -US-EN-Alexa-Daughter-Is-Arriving.wav -US-EN-Alexa-Front-Door-Opened.wav -US-EN-Alexa-Front-Door-Unlocked.wav -US-EN-Alexa-Garage-Door-Opened.wav -US-EN-Alexa-Girlfriend-Is-Arriving.wav -US-EN-Alexa-Good-Morning.wav -US-EN-Alexa-Good-Night.wav -US-EN-Alexa-Husband-Is-Arriving.wav -US-EN-Alexa-Mail-Has-Arrived.wav -US-EN-Alexa-Motion-At-Back-Door.wav -US-EN-Alexa-Motion-At-Front-Door.wav -US-EN-Alexa-Motion-Detected-Generic.wav -US-EN-Alexa-Motion-In-Back-Yard.wav -US-EN-Alexa-Motion-In-Basement.wav -US-EN-Alexa-Motion-In-Front-Yard.wav -US-EN-Alexa-Motion-In-Garage.wav -US-EN-Alexa-Patio-Door-Opened.wav -US-EN-Alexa-Patio-Door-Unlocked.wav -US-EN-Alexa-Smoke-Detected-Generic.wav -US-EN-Alexa-Smoke-Detected-In-Basement.wav -US-EN-Alexa-Smoke-Detected-In-Garage.wav -US-EN-Alexa-Smoke-Detected-In-Kitchen.wav -US-EN-Alexa-Son-Is-Arriving.wav -US-EN-Alexa-Water-Detected-Generic.wav -US-EN-Alexa-Water-Detected-In-Basement.wav -US-EN-Alexa-Water-Detected-In-Garage.wav -US-EN-Alexa-Water-Detected-In-Kitchen.wav -US-EN-Alexa-Welcome-Home.wav -US-EN-Alexa-Wife-Is-Arriving.wav -US-EN-Daisy-Back-Door-Motion.wav -US-EN-Daisy-Back-Door-Open.wav -US-EN-Daisy-Front-Door-Motion.wav -US-EN-Daisy-Front-Door-Open.wav -US-EN-Daisy-Front-Window-Open.wav -US-EN-Daisy-Garage-Door-Open.wav -US-EN-Daisy-Guest-Bath-Leak.wav -US-EN-Daisy-Kitchen-Sink-Leak.wav -US-EN-Daisy-Kitchen-Window-Open.wav -US-EN-Daisy-Laundry-Room-Leak.wav -US-EN-Daisy-Master-Bath-Leak.wav -US-EN-Daisy-Master-Bedroom-Window-Open.wav -US-EN-Daisy-Office-Window-Open.wav -US-EN-Daisy-Refrigerator-Leak.wav -US-EN-Daisy-Water-Heater-Leak.wav -US-EN-Morgan-Freeman-Back-Door-Closed.wav -US-EN-Morgan-Freeman-Back-Door-Locked.wav -US-EN-Morgan-Freeman-Back-Door-Opened.wav -US-EN-Morgan-Freeman-Back-Door-Unlocked.wav -US-EN-Morgan-Freeman-Basement-Door-Closed.wav -US-EN-Morgan-Freeman-Basement-Door-Locked.wav -US-EN-Morgan-Freeman-Basement-Door-Opened.wav -US-EN-Morgan-Freeman-Basement-Door-Unlocked.wav -US-EN-Morgan-Freeman-Boss-Is-Arriving.wav -US-EN-Morgan-Freeman-Boyfriend-Is-Arriving.wav -US-EN-Morgan-Freeman-Cleaning-Supplies-Closet-Opened.wav -US-EN-Morgan-Freeman-Coworker-Is-Arriving.wav -US-EN-Morgan-Freeman-Daughter-Is-Arriving.wav -US-EN-Morgan-Freeman-Friend-Is-Arriving.wav -US-EN-Morgan-Freeman-Front-Door-Closed.wav -US-EN-Morgan-Freeman-Front-Door-Locked.wav -US-EN-Morgan-Freeman-Front-Door-Opened.wav -US-EN-Morgan-Freeman-Front-Door-Unlocked.wav -US-EN-Morgan-Freeman-Garage-Door-Closed.wav -US-EN-Morgan-Freeman-Garage-Door-Opened.wav -US-EN-Morgan-Freeman-Girlfriend-Is-Arriving.wav -US-EN-Morgan-Freeman-Good-Morning.wav -US-EN-Morgan-Freeman-Good-Night.wav -US-EN-Morgan-Freeman-Liquor-Cabinet-Opened.wav -US-EN-Morgan-Freeman-Motion-Detected.wav -US-EN-Morgan-Freeman-Motion-In-Basement.wav -US-EN-Morgan-Freeman-Motion-In-Bedroom.wav -US-EN-Morgan-Freeman-Motion-In-Game-Room.wav -US-EN-Morgan-Freeman-Motion-In-Garage.wav -US-EN-Morgan-Freeman-Motion-In-Kitchen.wav -US-EN-Morgan-Freeman-Motion-In-Living-Room.wav -US-EN-Morgan-Freeman-Motion-In-Theater.wav -US-EN-Morgan-Freeman-Motion-In-Wine-Cellar.wav -US-EN-Morgan-Freeman-Patio-Door-Closed.wav -US-EN-Morgan-Freeman-Patio-Door-Locked.wav -US-EN-Morgan-Freeman-Patio-Door-Opened.wav -US-EN-Morgan-Freeman-Patio-Door-Unlocked.wav -US-EN-Morgan-Freeman-Roommate-Is-Arriving.wav -US-EN-Morgan-Freeman-Searching-For-Car-Keys.wav -US-EN-Morgan-Freeman-Setting-The-Mood.wav -US-EN-Morgan-Freeman-Smartthings-Detected-A-Flood.wav -US-EN-Morgan-Freeman-Smartthings-Detected-Carbon-Monoxide.wav -US-EN-Morgan-Freeman-Smartthings-Detected-Smoke.wav -US-EN-Morgan-Freeman-Smoke-Detected-In-Basement.wav -US-EN-Morgan-Freeman-Smoke-Detected-In-Garage.wav -US-EN-Morgan-Freeman-Smoke-Detected-In-Kitchen.wav -US-EN-Morgan-Freeman-Someone-Is-Arriving.wav -US-EN-Morgan-Freeman-Son-Is-Arriving.wav -US-EN-Morgan-Freeman-Starting-Movie-Mode.wav -US-EN-Morgan-Freeman-Starting-Party-Mode.wav -US-EN-Morgan-Freeman-Starting-Romance-Mode.wav -US-EN-Morgan-Freeman-Turning-Off-All-The-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-Air-Conditioner.wav -US-EN-Morgan-Freeman-Turning-Off-The-Bar-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-Chandelier.wav -US-EN-Morgan-Freeman-Turning-Off-The-Family-Room-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-Hallway-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-Kitchen-Light.wav -US-EN-Morgan-Freeman-Turning-Off-The-Light.wav -US-EN-Morgan-Freeman-Turning-Off-The-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-Mood-Lights.wav -US-EN-Morgan-Freeman-Turning-Off-The-TV.wav -US-EN-Morgan-Freeman-Turning-On-The-Air-Conditioner.wav -US-EN-Morgan-Freeman-Turning-On-The-Bar-Lights.wav -US-EN-Morgan-Freeman-Turning-On-The-Chandelier.wav -US-EN-Morgan-Freeman-Turning-On-The-Family-Room-Lights.wav -US-EN-Morgan-Freeman-Turning-On-The-Hallway-Lights.wav -US-EN-Morgan-Freeman-Turning-On-The-Kitchen-Light.wav -US-EN-Morgan-Freeman-Turning-On-The-Light.wav -US-EN-Morgan-Freeman-Turning-On-The-Lights.wav -US-EN-Morgan-Freeman-Turning-On-The-Mood-Lights.wav -US-EN-Morgan-Freeman-Turning-On-The-TV.wav -US-EN-Morgan-Freeman-Vacate-The-Premises.wav -US-EN-Morgan-Freeman-Water-Detected-In-Basement.wav -US-EN-Morgan-Freeman-Water-Detected-In-Garage.wav -US-EN-Morgan-Freeman-Water-Detected-In-Kitchen.wav -US-EN-Morgan-Freeman-Welcome-Home.wav -US-EN-Morgan-Freeman-Wife-Is-Arriving.wav -``` diff --git a/source/_docs/frontend/mobile.markdown b/source/_docs/frontend/mobile.markdown index e126c8ee755..801b29d93db 100644 --- a/source/_docs/frontend/mobile.markdown +++ b/source/_docs/frontend/mobile.markdown @@ -4,7 +4,7 @@ description: "Android/iOS instructions to add Home Assistant to your homescreen. redirect_from: /getting-started/mobile/ --- -Home Assistant has [a companion app for iOS](/docs/ecosystem/ios/). +Home Assistant has [a companion apps for Android and iOS](/docs/ecosystem/ios/). On both Android and iOS, you can add the Home Assistant "web app" to your homescreen as if it was native (Home Assistant leverages the W3C [manifest.json](https://w3c.github.io/manifest/) support). diff --git a/source/_docs/mqtt/discovery.markdown b/source/_docs/mqtt/discovery.markdown index debd51fb9f2..dab05ec8b67 100644 --- a/source/_docs/mqtt/discovery.markdown +++ b/source/_docs/mqtt/discovery.markdown @@ -60,7 +60,13 @@ The discovery topic need to follow a specific format: The payload must be a JSON dictionary and will be checked like an entry in your `configuration.yaml` file if a new device is added. This means that missing variables will be filled with the platform's default values. All configuration variables which are *required* must be present in the initial payload send to `/config`. -If the integration is `alarm_control_panel`, `binary_sensor`, or `sensor` and the mandatory `state_topic` is not present in the payload, `state_topic` will be automatically set to //[/]/state. The automatic setting of `state_topic` is deprecated and may be removed in a future version of Home Assistant. +If the integration is `alarm_control_panel`, `binary_sensor`, or `sensor` and the mandatory `state_topic` is not present in the payload, `state_topic` will be automatically set to: + +```text +//[/]/state +``` + +The automatic setting of `state_topic` is deprecated and may be removed in a future version of Home Assistant. An empty payload will cause a previously discovered device to be deleted. diff --git a/source/_docs/scene/editor.markdown b/source/_docs/scene/editor.markdown index fefe1e41050..c03d9478f69 100644 --- a/source/_docs/scene/editor.markdown +++ b/source/_docs/scene/editor.markdown @@ -73,5 +73,5 @@ For example: ```
-Any comments in the YAML file will be lost and templates will be reformatted when you update an automation via the editor. +Any comments in the YAML file will be lost and templates will be reformatted when you update a scene via the editor.
diff --git a/source/_docs/scripts/conditions.markdown b/source/_docs/scripts/conditions.markdown index 4293ca6a990..f0ca450a8ad 100644 --- a/source/_docs/scripts/conditions.markdown +++ b/source/_docs/scripts/conditions.markdown @@ -206,7 +206,7 @@ The template condition will test if the [given template][template] renders a val ```yaml condition: condition: template - value_template: "{% raw %}{{ (state_attr('device_tracker.iphone', 'battery')|int) > 50 }}{% endraw %}" + value_template: "{% raw %}{{ (state_attr('device_tracker.iphone', 'battery_level')|int) > 50 }}{% endraw %}" ``` Within an automation, template conditions also have access to the `trigger` variable as [described here][automation-templating]. diff --git a/source/_docs/tools/hass.markdown b/source/_docs/tools/hass.markdown index 05a91d9f6ba..c464a678060 100644 --- a/source/_docs/tools/hass.markdown +++ b/source/_docs/tools/hass.markdown @@ -10,8 +10,8 @@ The command-line part of Home Assistant is `hass`. $ hass -h usage: hass [-h] [--version] [-c path_to_config_dir] [--demo-mode] [--debug] [--open-ui] [--skip-pip] [-v] [--pid-file path_to_pid_file] - [--log-rotate-days LOG_ROTATE_DAYS] [--runner] [--script ...] - [--daemon] + [--log-rotate-days LOG_ROTATE_DAYS] [--log-file LOG_FILE] + [--log-no-color] [--runner] [--script ...] [--daemon] Home Assistant: Observe, Control, Automate. diff --git a/source/_docs/z-wave/device-specific.markdown b/source/_docs/z-wave/device-specific.markdown index de7ac006618..babad7c72be 100644 --- a/source/_docs/z-wave/device-specific.markdown +++ b/source/_docs/z-wave/device-specific.markdown @@ -27,6 +27,8 @@ It's totally normal for your Z-Wave stick to cycle through its LEDs (Yellow, Blu Use the following example commands from a terminal session on your Pi where your Z-Wave stick is connected. +**Note:** You should only do this when Home Assistant has been stopped. + Turn off "Disco lights": ```bash diff --git a/source/_integrations/aftership.markdown b/source/_integrations/aftership.markdown index 6c320fb4856..e6e816e699b 100644 --- a/source/_integrations/aftership.markdown +++ b/source/_integrations/aftership.markdown @@ -14,7 +14,7 @@ The sensor value shows the number of packages that are not in `Delivered` state. ## Setup -To use this sensor, you need an [AfterShip Account](https://accounts.aftership.com/register) and set up an API Key. To set up an API Key go to [AfterShip API](https://secure.aftership.com/#/settings/api) page, and copy existing key or generate a new one. +To use this sensor, you need an [AfterShip Account](https://accounts.aftership.com/register) and set up an API Key. To set up an API Key go to [AfterShip API](https://admin.aftership.com/settings/api-keys) page, and copy existing key or generate a new one.
AfterShip recently started requiring having a credit card on file even if you are only using the free plan. That does not change the functionality of the platform, just something to be aware of. diff --git a/source/_integrations/alarm_control_panel.ifttt.markdown b/source/_integrations/alarm_control_panel.ifttt.markdown index 68961ca8abb..5d326be2936 100644 --- a/source/_integrations/alarm_control_panel.ifttt.markdown +++ b/source/_integrations/alarm_control_panel.ifttt.markdown @@ -64,7 +64,7 @@ event_disarm: type: string default: alarm_disarm optimistic: - description: Specify if the state will be updated by an ifttt_push_alarm_state call (false) or can be set immediately (true). + description: Specify if the state will be updated by an ifttt.push_alarm_state call (false) or can be set immediately (true). required: false type: boolean default: false @@ -87,7 +87,7 @@ For this system to operate correctly, the following IFTTT applets have to be set * **IF** Webhook event `YOUR_ARM_HOME_EVENT` is called, **THEN** set the alarm system to armed home. * **IF** Webhook event `YOUR_ARM_NIGHT_EVENT` is called, **THEN** set the alarm system to armed away. * **IF** Webhook event `YOUR_DISARM_EVENT` is called, **THEN** set the alarm system to armed night. -* **IF** the alarm system was disarmed, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/alarm_control_panel/ifttt_push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "disarmed"}`. -* **IF** the alarm system state changed to armed home, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/alarm_control_panel/ifttt_push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_home"}`. -* **IF** the alarm system state changed to armed away, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/alarm_control_panel/ifttt_push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_away"}`. -* **IF** the alarm system state changed to armed night, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/alarm_control_panel/ifttt_push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_night"}`. +* **IF** the alarm system was disarmed, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/ifttt/push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "disarmed"}`. +* **IF** the alarm system state changed to armed home, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/ifttt/push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_home"}`. +* **IF** the alarm system state changed to armed away, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/ifttt/push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_away"}`. +* **IF** the alarm system state changed to armed night, **THEN** perform a Webhook `POST` web request to url `https://HASS_URL/api/services/ifttt/push_alarm_state?api_password=API_PASSWORD` with content type `application/json` and body `{"entity_id": "alarm_control_panel.DEVICE_NAME", "state": "armed_night"}`. diff --git a/source/_integrations/alarmdecoder.markdown b/source/_integrations/alarmdecoder.markdown index a83c15eb878..7bf65735817 100644 --- a/source/_integrations/alarmdecoder.markdown +++ b/source/_integrations/alarmdecoder.markdown @@ -135,7 +135,7 @@ The Alarm Decoder integration gives you access to several services for you to co - `alarm_arm_night`: Arms the alarm in instant mode; all faults will trigger the alarm. Additionally, the entry delay is turned off on the doors. - `alarm_disarm`: Disarms the alarm from any state. Also clears a `check_zone` flag after an alarm was triggered. - `alarmdecoder.alarm_keypress`: Sends a string of characters to the alarm, as if you had touched those keys on a keypad. -- `alarmdecoder_alarm_toggle_chime`: Toggles the alarm's chime state. +- `alarmdecoder.alarm_toggle_chime`: Toggles the alarm's chime state.
@@ -157,11 +157,11 @@ Using a combination of the available services and attributes, you can create swi friendly_name: Chime value_template: "{{ is_state_attr('alarm_control_panel.alarm_panel', 'chime', true) }}" turn_on: - service: alarm_control_panel.alarmdecoder_alarm_toggle_chime + service: alarmdecoder.alarm_toggle_chime data: code: !secret alarm_code turn_off: - service: alarm_control_panel.alarmdecoder_alarm_toggle_chime + service: alarmdecoder.alarm_toggle_chime data: code: !secret alarm_code icon_template: >- diff --git a/source/_integrations/almond.markdown b/source/_integrations/almond.markdown index b436377e2bb..8830407c0d6 100644 --- a/source/_integrations/almond.markdown +++ b/source/_integrations/almond.markdown @@ -45,6 +45,8 @@ The Almond integration does not update config entries yet. If you make a change Stanford offers a hosted version of Almond Server called Almond Web. To use this, go to the integrations page and add Almond using the add integration flow. +Your Home Assistant installation needs to be externally accessible if you want Almond Web to be able to control Home Assistant. + ### Almond Web - Manual installation It is possible to set up Almond Web manually. You will need to create your own client ID and secret in the web interface. diff --git a/source/_integrations/androidtv.markdown b/source/_integrations/androidtv.markdown index 6dff3b129b8..dd311db046d 100644 --- a/source/_integrations/androidtv.markdown +++ b/source/_integrations/androidtv.markdown @@ -75,7 +75,7 @@ get_sources: default: true type: boolean apps: - description: A dictionary where the keys are app IDs and the values are app names that will be displayed in the UI; see example below. + description: A dictionary where the keys are app IDs and the values are app names that will be displayed in the UI; see example below. ([These app names](https://github.com/JeffLIrion/python-androidtv/blob/5c39196ade3f88ab453b205fd15b32472d3e0482/androidtv/constants.py#L267-L283) are configured in the backend package and do not need to be included in your configuration.) required: false default: {} type: map @@ -249,7 +249,9 @@ A list of various intents can be found [here](https://gist.github.com/mcfrojd/9e ## Custom State Detection -The `state_detection_rules` configuration parameter allows you to provide your own rules for state detection. The keys are app IDs, and the values are lists of rules that are evaluated in order. Valid rules are: +The Android TV integration works by polling the Android TV / Fire TV device at a regular interval and collecting a handful of properties. Unfortunately, there is no standard API for determining the state of the device to which all apps adhere. Instead, the backend `androidtv` package uses three of the properties that it collects to determine the state: `audio_state`, `media_session_state`, and `wake_lock_size`. The correct logic for determining the state differs depending on the current app, and the backend `androidtv` package implements app-specific state detection logic for a handful of apps. Of course, it is not feasible to implement custom logic for each and every app in the `androidtv` package. Moreover, the correct state detection logic may differ across devices and device configurations. + +The solution to this problem is the `state_detection_rules` configuration parameter, which allows you to provide your own rules for state detection. The keys are app IDs, and the values are lists of rules that are evaluated in order. Valid rules are: * `'standby'`, `'playing'`, `'paused'`, `'idle'`, or `'off'` * If this is not a map, then this state will always be reported when this app is the current app diff --git a/source/_integrations/api.markdown b/source/_integrations/api.markdown index 2bf01bb8b89..145aec44d37 100644 --- a/source/_integrations/api.markdown +++ b/source/_integrations/api.markdown @@ -10,12 +10,6 @@ ha_release: 0.7 The `api` integration exposes a RESTful API and allows one to interact with a Home Assistant instance that is running headless. This integration depends on the [`http` integration](/integrations/http/). -
- -It is HIGHLY recommended that you set the `api_password`, especially if you are planning to expose your installation to the internet. - -
- ```yaml # Example configuration.yaml entry api: diff --git a/source/_integrations/apns.markdown b/source/_integrations/apns.markdown index 973bbb17f00..250e035e9c6 100644 --- a/source/_integrations/apns.markdown +++ b/source/_integrations/apns.markdown @@ -46,7 +46,7 @@ sandbox: type: boolean {% endconfiguration %} -The APNS platform will register two services, `notify.NOTIFIER_NAME` and `notify.apns_NOTIFIER_NAME`. +The APNS platform will register two services, `notify.NOTIFIER_NAME` and `apns.apns_NOTIFIER_NAME`. ### notify.apns_NOTIFIER_NAME diff --git a/source/_integrations/arduino.markdown b/source/_integrations/arduino.markdown index 875b4bd0e23..52382a7eeb8 100644 --- a/source/_integrations/arduino.markdown +++ b/source/_integrations/arduino.markdown @@ -6,7 +6,6 @@ ha_category: - DIY - Sensor - Switch -featured: true ha_release: pre 0.7 ha_iot_class: Local Polling --- diff --git a/source/_integrations/aten_pe.markdown b/source/_integrations/aten_pe.markdown new file mode 100644 index 00000000000..8c595967a55 --- /dev/null +++ b/source/_integrations/aten_pe.markdown @@ -0,0 +1,52 @@ +--- +title: "ATEN Rack PDU" +description: "Instructions on how to integrate ATEN Rack PDUs into Home Assistant." +ha_category: + - Switch +ha_release: 0.103 +--- + +The `aten_pe` integration lets you control [ATEN Rack PDUs](https://www.aten.com/eu/en/products/energy-intelligence-pduupsracks/rack-pdu/) from Home Assistant. + +In order to use it, SNMP must be enabled on your PDU. It is recommended to use SNMPv3 to protect your credentials from eavesdropping. + +Tested devices: + * [PE8324G](https://www.aten.com/eu/en/products/energy-intelligence-pduupsracks/rack-pdu/pe8324/) + +To set it up, add the following information to your `configuration.yaml` file: + +```yaml +switch: + - platform: aten_pe + host: 192.168.0.60 +``` + +{% configuration %} +host: + description: The IP/host which to control. + required: true + type: string +port: + description: The port on which to communicate. + required: false + type: string + default: 161 +community: + description: community string to use for authentication (SNMP v1 and v2c). + required: false + type: string + default: private +username: + description: Username to use for authentication. + required: false + type: string + default: administrator +auth_key: + description: Authentication key to use for SNMP v3. + required: false + type: string +priv_key: + description: Privacy key to use for SNMP v3. + required: false + type: string +{% endconfiguration %} diff --git a/source/_integrations/azure_service_bus.markdown b/source/_integrations/azure_service_bus.markdown index 55e8467bdd5..b09b71a574c 100644 --- a/source/_integrations/azure_service_bus.markdown +++ b/source/_integrations/azure_service_bus.markdown @@ -3,7 +3,7 @@ title: "Azure Service Bus" description: "Setup for Azure Service Bus integration" logo: azure_service_bus.svg ha_category: - - Notification + - Notifications ha_release: 0.102 --- diff --git a/source/_integrations/bbox.markdown b/source/_integrations/bbox.markdown index 715b80a2ba6..c9083780d65 100644 --- a/source/_integrations/bbox.markdown +++ b/source/_integrations/bbox.markdown @@ -66,6 +66,8 @@ sensor: - up_max_bandwidth - current_down_bandwidth - current_up_bandwidth + - uptime + - number_of_reboots ``` {% configuration %} @@ -87,4 +89,8 @@ monitored_variables: description: Instant measure of the current used bandwidth for download. current_up_bandwidth: description: Instant measure of the current used bandwidth for upload. + uptime: + description: Uptime since the last boot. + number_of_reboots: + description: Number of reboot since the initial configuration of the router. {% endconfiguration %} diff --git a/source/_integrations/blackbird.markdown b/source/_integrations/blackbird.markdown index 6d206fd3cde..834f9f2a4af 100644 --- a/source/_integrations/blackbird.markdown +++ b/source/_integrations/blackbird.markdown @@ -52,7 +52,7 @@ sources: type: string {% endconfiguration %} -### Service `media_player.blackbird_set_all_zones` +### Service `blackbird.set_all_zones` Set all zones to the same input source. This service allows you to immediately synchronize all the TVs in your home. Regardless of `entity_id` provided, all zones will be updated. diff --git a/source/_integrations/bluesound.markdown b/source/_integrations/bluesound.markdown index 3deaec8ce09..4422ba265a3 100644 --- a/source/_integrations/bluesound.markdown +++ b/source/_integrations/bluesound.markdown @@ -55,7 +55,7 @@ media_player: - host: 192.168.1.131 ``` -### Service `bluesound_join` +### Service `bluesound.join` Group players together under a single master speaker. That will make a new group or join an existing group. @@ -64,7 +64,7 @@ Group players together under a single master speaker. That will make a new group | `master` | no | A single `entity_id` that will become/hold the master speaker. | `entity_id` | no | String or list of a single `entity_id` that will group to master speaker. -### Service `bluesound_unjoin` +### Service `bluesound.unjoin` Remove one or more speakers from a group of speakers. If no `entity_id` is provided, all speakers are unjoined. @@ -72,7 +72,7 @@ Remove one or more speakers from a group of speakers. If no `entity_id` is provi | ---------------------- | -------- | ----------- | | `entity_id` | yes | String or list of `entity_id`s that will be separated from their master speaker. -### Service `bluesound_set_sleep_timer` +### Service `bluesound.set_sleep_timer` 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). @@ -81,7 +81,7 @@ If you increase an ongoing timer of for example 13 minutes, it will increase it | ---------------------- | -------- | ----------- | | `entity_id` | no | String or list of `entity_id`s that will have their timers set. -### Service `bluesound_clear_sleep_timer` +### Service `bluesound.clear_sleep_timer` Clear the sleep timer on a speaker, if one is set. diff --git a/source/_integrations/broadlink.markdown b/source/_integrations/broadlink.markdown index 6f7a47c04f9..5ff2381de7a 100644 --- a/source/_integrations/broadlink.markdown +++ b/source/_integrations/broadlink.markdown @@ -3,6 +3,7 @@ title: "Broadlink" description: "Instructions on how to integrate Broadlink within Home Assistant." logo: broadlink.png ha_category: + - Remote - Switch - Sensor ha_release: 0.35 @@ -11,9 +12,161 @@ ha_iot_class: Local Polling There is currently support for the following device types within Home Assistant: +- [Remote](#remote) - [Sensor](#sensor) - [Switch](#switch) +## Remote + +The `broadlink` remote platform allows you to interact with Broadlink remote control devices. + +### Configuration + +To enable it, add the following lines to your `configuration.yaml`: + +```yaml +# Example configuration.yaml entry +remote: + - platform: broadlink + host: IP_ADDRESS + mac: MAC_ADDRESS +``` + +{% configuration %} +host: + description: The hostname/IP address to connect to. + required: true + type: string +mac: + description: Device MAC address. + required: true + type: string +timeout: + description: Timeout in seconds for the connection to the device. + required: false + default: 5 + type: integer +name: + description: Name of the device. + required: false + default: Broadlink + type: string +{% endconfiguration %} + +### Learn command + +Use the `remote.learn_command` service to learn new commands. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ----------------------------------------- | +| `entity_id` | no | ID of the remote. | +| `device` | no | Name of the device to control. | +| `command` | no | Names of the commands to learn. | +| `alternative` | yes | Toggle commands? | +| `timeout` | yes | Timeout in seconds to learn each command. | + +Example 1: Learn a single command + +```yaml +script: + learn_mute_tv: + sequence: + - service: remote.learn_command + data: + entity_id: remote.bedroom + device: television + command: mute +``` + +Example 2: Learn a sequence of commands + +```yaml +script: + learn_tv_commands: + sequence: + - service: remote.learn_command + data: + entity_id: remote.bedroom + device: television + command: + - turn on + - turn off + - volume up + - volume down +``` + +Example 3: Learn a toggle command + +The `alternative` flag is useful for capturing commands where the same button is used for more than one purpose, such as the power button, which can turn the television on and off. + +```yaml +script: + learn_tv_power_button: + sequence: + - service: remote.learn_command + data: + entity_id: remote.bedroom + device: television + command: power + alternative: True +``` + +In the above example, two codes will be captured for the power command, and will be sent alternately each time the command is called. + +### Send command + +Use the `remote.send_command` service to send commands. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ---------------------------------------------------- | +| `entity_id` | no | ID of the remote. | +| `device` | no | Name of the device to control. | +| `command` | no | Names of the commands to send. | +| `num_repeats` | yes | Number of times to repeat the commands. | +| `delay_secs` | yes | Interval in seconds between one command and another. | + +Example 1: Send a single command + +```yaml +script: + mute_tv: + sequence: + - service: remote.send_command + data: + entity_id: remote.bedroom + device: television + command: mute +``` + +Example 2: Send a command repeatedly + +```yaml +script: + turn_up_tv_volume_20: + sequence: + - service: remote.send_command + data: + entity_id: remote.bedroom + device: television + command: volume up + num_repeats: 20 +``` + +Example 3: Send a sequence of commands + +```yaml +script: + turn_on_ac: + sequence: + - service: remote.send_command + data: + entity_id: remote.bedroom + device: air conditioner + command: + - turn on + - turn off display +``` + ## Sensor The `broadlink` sensor platform let you monitor data from an RM2 and A1 E-air. There is currently no support for the cloud API. @@ -292,10 +445,10 @@ switch: You can use the service `broadlink.send` to directly send IR packets without the need to assign a switch entity for each command. -| Service data attribute | Optional | Description | -| ---------------------- | -------- | ----------- | -| `host` | no | IP address to send command to. -| `packet` | no | String or list of strings that contain the packet data. +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ------------------------------------------------------- | +| `host` | no | IP address to send command to. | +| `packet` | no | String or list of strings that contain the packet data. | Example: diff --git a/source/_integrations/cast.markdown b/source/_integrations/cast.markdown index eff0317b1ac..29190ff4128 100644 --- a/source/_integrations/cast.markdown +++ b/source/_integrations/cast.markdown @@ -13,7 +13,7 @@ You can enable the Cast integration by going to the Integrations page inside the ## Home Assistant Cast -Home Assistant has its own Cast application to show the Home Assistant UI on any Chromecast device. You can use it by adding the [Cast entity row](/lovelace/entities/#cast) to your Lovelace UI, or by calling the `cast.show_lovelace_view` service. The service takes the path of a Lovelace view and an entity ID of a Cast device to show the view on. +Home Assistant has its own Cast application to show the Home Assistant UI on any Chromecast device. You can use it by adding the [Cast entity row](/lovelace/entities/#cast) to your Lovelace UI, or by calling the `cast.show_lovelace_view` service. The service takes the path of a Lovelace view and an entity ID of a Cast device to show the view on. A `path` has to be defined in your Lovelace YAML for each view, as outlined in the [views documentation](/lovelace/views/#path). ```json { diff --git a/source/_integrations/channels.markdown b/source/_integrations/channels.markdown index 449471874e4..4bc28d76cdb 100644 --- a/source/_integrations/channels.markdown +++ b/source/_integrations/channels.markdown @@ -40,7 +40,7 @@ name: type: string {% endconfiguration %} -### Service `channels_seek_forward` +### Service `seek_forward` Seek forward by the number of seconds currently set in settings on the instance of Channels. @@ -49,7 +49,7 @@ Seek forward by the number of seconds currently set in settings on the instance | `entity_id` | no | String that points at `entity_id` of Channels app. -### Service `channels_seek_backward` +### Service `seek_backward` Seek backward by the number of seconds currently set in settings on the instance of Channels. @@ -57,7 +57,7 @@ Seek backward by the number of seconds currently set in settings on the instance | ---------------------- | -------- | ----------- | | `entity_id` | no | String that points at `entity_id` of Channels app. -### Service `channels_seek_by` +### Service `seek_by` Seek forward or backward by a provided number of seconds. diff --git a/source/_integrations/climate.modbus.markdown b/source/_integrations/climate.modbus.markdown index 204683b578c..5a9bb057368 100644 --- a/source/_integrations/climate.modbus.markdown +++ b/source/_integrations/climate.modbus.markdown @@ -22,6 +22,14 @@ climate: name: Watlow F4T hub: hub1 slave: 1 + data_type: uint + count: 1 + scale: 0.1 + offset: 0 + precision: 1 + max_temp: 30 + min_temp: 15 + temp_step: 1 target_temp_register: 2782 current_temp_register: 27586 ``` @@ -62,6 +70,36 @@ precision: required: false type: integer default: 0 +scale: + description: Scale factor (output = scale * value + offset). + required: false + type: float + default: 1 +offset: + description: Final offset (output = scale * value + offset). + required: false + type: float + default: 0 +max_temp: + description: Maximum setpoint temperature. + required: false + type: integer + default: 35 +min_temp: + description: Maximum setpoint temperature. + required: false + type: integer + default: 5 +temp_step: + description: The supported step size a target temperature can be increased/decreased. + required: false + type: float + default: 0.5 +temperature_unit: + description: Temperature unit reported by the current_temp_register. C or F + required: false + type: string + default: C {% endconfiguration %} diff --git a/source/_integrations/comfoconnect.markdown b/source/_integrations/comfoconnect.markdown index 476d13a786d..5f5a3eb7dae 100644 --- a/source/_integrations/comfoconnect.markdown +++ b/source/_integrations/comfoconnect.markdown @@ -6,6 +6,7 @@ ha_category: - Fan - Sensor ha_release: 0.48 +ha_iot_class: "Local Push" --- The `comfoconnect` integration lets you control Zehnder ComfoAir [Q350](https://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q350-tr)/[Q450](https://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q450-tr)/[Q600](https://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q600-st) @@ -57,14 +58,27 @@ To register the sensors, add the following to your `configuration.yaml` file: sensor: - platform: comfoconnect resources: - - current_temperature - - current_humidity - - outside_temperature - - outside_humidity - - air_flow_supply - air_flow_exhaust + - air_flow_supply + - bypass_state + - current_humidity + - current_temperature + - days_to_replace_filter + - exhaust_fan_duty + - exhaust_fan_speed + - exhaust_humidity + - exhaust_temperature + - outside_humidity + - outside_temperature + - power_usage + - supply_fan_duty + - supply_fan_speed + - supply_humidity + - supply_temperature ``` +The list above indicates all supported sensors. It is recommended to only include the ones you need. +
Note that it's not possible to have multiple connection to the bridge at the same time. This integration will keep the connection open, and if you open the app, it will ask you to disconnect Home Assistant. If you close the app again, Home Assistant will reconnect automatically.
diff --git a/source/_integrations/device_tracker.markdown b/source/_integrations/device_tracker.markdown index b1207f6aef4..4259c2251cc 100644 --- a/source/_integrations/device_tracker.markdown +++ b/source/_integrations/device_tracker.markdown @@ -29,7 +29,7 @@ device_tracker: The following optional parameters can be used with any platform:
- Device tracker will only look for global settings under the configuration of the first configured platform. + Device tracker will only look for global settings under the configuration of the first configured platform. These 3 are the global settings:
| Parameter | Default | Description | @@ -83,7 +83,7 @@ devicename:
-In the example above, `devicename` refers to the detected name of the device. For instance, `my_iphone`. +In the example above, `devicename` refers to the detected name of the device. For example, with `nmap`, this will be the MAC address (with byte separators omitted).
diff --git a/source/_integrations/device_tracker.xiaomi.markdown b/source/_integrations/device_tracker.xiaomi.markdown index 12042f1b1ac..61e6ce8d431 100644 --- a/source/_integrations/device_tracker.xiaomi.markdown +++ b/source/_integrations/device_tracker.xiaomi.markdown @@ -43,3 +43,6 @@ See the [device tracker integration page](/integrations/device_tracker/) for ins To ensure that your router is compatible, navigate to `http://YOUR_ROUTER_IP/api/misystem/devicelist`. You should see a listing of the device currently connected to your router. + +However, some users report that even when the previous URL does not work, they have been able to integrate their Mi Router 3 in Home Assistant. E.g., some users with the Mi Router 3 and firmware version 2.10.46 Stable have integrated their routers successfully and an alternative URL to test integration with is `http://YOUR_ROUTER_IP/cgi-bin/luci/api/misystem/devicelist`. Navigating to this page should show the `{"code":401,"msg":"Invalid token"}` message. + diff --git a/source/_integrations/dsmr_reader.markdown b/source/_integrations/dsmr_reader.markdown new file mode 100644 index 00000000000..7aae6a9329d --- /dev/null +++ b/source/_integrations/dsmr_reader.markdown @@ -0,0 +1,24 @@ +--- +title: "DSMR Reader" +description: "Instructions on how to integrate DSMR Reader." +ha_category: + - Energy +ha_iot_class: Cloud Polling +ha_release: 0.103 +--- + +The `dsmr_reader` sensor platform allows you to easily add all sensors that [DSMR Reader](https://dsmr-reader.readthedocs.io/en/latest/) exposes to MQTT. It adds a separate sensor for every field in the MQTT topics. + +## Setup + +To use this component, you will need DSMR Reader to be set up to publish to the MQTT server, that Home Assistant also uses. It is important that you setup DSMR Reader to publish to MQTT using "Split Topic" and that you use the default mappings. + +## Configuration + +To use this sensor in your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + - platform: dsmr_reader +``` diff --git a/source/_integrations/emulated_hue.markdown b/source/_integrations/emulated_hue.markdown index a73558708f3..89f77f3fbe5 100644 --- a/source/_integrations/emulated_hue.markdown +++ b/source/_integrations/emulated_hue.markdown @@ -15,7 +15,7 @@ Be aware that `emulated_hue` doesn't work for new users of **Google Home** with
-The `emulated_hue` integration provides a virtual Philips Hue bridge, written entirely in software, which allows services that work with the Hue API to interact with Home Assistant +The `emulated_hue` integration provides a virtual Philips Hue bridge, written entirely in software that allows services that work with the Hue API to interact with Home Assistant entities. The driving use case behind for functionality is to allow Home Assistant to work with an Amazon Echo or Google Home with no setup cost outside of configuration changes. The virtual bridge can turn entities on/off or change the brightness of dimmable lights. The volume level of media players can be controlled as brightness. diff --git a/source/_integrations/envisalink.markdown b/source/_integrations/envisalink.markdown index db77a771c3f..6c55413add0 100644 --- a/source/_integrations/envisalink.markdown +++ b/source/_integrations/envisalink.markdown @@ -137,5 +137,5 @@ The following services are supported by Envisalink and can be used to script or - **alarm_arm_away**: Arms the alarm in standard away mode. - **alarm_arm_night**: Arms the alarm in night mode. - **alarm_trigger**: Trigger an alarm on the Envisalink connected alarm system. For example, a newer zwave/zigbee sensor can now be integrated into a legacy alarm system using a Home Assistant automation. -- **envisalink_alarm_keypress**: Sends a string of up to 6 characters to the alarm. *DSC alarms only* +- **alarm_keypress**: Sends a string of up to 6 characters to the alarm. *Works with DSC panels, and confirmed to work with Honeywell Vista-20P (aka First Alert FA-168)* - **invoke_custom_function**: Invokes a custom PGM function. *DSC alarms only* diff --git a/source/_integrations/facebox.markdown b/source/_integrations/facebox.markdown index 4674ac2fa37..86007927153 100644 --- a/source/_integrations/facebox.markdown +++ b/source/_integrations/facebox.markdown @@ -111,9 +111,9 @@ Use the `image_processing.detect_face` events to trigger automations, and breako ``` {% endraw %} -## Service `facebox_teach_face` +## Service `facebox.teach_face` -The service `facebox_teach_face` can be used to teach Facebox faces. +The service `facebox.teach_face` can be used to teach Facebox faces. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -141,7 +141,7 @@ You can use an automation to receive a notification when you train a face: alias: Face taught trigger: - event_data: - service: facebox_teach_face + service: facebox.teach_face event_type: call_service platform: event condition: [] diff --git a/source/_integrations/fan.mqtt.markdown b/source/_integrations/fan.mqtt.markdown index 4cac0826660..c5af29e3dab 100644 --- a/source/_integrations/fan.mqtt.markdown +++ b/source/_integrations/fan.mqtt.markdown @@ -180,11 +180,11 @@ device: type: string {% endconfiguration %} - +
Make sure that your topics match exactly. `some-topic/` and `some-topic` are different topics. - +
## Examples @@ -214,6 +214,7 @@ fan: payload_medium_speed: "medium" payload_high_speed: "high" speeds: + - "off" - low - medium - high diff --git a/source/_integrations/fan.xiaomi_miio.markdown b/source/_integrations/fan.xiaomi_miio.markdown index 901f1a5c624..17bb3e5fd10 100644 --- a/source/_integrations/fan.xiaomi_miio.markdown +++ b/source/_integrations/fan.xiaomi_miio.markdown @@ -29,6 +29,7 @@ Air Purifier Super | zhimi.airpurifier.sa1 | | Air Purifier Super 2 | zhimi.airpurifier.sa2 | | Air Humidifier | zhimi.humidifier.v1 | | Air Humidifier CA1 | zhimi.humidifier.ca1 | | +Air Humidifier CB1 | zhimi.humidifier.cb1 | | Air Fresh VA2 | zhimi.airfresh.va2 | | @@ -246,6 +247,33 @@ Air Fresh VA2 | zhimi.airfresh.va2 | | - depth - dry +### Air Humidifier CB (zhimi.humidifier.cb1) + +- On, Off +- Operation modes (silent, medium, high, auto) +- Buzzer (on, off) +- Child lock (on, off) +- LED (on, off), LED brightness (bright, dim, off) +- Target humidity (30, 40, 50, 60, 70, 80) +- Dry mode (on, off) +- Attributes + - speed + - speed_list + - model + - temperature + - humidity + - mode + - buzzer + - child_lock + - target_humidity + - led_brightness + - use_time + - hardware_version + - motor_speed + - depth + - dry + - supported_features + ### Air Fresh VA2 * Power (on, off) @@ -314,7 +342,7 @@ Set the fan speed/operation mode. | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `speed` | no | Fan speed. Valid values are 'Auto', 'Silent', 'Favorite' and 'Idle' | -### Service `fan.xiaomi_miio_set_buzzer_on` (Air Purifier Pro excluded) +### Service `xiaomi_miio.fan_set_buzzer_on` (Air Purifier Pro excluded) Turn the buzzer on. @@ -322,7 +350,7 @@ Turn the buzzer on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_buzzer_off` (Air Purifier Pro excluded) +### Service `xiaomi_miio.fan_set_buzzer_off` (Air Purifier Pro excluded) Turn the buzzer off. @@ -330,7 +358,7 @@ Turn the buzzer off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_led_on` (Air Purifiers only) +### Service `xiaomi_miio.fan_set_led_on` (Air Purifiers only) Turn the led on. @@ -338,7 +366,7 @@ Turn the led on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_led_off` (Air Purifiers only) +### Service `xiaomi_miio.fan_set_led_off` (Air Purifiers only) Turn the led off. @@ -346,7 +374,7 @@ Turn the led off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_child_lock_on` +### Service `xiaomi_miio.fan_set_child_lock_on` Turn the child lock on. @@ -354,7 +382,7 @@ Turn the child lock on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_child_lock_off` +### Service `xiaomi_miio.fan_set_child_lock_off` Turn the child lock off. @@ -362,7 +390,7 @@ Turn the child lock off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_led_brightness` (Air Purifier 2S and Air Purifier Pro excluded) +### Service `xiaomi_miio.fan_set_led_brightness` (Air Purifier 2S and Air Purifier Pro excluded) Set the led brightness. Supported values are 0 (Bright), 1 (Dim), 2 (Off). @@ -371,7 +399,7 @@ Set the led brightness. Supported values are 0 (Bright), 1 (Dim), 2 (Off). | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `brightness` | no | Brightness, between 0 and 2. | -### Service `fan.xiaomi_miio_set_favorite_level` (Air Purifiers only) +### Service `xiaomi_miio.fan_set_favorite_level` (Air Purifiers only) Set the favorite level of the operation mode "favorite". @@ -380,7 +408,7 @@ Set the favorite level of the operation mode "favorite". | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `level` | no | Level, between 0 and 16. | -### Service `fan.xiaomi_miio_set_auto_detect_on` (Air Purifier 2S and Air Purifier Pro only) +### Service `xiaomi_miio.fan_set_auto_detect_on` (Air Purifier 2S and Air Purifier Pro only) Turn the auto detect on. @@ -388,7 +416,7 @@ Turn the auto detect on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_auto_detect_off` (Air Purifier 2S and Air Purifier Pro only) +### Service `xiaomi_miio.fan_set_auto_detect_off` (Air Purifier 2S and Air Purifier Pro only) Turn the auto detect off. @@ -396,7 +424,7 @@ Turn the auto detect off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_learn_mode_on` (Air Purifier 2 only) +### Service `xiaomi_miio.fan_set_learn_mode_on` (Air Purifier 2 only) Turn the learn mode on. @@ -404,7 +432,7 @@ Turn the learn mode on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_learn_mode_off` (Air Purifier 2 only) +### Service `xiaomi_miio.fan_set_learn_mode_off` (Air Purifier 2 only) Turn the learn mode off. @@ -412,7 +440,7 @@ Turn the learn mode off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_volume` (Air Purifier Pro only) +### Service `xiaomi_miio.fan_set_volume` (Air Purifier Pro only) Set the sound volume. @@ -421,7 +449,7 @@ Set the sound volume. | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `volume` | no | Volume, between 0 and 100. | -### Service `fan.xiaomi_miio_reset_filter` (Air Purifier 2 only) +### Service `xiaomi_miio.fan_reset_filter` (Air Purifier 2 only) Reset the filter lifetime and usage. @@ -429,7 +457,7 @@ Reset the filter lifetime and usage. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_extra_features` (Air Purifier only) +### Service `xiaomi_miio.fan_set_extra_features` (Air Purifier only) Set the extra features. @@ -438,7 +466,7 @@ Set the extra features. | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `features` | no | Integer, known values are 0 and 1. | -### Service `fan.xiaomi_miio_set_target_humidity` (Air Humidifier only) +### Service `xiaomi_miio.fan_set_target_humidity` (Air Humidifier only) Set the target humidity. @@ -447,7 +475,7 @@ Set the target humidity. | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | | `humidity` | no | Target humidity. Allowed values are 30, 40, 50, 60, 70 and 80 | -### Service `fan.xiaomi_miio_set_dry_on` (Air Humidifier CA only) +### Service `fan.xiaomi_miio_set_dry_on` (Air Humidifier CA and CB) Turn the dry mode on. @@ -455,7 +483,7 @@ Turn the dry mode on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO fan entity. | -### Service `fan.xiaomi_miio_set_dry_off` (Air Humidifier CA only) +### Service `fan.xiaomi_miio_set_dry_off` (Air Humidifier CA and CB) Turn the dry mode off. diff --git a/source/_integrations/flume.markdown b/source/_integrations/flume.markdown new file mode 100644 index 00000000000..8d10c2d1210 --- /dev/null +++ b/source/_integrations/flume.markdown @@ -0,0 +1,72 @@ +--- +title: "flume" +description: "Documentation about the flume sensor." +ha_category: + - Sensor +ha_iot_class: Cloud Polling +ha_release: 0.103 +--- + +The `flume` sensor will show you the current [flume](https://portal.flumetech.com/) status for the given Device ID. + +Flume monitors the real-time status of your home water meter. Allowing the end-user to detect small leaks, gain real-time information on household water consumption, set water goals and budgets, and receive push notifications when suspicious water activities occur. + +## Configuration + +You can find your Client ID and Client Secret under "API Access" on the [settings page](https://https://portal.flumetech.com/#settings). + +To enable the flume sensor, add the following lines to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + # Flume + - platform: flume + username: YOUR_FLUME_USERNAME + password: YOUR_FLUME_PASSWORD + client_id: YOUR_FLUME_CLIENT_ID + client_secret: YOUR_FLUME_CLIENT_SECRET +``` + +{% configuration %} +username: + description: Your flume user id. + required: true + type: string +password: + description: Your flume password. + required: true + type: string +client_id: + description: Your flume Client ID. + required: true + type: string +client_secret: + description: Your flume Client Secret. + required: true + type: string +name: + description: A name to display on the sensor. + required: false + default: Flume Sensor + type: string +{% endconfiguration %} + +# Configuration for Binary Sensor + +The following YAML creates a binary sensor. This requires the default sensor to be configured successfully. + +{% raw %} + +```yaml +# Example configuration.yaml entry +binary_sensor: + - platform: template + sensors: + flume_status: + friendly_name: "Flume Flow Status" + value_template: >- + {{ states.sensor.flume_sensor.state != "0" }} +``` + +{% endraw %} diff --git a/source/_integrations/freebox.markdown b/source/_integrations/freebox.markdown index 163d8dc2c5d..cfbd800d837 100644 --- a/source/_integrations/freebox.markdown +++ b/source/_integrations/freebox.markdown @@ -46,6 +46,12 @@ You can find out your Freebox host and port by opening the address + +If you change your Freebox router for a new one, you need to delete the `freebox.conf` file located in your Home Assistant configuration directory to make the association again. + +
+ ### Initial setup
diff --git a/source/_integrations/fritzbox_callmonitor.markdown b/source/_integrations/fritzbox_callmonitor.markdown index f8476c7f49a..c0ddef3c2cf 100644 --- a/source/_integrations/fritzbox_callmonitor.markdown +++ b/source/_integrations/fritzbox_callmonitor.markdown @@ -23,6 +23,7 @@ $ sudo apt-get install libxml2-dev libxslt-dev \ If you installed Home Assistant in a virtualenv, also run the following command inside it. Be patient this will take a while. + ```bash pip3 install lxml ``` @@ -48,7 +49,7 @@ name: default: Phone type: string host: - description: The IP address of your router, e.g., 192.168.1.1. It is optional since every fritzbox is also reachable by using the IP address 169.254.1.1. + description: The IP address of your router, e.g., 192.168.1.1. It is optional since every FRITZ!Box is also reachable by using the IP address 169.254.1.1. If you have a local DNS server and have assigned a hostname to your FRITZ!Box, you can also use that here instead of the IP address. required: false default: 169.254.1.1 type: string diff --git a/source/_integrations/gc100.markdown b/source/_integrations/gc100.markdown index 781011d39f4..dfdb8b97bde 100644 --- a/source/_integrations/gc100.markdown +++ b/source/_integrations/gc100.markdown @@ -7,6 +7,7 @@ ha_category: - Switch ha_release: 0.57 ha_iot_class: Local Polling +logo: global-cache.png --- The Global Caché [GC-100](https://www.globalcache.com/products/gc-100/) can be integrated into Home Assistant. GC-100 is a TCP-controllable diff --git a/source/_integrations/geonetnz_volcano.markdown b/source/_integrations/geonetnz_volcano.markdown new file mode 100644 index 00000000000..0f0631298d6 --- /dev/null +++ b/source/_integrations/geonetnz_volcano.markdown @@ -0,0 +1,96 @@ +--- +title: "GeoNet NZ Volcanic Alert Level" +description: "Instructions on how to integrate the GeoNet New Zealand Volcanic Alert Level feed into Home Assistant." +logo: geonet-nz.png +ha_category: + - Sensor +ha_iot_class: Cloud Polling +ha_release: 0.103 +ha_config_flow: true +--- + +The `geonetnz_volcano` integration lets you use a GeoJSON feed provided by +New Zealand's [GeoNet](https://www.geonet.org.nz/) with information +about volcanoes in the New Zealand region. +It shows information of those volcanoes filtered by distance to Home Assistant's +location. + +Entities are generated and updated automatically with each update +from the feed. Each entity defines the [volcanic alert level](https://www.geonet.org.nz/about/volcano/val) +as its state. Latitude and longitude of the volcano are included as attributes +to show on the default map automatically. + +The data is updated every 5 minutes. + +

+ +

+ +

+ +

+ +
+ +The material used by this integration is provided under the [Creative Commons Attribution 3.0 New Zealand (CC BY 3.0 NZ) license](http://creativecommons.org/licenses/by/3.0/nz/). +It has only been modified for the purpose of presenting the material in Home Assistant. +Please refer to the [creator's disclaimer notice](https://www.geonet.org.nz/disclaimer) and [data policy](https://www.geonet.org.nz/policy) for more information. + +We acknowledge the New Zealand GeoNet project and its sponsors EQC, GNS Science and LINZ, for providing data/images used in this integration. + +
+ +## Configuration + +To integrate the GeoNet New Zealand Volcanic Alert Level feed use the **Integrations** feature +in the GUI, you find it under **Configurations** -> **Integrations**, or add the +following line to your `configuration.yaml`. + +```yaml +# Example configuration.yaml entry +geonetnz_volcano: +``` + +{% configuration %} +radius: + description: The radius around your location to monitor; defaults to 50 km or mi (depending on the unit system defined in your configuration). + required: false + type: float + default: 50.0 +latitude: + description: Latitude of the coordinates around which volcanoes are considered. + required: false + type: float + default: Latitude defined in your configuration. +longitude: + description: Longitude of the coordinates around which volcanoes are considered. + required: false + type: float + default: Longitude defined in your configuration. +{% endconfiguration %} + +## State Attributes + +The following state attributes are available for each entity in addition to +the standard ones: + +| Attribute | Description | +|------------------------|-------------| +| latitude | Latitude of the volcano. | +| longitude | Longitude of the volcano. | +| external_id | The external ID used in the feed to identify the volcano. | +| activity | Volcanic activity. | +| hazards | Most likely hazards. | +| distance | The distance in km or mi to Home Assistant's location. | +| last update | Timestamp of the last update from the feed. | +| last update successful | Timestamp of the last successful update from the feed. | + +## Full Configuration + +```yaml +# Example configuration.yaml entry +geonetnz_quakes: + radius: 100 + latitude: -41.2 + longitude: 174.7 +``` diff --git a/source/_integrations/google_assistant.markdown b/source/_integrations/google_assistant.markdown index a96ea5a33f6..19f4c3fc610 100644 --- a/source/_integrations/google_assistant.markdown +++ b/source/_integrations/google_assistant.markdown @@ -193,7 +193,7 @@ Currently, the following domains are available to be used with Google Assistant, - media_player (on/off/set volume (via set volume)/source (via set input source)) - climate (temperature setting, hvac_mode) - vacuum (dock/start/stop/pause) -- sensor (temperature setting, only for temperature sensor) +- sensor (temperature setting for temperature sensors and humidity setting for humidity sensors) - Alarm Control Panel (Arm/Disarm)
diff --git a/source/_integrations/group.markdown b/source/_integrations/group.markdown index 451f8ca80a5..ce40ecc90aa 100644 --- a/source/_integrations/group.markdown +++ b/source/_integrations/group.markdown @@ -10,7 +10,7 @@ ha_release: pre 0.7 Groups allow the user to combine multiple entities into one. -Check the **Set State** page from the **Developer Tools** and browse the **Current entities:** listing for all available entities. +Check the **States** page from the **Developer Tools** and browse the **Current entities:** listing for all available entities. ```yaml # Example configuration.yaml entry @@ -70,7 +70,7 @@ Some integrations automatically create special groups containing integration ent - `group.all_scripts` - `group.all_automations` -You can see list of these groups in **State** page of the **Developer Tools**. +You can see list of these groups in **States** page of the **Developer Tools**. ## Group behavior diff --git a/source/_integrations/harmony.markdown b/source/_integrations/harmony.markdown index 3c9f71aadc8..afac8b40fbd 100644 --- a/source/_integrations/harmony.markdown +++ b/source/_integrations/harmony.markdown @@ -182,7 +182,7 @@ data: delay_secs: 0.6 ``` -### Service `remote.harmony_change_channel` +### Service `harmony.change_channel` Sends the change channel command to the Harmony HUB @@ -194,13 +194,13 @@ Sends the change channel command to the Harmony HUB A typical service call for changing the channel would be:: ```yaml -service: remote.change_channel +service: harmony.change_channel data: entity_id: remote.tv_room channel: 200 ``` -### Service `remote.harmony_sync` +### Service `harmony.sync` Force synchronization between the Harmony device and the Harmony cloud. diff --git a/source/_integrations/heatmiser.markdown b/source/_integrations/heatmiser.markdown index 26059c0b501..c1ec07107c3 100644 --- a/source/_integrations/heatmiser.markdown +++ b/source/_integrations/heatmiser.markdown @@ -17,25 +17,24 @@ To set it up, add the following information to your `configuration.yaml` file: ```yaml climate: - platform: heatmiser - ipaddress: YOUR_IP_ADDRESS + host: YOUR_IP_ADDRESS port: YOUR_PORT tstats: - - 1: - id: THERMOSTAT_ID + - id: THERMOSTAT_ID name: THERMOSTAT_NAME ``` A single interface can handle up to 32 connected devices. {% configuration %} -ipaddress: +host: 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 + type: string tstats: description: A list of thermostats activated on the gateway. required: true diff --git a/source/_integrations/hisense_aehw4a1.markdown b/source/_integrations/hisense_aehw4a1.markdown new file mode 100644 index 00000000000..e070012f786 --- /dev/null +++ b/source/_integrations/hisense_aehw4a1.markdown @@ -0,0 +1,44 @@ +--- +title: "Hisense AEH-W4A1" +description: "Instructions to setup the Hisense AEH W4A1 WiFi module for ACs." +logo: hisense.png +ha_release: 0.103 +ha_category: + - Climate +ha_iot_class: Local Poll +--- + +The Hisense AEH-W4A1 is a WiFi module used to give WiFi connectivity to some Hisense ACs and rebranded models (Smart Cool, Beko and others). + +Later AC models use other WiFi modules (like AEH-W4B1 and AEH-W4E1) that are not compatible or otherwise tested with this integration. + +It is highly recommended not to use one of the official smartphone applications and this integration at the same time, to avoid problems related to command collision. + +## Configuration + +To integrate one or more Hisense AEH-W4A1 controlled ACs with Home Assistant, use the Configuration/Integrations or add the following section to your `configuration.yaml` file: + +```yaml +# Automatic discovery +hisense_aehw4a1: +``` + +Alternately, devices that are not discoverable can be statically configured. +The use of static configuration disables automatic discovery. + +{% configuration %} +ip_address: + description: One or more static IP addresses + required: false + type: list +{% endconfiguration %} + +## Full configuration example + +```yaml +# Static configured devices +hisense_aehw4a1: + ip_address: + - 192.168.5.10 + - 192.168.5.20 +``` diff --git a/source/_integrations/homematic.markdown b/source/_integrations/homematic.markdown index d3b77eabf45..d6f587d5211 100644 --- a/source/_integrations/homematic.markdown +++ b/source/_integrations/homematic.markdown @@ -32,6 +32,12 @@ There is currently support for the following device types within Home Assistant: Device support is available for most of the wired and wireless devices, as well as a lot of IP devices. If you have a setup with mixed protocols, you have to configure additional [interfaces](/integrations/homematic#interfaces) with the appropriate ports. The default is using port 2001, which are wireless devices. Wired devices usually are available through port 2000 and IP devices through port 2010. The virtual thermostatgroups the CCU provides use port 9292 **and** require you to set the `path` setting to `/groups`. When using SSL on a CCU3, by default the same ports as usual with a prepended 4 are available. So 2001 becomes 42001, 2010 becomes 42010 etc.. +
+ +Since CCU Version 3, the internal firewalls are enabled by default. You have to grant full access for the `XML-RPC API` or specify the IP-address of the Home-Assistant server and whitelist it, inside the CCU's security settings. + +
+ If you want to see if a specific device you have is supported, head over to the [pyhomematic](https://github.com/danielperna84/pyhomematic/tree/master/pyhomematic/devicetypes) repository and browse through the source code. A dictionary with the device identifiers (e.g., HM-Sec-SC-2) can be found within the relevant modules near the bottom. If your device is not supported, feel free to contribute. We automatically detect all devices we currently support and try to generate useful names. If you enable name-resolving, we try to fetch names from Metadata (Homegear), via JSON-RPC or the XML-API you may have installed on your CCU. Since this may fail this is disabled by default. diff --git a/source/_integrations/homematicip_cloud.markdown b/source/_integrations/homematicip_cloud.markdown index 385d6a49b69..f98fb019127 100644 --- a/source/_integrations/homematicip_cloud.markdown +++ b/source/_integrations/homematicip_cloud.markdown @@ -111,6 +111,12 @@ Within this delay the device registration should be completed in the App, otherw * Radiator thermostat (*HmIP-eTRV,-2,-C*) - should also work with (*HmIP-eTRV-2-UK, -B, -B1*) * Temperature and humidity sensor (*HmIP-STH*) * Temperature and humidity Sensor with display (*HmIP-STHD*) + * There is no need to directly support the following devices by Home Assistant, because their integration is done by the required wall thermostats: + * Floor Heating Actuator – 6x channels, 230V (*HMIP-FAL230-C6*) + * Floor Heating Actuator – 10x channels, 230V (*HMIP-FAL230-C10*) + * Floor Heating Actuator – 6x channels, 24V (*HMIP-FAL24-C6*) + * Floor Heating Actuator – 10x channels, 24V (*HMIP-FAL24-C10*) + * Floor Heating Actuator – 12x channels, motorised (*HMIP-FALMOT-C12*) * homematicip_cloud.cover * Shutter actuator for brand-mount (*HmIP-BROLL*) diff --git a/source/_integrations/honeywell.markdown b/source/_integrations/honeywell.markdown index 27ad9976ddb..6dbc14e6f68 100644 --- a/source/_integrations/honeywell.markdown +++ b/source/_integrations/honeywell.markdown @@ -8,7 +8,7 @@ ha_release: pre 0.7 ha_iot_class: Cloud Polling --- -The `honeywell` climate platform integrates Home Assistant with _US-based_ [Honeywell Total Connect Comfort (TCC)](https://mytotalconnectcomfort.com/portal/]) climate systems. +The `honeywell` climate platform integrates Home Assistant with _US-based_ [Honeywell Total Connect Comfort (TCC)](https://mytotalconnectcomfort.com/portal/) climate systems. It does not support the home security functionality of TCC. diff --git a/source/_integrations/html5.markdown b/source/_integrations/html5.markdown index 21e1396fcaf..97ab7cdb13d 100644 --- a/source/_integrations/html5.markdown +++ b/source/_integrations/html5.markdown @@ -232,7 +232,7 @@ data: ### Dismiss -You can dismiss notifications by using service notify.html5_dismiss like so: +You can dismiss notifications by using service html5.dismiss like so: ```json { diff --git a/source/_integrations/huawei_lte.markdown b/source/_integrations/huawei_lte.markdown index 4a8b8585f7c..515b488d12b 100644 --- a/source/_integrations/huawei_lte.markdown +++ b/source/_integrations/huawei_lte.markdown @@ -8,6 +8,7 @@ ha_category: - Notifications - Sensor - Switch + - Binary Sensor ha_release: 0.79 ha_iot_class: Local Polling --- @@ -20,6 +21,7 @@ There is currently support for the following platforms within Home Assistant: - Notifications - via SMS - Sensors - device, signal, and traffic information - Switch - mobile data on/off +- Binary sensor - mobile connection status ## Configuration @@ -44,6 +46,7 @@ default: - WAN IP address sensor - LTE signal sensors RSRQ, RSRP, RSSI, and SINR - mobile data switch +- mobile connection binary sensor - device tracker entries The rest are added to the entity registry, but disabled by default. diff --git a/source/_integrations/huawei_router.markdown b/source/_integrations/huawei_router.markdown index c6496992309..6a8f012e2f3 100644 --- a/source/_integrations/huawei_router.markdown +++ b/source/_integrations/huawei_router.markdown @@ -9,7 +9,7 @@ ha_release: 0.51 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). +Currently, this was only tested with the Huawei HG8247H, HS8247W and HG8247Q Smart Router (used by Vodafone Portugal). ## Configuration diff --git a/source/_integrations/icloud.markdown b/source/_integrations/icloud.markdown index 1f8fdb602f9..d70e5aa4a1d 100644 --- a/source/_integrations/icloud.markdown +++ b/source/_integrations/icloud.markdown @@ -64,7 +64,7 @@ If 2 Step Authentication is enabled for your iCloud account. The integration wil 2 Factor Authentication is the improved version of 2 Step Authentication, this is still not supported by the pyicloud library. Therefore it's not possible to use it with the device_tracker yet. 4 services are available for this component: -- **icloud_update**: This service can be used to ask for an update of a certain iDevice. The `account_name` and `device_name` are optional. Request will result in new Home Assistant [state_changed](/docs/configuration/events/#event-state_changed) event describing current iphone location. Can be used in automations when manual location update is needed, e.g., to check if anyone is home when door's been opened. -- **icloud_lost_iphone**: This service will play the Lost iPhone sound on a certain iDevice. The `account_name` and `device_name` are optional. -- **icloud_set_interval**: This service will change the dynamic interval of an iDevice. The `account_name` and `device_name` are optional. If `interval` is used in the service_data, the iDevice will be updated with that new interval. That interval will be fixed until the iDevice changes zone or if this service is called again. If `interval` isn't used in the service_data, the interval for that iDevice will revert back to its default dynamic interval based on its current zone, its distance towards home and its battery level. -- **icloud_reset_account**: This service can be used to reset an iCloud account. This is helpful when not all devices are found by the integration or if you have added a new iDevice to your account. The `account_name` is optional. +- **update**: This service can be used to ask for an update of a certain iDevice. The `account_name` and `device_name` are optional. Request will result in new Home Assistant [state_changed](/docs/configuration/events/#event-state_changed) event describing current iphone location. Can be used in automations when manual location update is needed, e.g., to check if anyone is home when door's been opened. +- **lost_iphone**: This service will play the Lost iPhone sound on a certain iDevice. The `account_name` and `device_name` are optional. +- **set_interval**: This service will change the dynamic interval of an iDevice. The `account_name` and `device_name` are optional. If `interval` is used in the service_data, the iDevice will be updated with that new interval. That interval will be fixed until the iDevice changes zone or if this service is called again. If `interval` isn't used in the service_data, the interval for that iDevice will revert back to its default dynamic interval based on its current zone, its distance towards home and its battery level. +- **reset_account**: This service can be used to reset an iCloud account. This is helpful when not all devices are found by the integration or if you have added a new iDevice to your account. The `account_name` is optional. diff --git a/source/_integrations/jewish_calendar.markdown b/source/_integrations/jewish_calendar.markdown index 1fd34e689fb..e772b887a43 100644 --- a/source/_integrations/jewish_calendar.markdown +++ b/source/_integrations/jewish_calendar.markdown @@ -82,53 +82,54 @@ For easier use in automations, all time sensors have a `timestamp` attribute, wh ### Holiday sensor -The holiday sensor includes two attibutes: *type* and *id*. +The holiday sensor includes 3 attributes: *type*, *type_id* and *id*. +The *type_id* is useful for cases to condition automations based on a range of types. The following is the list of holidays the sensor knows about with their selected type: -| ID | English | Hebrew | Type | -|----------------------|----------------------------|-----------------------|---------------------------| -| erev_rosh_hashana | Erev Rosh Hashana | ערב ראש השנה | EREV_YOM_TOV | -| rosh_hashana_i | Rosh Hashana I | א' ראש השנה | YOM_TOV | -| rosh_hashana_ii | Rosh Hashana II | ב' ראש השנה | YOM_TOV | -| tzom_gedaliah | Tzom Gedaliah | צום גדליה | FAST_DAY | -| erev_yom_kippur | Erev Yom Kippur | עיוה"כ | EREV_YOM_TOV | -| yom_kippur | Yom Kippur | יום הכפורים | YOM_TOV | -| erev_sukkot | Erev Sukkot | ערב סוכות | EREV_YOM_TOV | -| sukkot | Sukkot | סוכות | YOM_TOV | -| hol_hamoed_sukkot | Hol hamoed Sukkot | חול המועד סוכות | HOL_HAMOED | -| hoshana_raba | Hoshana Raba | הושענא רבה | EREV_YOM_TOV | -| simchat_torah | Simchat Torah | שמחת תורה | YOM_TOV | -| chanukah | Chanukah | חנוכה | MELACHA_PERMITTED_HOLIDAY | -| asara_btevet | Asara B'Tevet | צום עשרה בטבת | FAST_DAY | -| tu_bshvat | Tu B'Shvat | ט"ו בשבט | MINOR_HOLIDAY | -| taanit_esther | Ta'anit Esther | תענית אסתר | FAST_DAY | -| purim | Purim | פורים | MELACHA_PERMITTED_HOLIDAY | -| shushan_purim | Shushan Purim | שושן פורים | MELACHA_PERMITTED_HOLIDAY | -| erev_pesach | Erev Pesach | ערב פסח | EREV_YOM_TOV | -| pesach | Pesach | פסח | YOM_TOV | -| hol_hamoed_pesach | Hol hamoed Pesach | חול המועד פסח | HOL_HAMOED | -| pesach_vii | Pesach VII | שביעי פסח | YOM_TOV | -| yom_haatzmaut | Yom HaAtzma'ut | יום העצמאות | MODERN_HOLIDAY | -| lag_bomer | Lag B'Omer | ל"ג בעומר | MINOR_HOLIDAY | -| erev_shavuot | Erev Shavuot | ערב שבועות | EREV_YOM_TOV | -| shavuot | Shavuot | שבועות | YOM_TOV | -| tzom_tammuz | Tzom Tammuz | צום שבעה עשר בתמוז | FAST_DAY | -| tisha_bav | Tish'a B'Av | תשעה באב | FAST_DAY | -| tu_bav | Tu B'Av | ט"ו באב | MINOR_HOLIDAY | -| yom_hashoah | Yom HaShoah | יום השואה | MEMORIAL_DAY | -| yom_hazikaron | Yom HaZikaron | יום הזכרון | MEMORIAL_DAY | -| yom_yerushalayim | Yom Yerushalayim | יום ירושלים | MODERN_HOLIDAY | -| shmini_atzeret | Shmini Atzeret | שמיני עצרת | YOM_TOV | -| pesach_viii | Pesach VIII | אחרון של פסח | YOM_TOV | -| shavuot_ii | Shavuot II | שני של שבועות | YOM_TOV | -| sukkot_ii | Sukkot II | שני של סוכות | YOM_TOV | -| pesach_ii | Pesach II | שני של פסח | YOM_TOV | -| family_day | Family Day | יום המשפחה | ISRAEL_NATIONAL_HOLIDAY | -| memorial_day_unknown | Memorial day for fallen whose place of burial is unknown | יום זכרון... | MEMORIAL_DAY | -| rabin_memorial_day | Yitzhak Rabin memorial day | יום הזכרון ליצחק רבין | MEMORIAL_DAY | -| zeev_zhabotinsky_day | Zeev Zhabotinsky day | יום ז'בוטינסקי | MEMORIAL_DAY | +| ID | English | Hebrew | Type | +|----------------------|----------------------------|-----------------------|--------------------------------| +| erev_rosh_hashana | Erev Rosh Hashana | ערב ראש השנה | EREV_YOM_TOV (2) | +| rosh_hashana_i | Rosh Hashana I | א' ראש השנה | YOM_TOV (1) | +| rosh_hashana_ii | Rosh Hashana II | ב' ראש השנה | YOM_TOV (1) | +| tzom_gedaliah | Tzom Gedaliah | צום גדליה | FAST_DAY (5) | +| erev_yom_kippur | Erev Yom Kippur | עיוה"כ | EREV_YOM_TOV (2) | +| yom_kippur | Yom Kippur | יום הכפורים | YOM_TOV (1) | +| erev_sukkot | Erev Sukkot | ערב סוכות | EREV_YOM_TOV (2) | +| sukkot | Sukkot | סוכות | YOM_TOV (1) | +| hol_hamoed_sukkot | Hol hamoed Sukkot | חול המועד סוכות | HOL_HAMOED (3) | +| hoshana_raba | Hoshana Raba | הושענא רבה | EREV_YOM_TOV (2) | +| simchat_torah | Simchat Torah | שמחת תורה | YOM_TOV (1) | +| chanukah | Chanukah | חנוכה | MELACHA_PERMITTED_HOLIDAY (4) | +| asara_btevet | Asara B'Tevet | צום עשרה בטבת | FAST_DAY (5) | +| tu_bshvat | Tu B'Shvat | ט"ו בשבט | MINOR_HOLIDAY (7) | +| taanit_esther | Ta'anit Esther | תענית אסתר | FAST_DAY (5) | +| purim | Purim | פורים | MELACHA_PERMITTED_HOLIDAY (4) | +| shushan_purim | Shushan Purim | שושן פורים | MELACHA_PERMITTED_HOLIDAY (4) | +| erev_pesach | Erev Pesach | ערב פסח | EREV_YOM_TOV (2) | +| pesach | Pesach | פסח | YOM_TOV (1) | +| hol_hamoed_pesach | Hol hamoed Pesach | חול המועד פסח | HOL_HAMOED (3) | +| pesach_vii | Pesach VII | שביעי פסח | YOM_TOV (1) | +| yom_haatzmaut | Yom HaAtzma'ut | יום העצמאות | MODERN_HOLIDAY (6) | +| lag_bomer | Lag B'Omer | ל"ג בעומר | MINOR_HOLIDAY (7) | +| erev_shavuot | Erev Shavuot | ערב שבועות | EREV_YOM_TOV (2) | +| shavuot | Shavuot | שבועות | YOM_TOV (1) | +| tzom_tammuz | Tzom Tammuz | צום שבעה עשר בתמוז | FAST_DAY (5) | +| tisha_bav | Tish'a B'Av | תשעה באב | FAST_DAY (5) | +| tu_bav | Tu B'Av | ט"ו באב | MINOR_HOLIDAY (7) | +| yom_hashoah | Yom HaShoah | יום השואה | MEMORIAL_DAY (8) | +| yom_hazikaron | Yom HaZikaron | יום הזכרון | MEMORIAL_DAY (8) | +| yom_yerushalayim | Yom Yerushalayim | יום ירושלים | MODERN_HOLIDAY (6) | +| shmini_atzeret | Shmini Atzeret | שמיני עצרת | YOM_TOV (1) | +| pesach_viii | Pesach VIII | אחרון של פסח | YOM_TOV (1) | +| shavuot_ii | Shavuot II | שני של שבועות | YOM_TOV (1) | +| sukkot_ii | Sukkot II | שני של סוכות | YOM_TOV (1) | +| pesach_ii | Pesach II | שני של פסח | YOM_TOV (1) | +| family_day | Family Day | יום המשפחה | ISRAEL_NATIONAL_HOLIDAY (9) | +| memorial_day_unknown | Memorial day for fallen whose place of burial is unknown | יום זכרון... | MEMORIAL_DAY (8) | +| rabin_memorial_day | Yitzhak Rabin memorial day | יום הזכרון ליצחק רבין | MEMORIAL_DAY (8) | +| zeev_zhabotinsky_day | Zeev Zhabotinsky day | יום ז'בוטינסקי | MEMORIAL_DAY (8) | ## Full configuration sample diff --git a/source/_integrations/lacrosse.markdown b/source/_integrations/lacrosse.markdown index 0d6a6a36f61..2b2ed25f101 100644 --- a/source/_integrations/lacrosse.markdown +++ b/source/_integrations/lacrosse.markdown @@ -23,6 +23,12 @@ Since the sensor change their ID after each powercycle/battery change you can ch sudo pylacrosse -d /dev/ttyUSB0 scan ``` +Or, when using Docker containers: + +```bash +docker exec -it pylacrosse -d /dev/ttyUSB0 scan +``` + ## Configuration To use your `lacrosse` compatible sensor in your installation, add the following to your `configuration.yaml` file: diff --git a/source/_integrations/life360.markdown b/source/_integrations/life360.markdown index f11c4dd1ee3..d618a331434 100644 --- a/source/_integrations/life360.markdown +++ b/source/_integrations/life360.markdown @@ -19,6 +19,12 @@ Then in the Home Assistant user interface (UI), click on Configuration in the le If you would like to set any advanced options, see the following section. You may want to do this before entering your Life360 account information in the UI, or you can change it at any time. Any of the advanced options you want to set from the section below will need to be set manually in your configuration.yaml file. They are not able to be set from the UI. You can also enter your account information in the configuration file (in addition to, or instead of, the UI) if you prefer. +After configuring, it is expected for the Life360 integration page to show "This integration has no devices". You should see a new Life360 device tracker entity showing up on the States page. If it does not: + +- Check the [device tracker documentation](/integrations/device_tracker), especially the `new_device_defaults` setting. +- Check your `known_devices.yaml`; `tracking` should be `true` for your Life360 device. +- In the Life360 app, Location Sharing should be enabled. + {% configuration %} accounts: description: Your Life360 account information. diff --git a/source/_integrations/lifx.markdown b/source/_integrations/lifx.markdown index badbf351f59..bc3b9a39b42 100644 --- a/source/_integrations/lifx.markdown +++ b/source/_integrations/lifx.markdown @@ -65,7 +65,7 @@ script: The available light effects and their options are listed below. -### Service `light.lifx_effect_pulse` +### Service `lifx.effect_pulse` Run a flash effect by changing to a color and then back. @@ -80,7 +80,7 @@ Run a flash effect by changing to a color and then back. | `mode` | The way to change between colors. Valid modes: `blink` (default - direct transition to new color for 'period' time with original color between cycles), `breathe` (color fade transition to new color and back to original), `ping` (short pulse of new color), `strobe` (light turns off between color changes), `solid`(light does not return to original color between cycles). | `power_on` | Set this to False to skip the effect on lights that are turned off (defaults to True). -### Service `light.lifx_effect_colorloop` +### Service `lifx.effect_colorloop` Run an effect with colors looping around the color wheel. All participating lights will coordinate to keep similar (but not identical) colors. @@ -94,7 +94,7 @@ Run an effect with colors looping around the color wheel. All participating ligh | `spread` | Maximum color difference between participating lights, in degrees on a color wheel (ranges from 0 to 359). | `power_on` | Set this to False to skip the effect on lights that are turned off (defaults to True). -### Service `light.lifx_effect_stop` +### Service `lifx.effect_stop` Run an effect that does nothing, thereby stopping any other effect that might be running. diff --git a/source/_integrations/light.xiaomi_miio.markdown b/source/_integrations/light.xiaomi_miio.markdown index f6b160f1798..1494eba80f8 100644 --- a/source/_integrations/light.xiaomi_miio.markdown +++ b/source/_integrations/light.xiaomi_miio.markdown @@ -132,7 +132,7 @@ model: ## Platform Services -### Service `light.xiaomi_miio_set_scene` +### Service `xiaomi_miio.light_set_scene` Set one of the 4 available fixed scenes. @@ -141,7 +141,7 @@ Set one of the 4 available fixed scenes. | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | | `scene` | no | Scene, between 1 and 4. | -### Service `light.xiaomi_miio_set_delayed_turn_off` +### Service `xiaomi_miio.light_set_delayed_turn_off` Delayed turn off. @@ -150,7 +150,7 @@ Delayed turn off. | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | | `time_period` | no | Time period for the delayed turn off. | -### Service `light.xiaomi_miio_reminder_on` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_reminder_on` (Eyecare Smart Lamp 2 only) Enable the eye fatigue reminder/notification. @@ -158,7 +158,7 @@ Enable the eye fatigue reminder/notification. |---------------------------|----------|-------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | -### Service `light.xiaomi_miio_reminder_off` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_reminder_off` (Eyecare Smart Lamp 2 only) Disable the eye fatigue reminder/notification. @@ -166,7 +166,7 @@ Disable the eye fatigue reminder/notification. |---------------------------|----------|-------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | -### Service `light.xiaomi_miio_night_light_mode_on` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_night_light_mode_on` (Eyecare Smart Lamp 2 only) Turn the smart night light mode on. @@ -174,7 +174,7 @@ Turn the smart night light mode on. |---------------------------|----------|-------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | -### Service `light.xiaomi_miio_night_light_mode_off` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_night_light_mode_off` (Eyecare Smart Lamp 2 only) Turn the smart night light mode off. @@ -182,7 +182,7 @@ Turn the smart night light mode off. |---------------------------|----------|-------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | -### Service `light.xiaomi_miio_eyecare_mode_on` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_eyecare_mode_on` (Eyecare Smart Lamp 2 only) Turn the eyecare mode on. @@ -190,7 +190,7 @@ Turn the eyecare mode on. |---------------------------|----------|-------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO light entity. | -### Service `light.xiaomi_miio_eyecare_mode_off` (Eyecare Smart Lamp 2 only) +### Service `xiaomi_miio.light_eyecare_mode_off` (Eyecare Smart Lamp 2 only) Turn the eyecare mode off. diff --git a/source/_integrations/local_file.markdown b/source/_integrations/local_file.markdown index d6e4e223f3a..35969d5b130 100644 --- a/source/_integrations/local_file.markdown +++ b/source/_integrations/local_file.markdown @@ -34,7 +34,7 @@ name: type: string {% endconfiguration %} -### Service `camera.local_file_update_file_path` +### Service `local_file.update_file_path` Use this service to change the file displayed by the camera. diff --git a/source/_integrations/luci.markdown b/source/_integrations/luci.markdown index 776607e3718..5a93b535e6e 100644 --- a/source/_integrations/luci.markdown +++ b/source/_integrations/luci.markdown @@ -11,12 +11,6 @@ _This is one of multiple ways we support OpenWRT. For an overview, see [openwrt] This is a presence detection scanner for OpenWRT using [luci](https://openwrt.org/docs/techref/luci). -
- -This integration requires a [workaround](https://github.com/home-assistant/home-assistant/issues/1258#issuecomment-252469880) when using luci with HTTPS and a self-signed certificate. - -
- Before this scanner can be used you have to install the luci RPC package on OpenWRT: ```bash diff --git a/source/_integrations/lutron_caseta.markdown b/source/_integrations/lutron_caseta.markdown index 36f20244baa..38f2ee71e8d 100644 --- a/source/_integrations/lutron_caseta.markdown +++ b/source/_integrations/lutron_caseta.markdown @@ -8,6 +8,7 @@ ha_category: - Light - Scene - Switch + - Fan ha_release: 0.41 ha_iot_class: Local Polling --- @@ -22,6 +23,7 @@ The currently supported Caseta devices are: - Wall switches as [switches](#switch) - Scenes as [scenes](#scene) - Lutron shades as [covers](#cover) +- Lutron smart [fan](#fan) speed control When configured, the `lutron_caseta` integration will automatically discover the currently supported devices as setup in the Lutron Smart Bridge. The name assigned in the Lutron mobile app will be used to form the `entity_id` used in Home Assistant. e.g., a dimmer called 'Lamp' in a room called 'Bedroom' becomes `light.bedroom_lamp` in Home Assistant. @@ -104,3 +106,11 @@ For dimmable lights including wall and plug-in dimmers, see the light section on For more information on working with switches in Home Assistant, see the [Switches component](/integrations/switch/). Available services: `switch.turn_on` and `switch.turn_off`. + +## Fan + +After setup, fans will appear in Home Assistant using an `entity_id` based on the name used in the Lutron mobile app. For example, a light switch called 'Master Bathroom Vanity' will appear in Home Assistant as `fan.master_bedroom_ceiling_fan`. + +For more information on working with fans in Home Assistant, see the [Fans component](/components/fan/). + +Available services: `fan.turn_on`, `fan.turn_off`, and `fan.set_speed`. diff --git a/source/_integrations/media_player.markdown b/source/_integrations/media_player.markdown index 36cf0868c36..3570768d7b1 100644 --- a/source/_integrations/media_player.markdown +++ b/source/_integrations/media_player.markdown @@ -13,7 +13,7 @@ Interacts with media players on your network. ## Services ### Media control services -Available services: `turn_on`, `turn_off`, `toggle`, `volume_up`, `volume_down`, `volume_set`, `volume_mute`, `media_play_pause`, `media_play`, `media_pause`, `media_stop`, `media_next_track`, `media_previous_track`, `clear_playlist`, `shuffle_set` +Available services: `turn_on`, `turn_off`, `toggle`, `volume_up`, `volume_down`, `volume_set`, `volume_mute`, `media_play_pause`, `media_play`, `media_pause`, `media_stop`, `media_next_track`, `media_previous_track`, `clear_playlist`, `shuffle_set`, `play_media`, `select_source`, `select_sound_mode` | Service data attribute | Optional | Description | | ---------------------- | -------- | ------------------------------------------------ | diff --git a/source/_integrations/miflora.markdown b/source/_integrations/miflora.markdown index 7bb32eeb2ff..2a7a6c39e28 100644 --- a/source/_integrations/miflora.markdown +++ b/source/_integrations/miflora.markdown @@ -80,7 +80,7 @@ monitored_conditions: conductivity: description: Conductivity in the soil. battery: - description: Battery details. + description: Battery details. Cached and only updated once a day. name: description: The name displayed in the frontend. required: false diff --git a/source/_integrations/mill.markdown b/source/_integrations/mill.markdown index bf05c29224e..9c38fd6a74a 100644 --- a/source/_integrations/mill.markdown +++ b/source/_integrations/mill.markdown @@ -36,7 +36,7 @@ password: This platform supports a service to set the temperature for the room connected to heater in the Mill app: -`climate.mill_set_room_temperature` +`mill.set_room_temperature` | Service data attribute | Optional | Description | diff --git a/source/_integrations/mobile_app.markdown b/source/_integrations/mobile_app.markdown index ff2053ee573..b330d52d4f0 100644 --- a/source/_integrations/mobile_app.markdown +++ b/source/_integrations/mobile_app.markdown @@ -22,3 +22,8 @@ This integration is by default enabled, unless you've disabled or removed the [` # Example configuration.yaml entry mobile_app: ``` + +## Apps that use Mobile App + +- [Home Assistant for iOS](https://apps.apple.com/us/app/home-assistant/id1099568401?ls=1) (official) +- [Home Assistant for Android](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android) (official) diff --git a/source/_integrations/monoprice.markdown b/source/_integrations/monoprice.markdown index fd8cb8ed387..6abacd00446 100644 --- a/source/_integrations/monoprice.markdown +++ b/source/_integrations/monoprice.markdown @@ -52,7 +52,7 @@ sources: type: integer {% endconfiguration %} -### Service `snapshot` +### Service `monoprice.snapshot` Take a snapshot of one or more zones' states. This service, and the following one are useful if you want to play a doorbell or notification sound and resume playback afterward. If no `entity_id` is provided, all zones are snapshotted. @@ -66,7 +66,7 @@ The following attributes are stored in a snapshot: | ---------------------- | -------- | ----------- | | `entity_id` | yes | String or list of strings that point at `entity_id`s of zones. -### Service `restore` +### Service `monoprice.restore` Restore a previously taken snapshot of one or more speakers. If no `entity_id` is provided, all zones are restored. diff --git a/source/_integrations/mvglive.markdown b/source/_integrations/mvglive.markdown index 27ce2cf4de0..e989b4ef2ce 100644 --- a/source/_integrations/mvglive.markdown +++ b/source/_integrations/mvglive.markdown @@ -24,7 +24,7 @@ sensor: {% configuration %} station: - description: Name of the stop or station. Visit [the MVG live web site](https://www.mvg-live.de/) to find valid names. + description: Name of the stop or station. Visit [the MVG live web site](https://www.mvg-live.de/ims/dfiStaticAuswahl.svc) to find valid names. Be aware, that not all data of interest might be available (i.e. bus departure-times in Haar). required: true type: string destinations: diff --git a/source/_integrations/neato.markdown b/source/_integrations/neato.markdown index 4443feb0d08..9654f71f0b2 100644 --- a/source/_integrations/neato.markdown +++ b/source/_integrations/neato.markdown @@ -7,6 +7,7 @@ ha_category: - Sensor - Switch - Vacuum +ha_iot_class: Cloud Polling ha_release: 0.33 ha_config_flow: true --- @@ -77,11 +78,11 @@ Currently supported services are: And a specific Platform Service: -- `vacuum.neato_custom_cleaning` +- `neato.custom_cleaning` ### Platform Services -#### Service `vacuum.neato_custom_cleaning` +#### Service `neato.custom_cleaning` Starts a custom cleaning of your house. You can set the various options like in the mobile application (mode, map usage, navigation mode, zone). diff --git a/source/_integrations/nello.markdown b/source/_integrations/nello.markdown index b6f189168fa..5c9f09e8d0f 100644 --- a/source/_integrations/nello.markdown +++ b/source/_integrations/nello.markdown @@ -9,10 +9,6 @@ ha_release: 0.52 ha_iot_class: Cloud Polling --- -
-Locumi Labs, the manufacturer of Nello, went bankrupt on 2 October 2019. Since Nello One locks require this cloud service, the locks will no longer work if the Nello shuts down the servers, which according to the official announcement should not happen for the time being. Nello has promised existing users via email that they will work on an alternative to use the lock without a server. -
- The `nello` platform allows you to control [Nello](https://www.nello.io) intercoms. To get started you need to create a secondary Nello account and authorize it to access your lock(s). diff --git a/source/_integrations/nmbs.markdown b/source/_integrations/nmbs.markdown index 3063e02623c..0b3deed7e59 100644 --- a/source/_integrations/nmbs.markdown +++ b/source/_integrations/nmbs.markdown @@ -58,5 +58,5 @@ show_on_map:

-

Example using the Lovelace Attributes card

+

Example using the Lovelace Attributes custom card

diff --git a/source/_integrations/notify.markdown b/source/_integrations/notify.markdown index 39743e3bfb2..6e02706c414 100644 --- a/source/_integrations/notify.markdown +++ b/source/_integrations/notify.markdown @@ -8,7 +8,7 @@ ha_qa_scale: internal ha_release: 0.7 --- -The `notify` integration makes it possible to send notifications to a wide variety of platforms. Please check the sidebar for a full list of platforms that are supported. +The `notify` integration makes it possible to send notifications to a wide variety of platforms. To use it you have to setup at least one notification target (notifier), check the [integrations list](/integrations/#notifications) for one that fits your use case. If you want to send notifications to the Home Assistant web interface, you may use the [Persistent Notification integration](/integrations/persistent_notification/). @@ -37,7 +37,7 @@ action: ### Test if it works -A simple way to test if you have set up your notify platform correctly, is to open **Developer Tools** from the sidebar and then select the **Services** tab. Choose your service from the **Service** dropdown menu, enter the sample below into the **Service Data** field, and press the **CALL SERVICE** button. +After you setup a [notifier](/integrations/#notifications) a simple way to test if you have set up your notify platform correctly, is to open **Developer Tools** from the sidebar and then select the **Services** tab. Choose your service from the **Service** dropdown menu, enter the sample below into the **Service Data** field, and press the **CALL SERVICE** button. ```json { diff --git a/source/_integrations/nuheat.markdown b/source/_integrations/nuheat.markdown index 7f5de3858fb..14659359816 100644 --- a/source/_integrations/nuheat.markdown +++ b/source/_integrations/nuheat.markdown @@ -159,7 +159,7 @@ Sets the thermostat's preset mode. Without a preset mode set it run the thermost | `entity_id` | yes | String or list of strings that point at `entity_id`'s of climate devices to control. Else targets all. | `hold_mode` | no | New value of hold mode. -### Service `resume_program` +### Service `nuheat.resume_program` Resumes the currently active schedule. diff --git a/source/_integrations/nuki.markdown b/source/_integrations/nuki.markdown index 1f6d8e83e88..30706cfe422 100644 --- a/source/_integrations/nuki.markdown +++ b/source/_integrations/nuki.markdown @@ -48,11 +48,3 @@ See the [Nuki Website](https://nuki.io/en/support/smart-lock/sl-features/locking | ---------------------- | -------- | ----------- | | `entity_id` | yes | String or list of strings that point at `entity_id`s Nuki Locks. | `unlatch` | yes | Boolean - Whether to unlatch the door when first opening it. - -### Service `check_connection` - -This will force the communication between the bridge and the lock, updating the available attribute. - -| Service data attribute | Optional | Description | -| ---------------------- | -------- | ----------- | -| `entity_id` | yes | String or list of strings that point at `entity_id`s Nuki Locks. diff --git a/source/_integrations/nzbget.markdown b/source/_integrations/nzbget.markdown index 65a743d2198..621c9967246 100644 --- a/source/_integrations/nzbget.markdown +++ b/source/_integrations/nzbget.markdown @@ -62,6 +62,7 @@ This component will create these sensors: - `nzbget_speed`: Current download rate in MB/s. - `nzbget_queue_size`: Remaining size to download in MB. - `nzbget_disk_free`: Free disk space at the storage location of NZBGet. +- `nzbget_post_processing_jobs`: Number of Par-Jobs or Post-processing script jobs in the post-processing queue. - `nzbget_post_processing_paused`: Whether post processing is paused. - `nzbget_uptime`: NZBGet server uptime. - `nzbget_size`: Amount of data downloaded since server start in MB. diff --git a/source/_integrations/ombi.markdown b/source/_integrations/ombi.markdown index 8f3742b96a0..41d7e9a31fd 100644 --- a/source/_integrations/ombi.markdown +++ b/source/_integrations/ombi.markdown @@ -12,8 +12,12 @@ The `Ombi` integration monitors data from your [Ombi](https://ombi.io) instance. ## Setup +This component needs to authenticate to your Ombi instance with either a user `password` or an `api_key`. + To find your `api_key` open the Ombi web interface. Navigate to **Settings** and then to **Ombi**, you should then be able to see your `api_key`. +If you want to use `password` authentication simply use the same `password` you normally use to login to Ombi. Alternatively, you can set up a separate local account in Ombi designated for Home Assistant. In order to do this, open the Ombi web interface. Navigate to **User Management** and then press **Add User To Ombi**. Input your desired user details and use the same details when configuring this integration. + ## Configuration If you want to enable this sensor, add the following lines to your `configuration.yaml`: @@ -21,16 +25,12 @@ If you want to enable this sensor, add the following lines to your `configuratio ```yaml # Example configuration.yaml entry ombi: - api_key: OMBI_API_KEY host: OMBI_HOST username: OMBI_USERNAME + password: OMBI_PASSWORD ``` {% configuration %} -api_key: - description: Your Ombi API key. - required: true - type: string host: description: The hostname or IP Address Ombi is running on. required: true @@ -39,6 +39,14 @@ username: description: Your Ombi username. required: true type: string +password: + description: Your Ombi password. [`password`](#password) and [`api_key`](#api_key) cannot be specified concurrently. + required: exclusive + type: string +api_key: + description: Your Ombi API key. [`password`](#password) and [`api_key`](#api_key) cannot be specified concurrently. + required: exclusive + type: string port: description: The port Ombi is running on. required: false @@ -60,9 +68,9 @@ ssl: ```yaml # Example configuration.yaml entry ombi: - api_key: OMBI_API_KEY host: OMBI_HOST username: OMBI_USERNAME + api_key: OMBI_API_KEY port: OMBI_PORT urlbase: ombi/ ssl: true diff --git a/source/_integrations/opengarage.markdown b/source/_integrations/opengarage.markdown index e981339fef4..866df325e02 100644 --- a/source/_integrations/opengarage.markdown +++ b/source/_integrations/opengarage.markdown @@ -23,7 +23,10 @@ cover: device_key: opendoor name: Left Garage Door garage2: - host: 192.168.1.13 + protocol: https + verify_ssl: false + host: garage.example.com + port: 443 device_key: opendoor name: Right Garage Door ``` @@ -39,6 +42,16 @@ covers: required: true type: map keys: + ssl: + description: Use HTTPS instead of HTTP to connect. + required: false + type: boolean + default: false + verify_ssl: + description: Enable or disable SSL certificate verification. Set to false if you have a self-signed SSL certificate and haven't installed the CA certificate to enable verification. + required: false + default: true + type: boolean host: description: IP address of device. required: true @@ -123,4 +136,5 @@ customize: sensor.garage_car_present: icon: mdi:car ``` + {% endraw %} diff --git a/source/_integrations/opensky.markdown b/source/_integrations/opensky.markdown index 1c08acf1d3f..5a09697aa2c 100644 --- a/source/_integrations/opensky.markdown +++ b/source/_integrations/opensky.markdown @@ -39,7 +39,7 @@ Both events have three attributes: - **callsign**: Callsign of the flight. - **altitude**: Altitude of the flight in meters. -To receive notifications of the entering flights, add the following lines to your `configuration.yaml` file: +To receive notifications of the entering flights using the [Home Assistant Companion App](https://companion.home-assistant.io/), add the following lines to your `configuration.yaml` file: {% raw %} ```yaml @@ -49,7 +49,7 @@ automation: platform: event event_type: opensky_entry action: - service: notify.ios_YOURIPHONENAME + service: notify.mobile_app_ data_template: message : 'Flight entry of {{ trigger.event.data.callsign }} ' ``` diff --git a/source/_integrations/opentherm_gw.markdown b/source/_integrations/opentherm_gw.markdown index bb38a6313a8..4e951f8edd2 100644 --- a/source/_integrations/opentherm_gw.markdown +++ b/source/_integrations/opentherm_gw.markdown @@ -19,7 +19,7 @@ The following device types are currently supported within Home Assistant: - Climate - Sensor -This integration will add a single `climate` entity and multiple `sensor` and `binary_sensor` entities to Home Assistant for each configured gateway. +This integration will add a single `climate` entity to Home Assistant for each configured gateway. Each gateway also has a collection of `sensor` and `binary_sensor` entities, which are disabled by default. These can be enabled from the `Devices` panel in the `Configuration` page of the web interface.
The OpenTherm protocol is based on polling. The thermostat sends requests to the boiler at specific intervals. As a result, it may take some time for changes to propagate between Home Assistant and the thermostat. @@ -183,7 +183,7 @@ The value you provide here will be used with the GPIO `home` (5) and `away` (6) ## Sensors -The following `sensor` entities will be created for each configured gateway. The `entity_id` of every sensor will have a suffix containing the `gateway_id` of the gateway to which it belongs. +The following `sensor` entities will be created for each configured gateway. The `entity_id` of every sensor will have a suffix containing the `gateway_id` of the gateway to which it belongs. All `sensor` entities are disabled by default.

Not all boilers and thermostats properly support all OpenTherm features, so not all of the sensors will have useful values.

@@ -383,7 +383,7 @@ Not all boilers and thermostats properly support all OpenTherm features, so not ## Binary Sensors -The following `binary_sensor` entities will be created for each configured gateway. The `entity_id` of every sensor will have a suffix containing the `gateway_id` of the gateway to which it belongs. +The following `binary_sensor` entities will be created for each configured gateway. The `entity_id` of every sensor will have a suffix containing the `gateway_id` of the gateway to which it belongs. All `binary_sensor` entities are disabled by default.

Not all boilers and thermostats properly support all OpenTherm features, so not all of the sensors will have useful values.

diff --git a/source/_integrations/orangepi_gpio.markdown b/source/_integrations/orangepi_gpio.markdown index 34ee616cb35..ba6c07548b9 100644 --- a/source/_integrations/orangepi_gpio.markdown +++ b/source/_integrations/orangepi_gpio.markdown @@ -6,6 +6,7 @@ ha_category: - Binary Sensor ha_release: 0.93 ha_iot_class: Local Push +logo: orange-pi.png --- The `orangepi_gpio` integration is the base for all related GPIO platforms in Home Assistant. There is no setup needed for the integration itself, for the platforms please check their corresponding pages. diff --git a/source/_integrations/panasonic_viera.markdown b/source/_integrations/panasonic_viera.markdown index dd241aadcc8..a02cc8cebe8 100644 --- a/source/_integrations/panasonic_viera.markdown +++ b/source/_integrations/panasonic_viera.markdown @@ -33,7 +33,7 @@ If your model is not on the list then give it a test, if everything works correc Some Panasonic Viera TVs allow Home Assistant to turn them on, if you specify the MAC address with `mac:`. -Note that your TV has to reside in the same network as your home assistant instance for this platform to work. +Note that your TV has to reside in the same network as your Home Assistant instance for this platform to work. If you have multiple network interfaces on your Home Assistant instance, you may need to specify the `broadcast_address`. To add a TV to your installation, add the following to your `configuration.yaml` file: @@ -58,6 +58,11 @@ mac: description: The MAC address of your Panasonic Viera TV, e.g., `AA:BB:CC:DD:99:1A`. required: false type: string +broadcast_address: + description: The broadcast address on which to send the Wake-On-Lan packet. + required: false + default: 255.255.255.255 + type: string app_power: description: Set to `true` if your Panasonic Viera TV supports "Turn on via App". required: false diff --git a/source/_integrations/picotts.markdown b/source/_integrations/picotts.markdown index e02ee9964ae..6f072958659 100644 --- a/source/_integrations/picotts.markdown +++ b/source/_integrations/picotts.markdown @@ -11,6 +11,14 @@ The `picotts` text-to-speech platform uses offline pico Text-to-Speech engine to This requires to install the pico tts library on the system, typically on debian just do `sudo apt-get install libttspico-utils` On some Raspbian release, this package is missing but you can just copy the arm deb package from debian. +On Debian Buster, the package is missing, use the following commands to install it: + +``` +wget http://ftp.us.debian.org/debian/pool/non-free/s/svox/libttspico0_1.0+git20130326-9_armhf.deb +wget http://ftp.us.debian.org/debian/pool/non-free/s/svox/libttspico-utils_1.0+git20130326-9_armhf.deb +sudo apt-get install -f ./libttspico0_1.0+git20130326-9_armhf.deb ./libttspico-utils_1.0+git20130326-9_armhf.deb +``` + ## Configuration To enable text-to-speech with Pico, add the following lines to your `configuration.yaml`: diff --git a/source/_integrations/proxmoxve.markdown b/source/_integrations/proxmoxve.markdown new file mode 100644 index 00000000000..f8f01727126 --- /dev/null +++ b/source/_integrations/proxmoxve.markdown @@ -0,0 +1,100 @@ +--- +title: "Proxmox VE" +description: "Access your ProxmoxVE instance in Home Assistant." +logo: proxmoxve.png +ha_category: + - Binary Sensor +ha_release: 0.103 +ha_iot_class: Local Polling +--- + +[Proxmox VE](https://www.proxmox.com/en/) is an open-source server virtualization environment. This integration allows you to poll various data from your instance. + +After configuring this component, the binary sensors automatically appear. + +## Configuration + +
+You should have at least one VM or container entry configured, else this integration won't do anything. +
+ +To use the `proxmoxve` component, add the following config to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +proxmox: + - host: IP_ADDRESS + username: USERNAME + password: PASSWORD + nodes: + - node: NODE_NAME + vms: + - VM_ID + containers: + - CONTAINER_ID +``` + +{% configuration %} +host: + description: IP address of the Proxmox VE instance. + required: true + type: string +port: + description: The port number on which Proxmox VE is running. + required: false + default: 8006 + type: integer +verify_ssl: + description: Whether to do strict validation on SSL certificates. + required: false + default: true + type: boolean +username: + description: The username used to authenticate. + required: true + type: string +password: + description: The password used to authenticate. + required: true + type: string +realm: + description: The authentication realm of the user. + required: false + default: pam + type: string +nodes: + description: List of the Proxmox VE nodes to monitor. + required: true + type: map + keys: + node: + description: Name of the node + required: true + type: string + vms: + description: List of the QEMU VMs to monitor. + required: false + type: list + containers: + description: List of the LXC containers to monitor. + required: false + type: list +{% endconfiguration %} + +Example with multiple VMs and no containers: + +```yaml +proxmox: + - host: IP_ADDRESS + username: USERNAME + password: PASSWORD + nodes: + - node: NODE_NAME + vms: + - VM_ID_1 + - VM_ID_2 +``` + +## Binary Sensor + +The integration will automatically create a binary sensor for each tracked VM or container, the binary sensor will either be on if the VM's state is running or off if the VM's state is different. diff --git a/source/_integrations/pulseaudio_loopback.markdown b/source/_integrations/pulseaudio_loopback.markdown index d9c60825bde..63278529450 100644 --- a/source/_integrations/pulseaudio_loopback.markdown +++ b/source/_integrations/pulseaudio_loopback.markdown @@ -46,7 +46,7 @@ host: port: description: The port that Pulseaudio is listening on. required: false - default: 4712 + default: 4713 type: integer buffer_size: description: How much data to load from Pulseaudio at once. diff --git a/source/_integrations/remote.xiaomi_miio.markdown b/source/_integrations/remote.xiaomi_miio.markdown index eb40c0a70b6..d06af7d9043 100644 --- a/source/_integrations/remote.xiaomi_miio.markdown +++ b/source/_integrations/remote.xiaomi_miio.markdown @@ -111,7 +111,7 @@ The Xiaomi IR Remote Platform currently supports two different formats for IR co ### Raw -A raw command is a command learned from [`remote.xiaomi_miio_learn_command`](/integrations/remote.xiaomi_miio/#remotexiaomi_miio_learn_command). +A raw command is a command learned from [`xiaomi_miio.remote_learn_command`](/integrations/remote.xiaomi_miio/#xiaomi_miioremote_learn_command). A raw command is defined as in the following example: @@ -158,7 +158,7 @@ The Xiaomi IR Remote Platform registers two services. Allows sending either named commands using an identifier or sending commands as one of the two types defined in [Command Types](/integrations/remote.xiaomi_miio/#command-types). -### `remote.xiaomi_miio_learn_command` +### `xiaomi_miio.remote_learn_command` Used to learn new commands. diff --git a/source/_integrations/rest.markdown b/source/_integrations/rest.markdown index 1c91c94b0b3..8f644dad45c 100644 --- a/source/_integrations/rest.markdown +++ b/source/_integrations/rest.markdown @@ -132,6 +132,8 @@ $ curl -X GET http://192.168.1.31/temperature/ {"temperature": 77, "id": "sensor02", "name": "livingroom", "connected": true} ``` +The response is expected to be a dictionary or a list with a dictionary as its 0th element. + ## Examples In this section you find some real-life examples of how to use this sensor. diff --git a/source/_integrations/rest_command.markdown b/source/_integrations/rest_command.markdown index 5893f5c41fb..ebf3058e64f 100644 --- a/source/_integrations/rest_command.markdown +++ b/source/_integrations/rest_command.markdown @@ -31,7 +31,7 @@ service_name: url: description: The URL (supports template) for sending request. required: true - type: [string, template] + type: template method: description: HTTP method to use (get, patch, post, put, or delete). required: false @@ -44,7 +44,7 @@ service_name: payload: description: A string/template to send with request. required: false - type: [string, template] + type: template username: description: The username for HTTP authentication. required: false @@ -83,6 +83,7 @@ rest_command: headers: authorization: !secret rest_headers_secret accept: 'application/json, text/html' + user-agent: 'Mozilla/5.0 {{ useragent }}' payload: '{"profile":{"status_text": "{{ status }}","status_emoji": "{{ emoji }}"}}' content_type: 'application/json; charset=utf-8' verify_ssl: true diff --git a/source/_integrations/rfxtrx.markdown b/source/_integrations/rfxtrx.markdown index 5c6c841a032..a42d39e681b 100644 --- a/source/_integrations/rfxtrx.markdown +++ b/source/_integrations/rfxtrx.markdown @@ -7,33 +7,58 @@ ha_category: ha_release: pre 0.7 --- -The `rfxtrx` integration supports RFXtrx devices by [RFXCOM](http://www.rfxcom.com) which communicate in the frequency range of 433.92 MHz. +The `rfxtrx` integration supports RFXtrx devices by [RFXCOM](http://www.rfxcom.com), which communicate in the frequency range of 433.92 MHz. To enable RFXtrx in your installation, add the following to your `configuration.yaml` file: ```yaml -# Example configuration.yaml entry +# Example configuration.yaml entry for local serial device rfxtrx: - device: PATH_TO_DEVICE + device: /dev/ttyUSB0 +``` + +OR + +```yaml +# Example configuration.yaml entry for TCP connected device using ser2net +rfxtrx: + host: 192.168.0.2 + port: 50000 ``` {% configuration %} device: - description: "The path to your device, e.g., `/dev/serial/by-id/usb-RFXCOM_RFXtrx433_A1Y0NJGR-if00-port0` or `/dev/ttyUSB0`." - required: true + description: "The path to your device, e.g., `/dev/serial/by-id/usb-RFXCOM_RFXtrx433_A1Y0NJGR-if00-port0` or `/dev/ttyUSB0`. Required if you are using a locally connected USB device." + required: false type: string +host: + description: "The hostname the remote RFXtrx is available on if connecting via TCP. If this is set, a port is required." + required: false + type: string +port: + description: "The TCP port the remote RFXtrx is available on. If this is set, a host is required." + required: false + type: integer debug: - description: If you want to receive debug output. + description: "If you want to receive debug output." required: false default: false type: boolean dummy: - description: Then you have need a connected drive to test your settings. Can be useful for debugging and testing. + description: "Then you need a connected drive to test your settings. Can be useful for debugging and testing." required: false default: false type: boolean {% endconfiguration %} -Supported protocols +## Supported protocols -Not all protocols as advertised are enabled on initial setup of your transceiver. Enabling all protocols is not recommended either. Your 433.92 product not showing in the logs? Visit the RFXtrx website to [download RFXmgmr](http://www.rfxcom.com/epages/78165469.sf/nl_NL/?ObjectPath=/Shops/78165469/Categories/Downloads) and enable the required protocol. +Not all protocols as advertised are enabled on the initial setup of your transceiver. Enabling all protocols is not recommended either. Your 433.92 product not showing in the logs? Visit the RFXtrx website to [download RFXmgmr](http://www.rfxcom.com/epages/78165469.sf/nl_NL/?ObjectPath=/Shops/78165469/Categories/Downloads) and enable the required protocol. + +### ser2net + +You can host your device on another computer by setting up ser2net and example configuration for ser2net looks like this and then using host/port in your home assistant config. + +```text +50000:raw:0:/dev/ttyUSB0:38400 8DATABITS NONE 1STOPBIT +``` diff --git a/source/_integrations/roomba.markdown b/source/_integrations/roomba.markdown index c205470f74e..91fcc80c065 100644 --- a/source/_integrations/roomba.markdown +++ b/source/_integrations/roomba.markdown @@ -58,6 +58,11 @@ continuous: required: false type: boolean default: true +delay: + description: Custom connection delay (in seconds) for periodic mode + required: false + type: integer + default: 1 {% endconfiguration %}
diff --git a/source/_integrations/samsungtv.markdown b/source/_integrations/samsungtv.markdown index 1baf862dbe5..9ffd7b3e2ea 100644 --- a/source/_integrations/samsungtv.markdown +++ b/source/_integrations/samsungtv.markdown @@ -48,6 +48,11 @@ mac: description: "The MAC address of the Samsung Smart TV, e.g., `00:11:22:33:44:55:66`. Required for power on support via wake on lan." required: false type: string +broadcast_address: + description: The broadcast address on which to send the Wake-On-Lan packet. + required: false + default: 255.255.255.255 + type: string {% endconfiguration %} Currently known supported models: @@ -113,6 +118,7 @@ Currently tested but not working models: - JU7500 - Unable to see state and unable to control - MU6125 - Unable to see state and unable to control (Tested on UE58MU6125 on port 8001 and 8801) - MU6300 - Port set to 8001, turning on works, status not working reliably, turning off is not permanent (it comes back on) +- MU6400 - Unable to see state and unable to control (using latest 1270 firmware. Had limited functionality on previous firmware) - Q60 – turning on works, turning off does not work, State is always "off". - Q6F – Port set to 8001, turning on works, turning off does not work, status not working reliably. - Q7F - State is always "off" and unable to control via port 8001. diff --git a/source/_integrations/satel_integra.markdown b/source/_integrations/satel_integra.markdown index b1d3a874868..eff0a7a26c6 100644 --- a/source/_integrations/satel_integra.markdown +++ b/source/_integrations/satel_integra.markdown @@ -52,6 +52,10 @@ port: required: false default: 7094 type: integer +code: + description: The INTEGRA ID (found in DLOADX under "Communication configuration" or in polish "Komunikacja Konfiguracji" section), it's needed for making use of the switchable_outputs. + required: false + type: string partitions: description: List of the partitions to operate on. required: false diff --git a/source/_integrations/scene.markdown b/source/_integrations/scene.markdown index 8463c734690..0848e1cc02f 100644 --- a/source/_integrations/scene.markdown +++ b/source/_integrations/scene.markdown @@ -96,12 +96,12 @@ Whenever you make a change to your scene configuration, you can call the `scene. Create a new scene without having to configure it by calling the `scene.create` service. This scene will be discarded after reloading the configuration. -You need to pass a `scene_id` in lowercase and with underscores instead of spaces. You also need to specify the entities in the same format as when configuring the scene. +You need to pass a `scene_id` in lowercase and with underscores instead of spaces. You also may want to specify the entities in the same format as when configuring the scene. You can also take a snapshot of the current state by using the `snapshot_entities` parameter. In this case, you have to specify the `entity_id` of all entities you want to take a snapshot of. `entities` and `snapshot_entities` can be combined but you have to use at least one of them. If the scene was previously created by `scene.create`, it will be overwritten. If the scene was created by YAML, nothing happens but a warning in your log files. ```yaml -# Example automation +# Example automation using entities automation: trigger: platform: homeassistant @@ -119,3 +119,41 @@ automation: state: on source: HDMI 1 ``` + +The following example turns off some entities as soon as a window opens. The states of the entities are restored after the window is closed again. + +```yaml +# Example automation using snapshot +- alias: Window opened + trigger: + - platform: state + entity_id: binary_sensor.window + from: 'off' + to: 'on' + condition: [] + action: + - service: scene.create + data: + scene_id: before + snapshot_entities: + - climate.ecobee + - light.ceiling_lights + - service: light.turn_off + data: + entity_id: light.ceiling_lights + - service: climate.set_hvac_mode + data: + entity_id: climate.ecobee + hvac_mode: 'off' +- alias: Window closed + trigger: + - platform: state + entity_id: binary_sensor.window + from: 'on' + to: 'off' + condition: [] + action: + - service: scene.turn_on + data: + entity_id: scene.before +``` diff --git a/source/_integrations/scrape.markdown b/source/_integrations/scrape.markdown index 892ba3712ca..5a033fe68d7 100644 --- a/source/_integrations/scrape.markdown +++ b/source/_integrations/scrape.markdown @@ -43,6 +43,10 @@ name: required: false default: Web scrape type: string +value_template: + description: Defines a template to get the state of the sensor. + required: false + type: template unit_of_measurement: description: Defines the units of measurement of the sensor, if any. required: false diff --git a/source/_integrations/season.markdown b/source/_integrations/season.markdown index 428f89b560e..e98a1f4d15a 100644 --- a/source/_integrations/season.markdown +++ b/source/_integrations/season.markdown @@ -37,4 +37,9 @@ type: required: false type: string default: astronomical +name: + description: "An identifier for the sensor in the frontend." + required: false + type: string + default: Season {% endconfiguration %} diff --git a/source/_integrations/simplisafe.markdown b/source/_integrations/simplisafe.markdown index 6f798b8bfda..f3fd0b49cd1 100644 --- a/source/_integrations/simplisafe.markdown +++ b/source/_integrations/simplisafe.markdown @@ -5,13 +5,15 @@ logo: simplisafe.png ha_release: 0.81 ha_category: - Alarm + - Lock --- The `simplisafe` integration integrates SimpliSafe home security (V2 and V3) systems into Home Assistant. Multiple SimpliSafe accounts can be accommodated. There is currently support for the following device types within Home Assistant: -- Alarm +- **Alarm Control Panel**: reports on the current alarm status and can be used to arm and disarm the system. +- **Lock**: Reports on `Door Locks` and can be used to lock and unlock a lock. ## Configuration @@ -52,15 +54,54 @@ Remove a SimpliSafe PIN (by label or PIN value). | Service Data Attribute | Optional | Description | |---------------------------|----------|---------------------------------------------| -| `system_id` | no | The ID of the system to remove the PIN from | +| `system_id` | no | The ID of a SimpliSafe system | | `label_or_pin` | no | The PIN label or value to remove | +### `simplisafe.set_alarm_duration` + +Set the duration (in seconds) of an active alarm. + +| Service Data Attribute | Optional | Description | +|---------------------------|----------|---------------------------------------------| +| `system_id` | no | The ID of a SimpliSafe system | +| `duaration` | no | The number of seconds to sound the alarm | + +### `simplisafe.set_delay` + +Set a duration for how long the base station should delay when transitioning between states. + +| Service Data Attribute | Optional | Description | +|---------------------------|----------|---------------------------------------------| +| `system_id` | no | The ID of a SimpliSafe system | +| `arrival_state` | no | The target "arrival" state (away, home) | +| `transition` | no | The system state transition to affect (entry, exit) | +| `seconds` | no | The number of seconds to delay | + +### `simplisafe.set_light` + +Turn the base station light on/off. + +| Service Data Attribute | Optional | Description | +|---------------------------|----------|---------------------------------------------| +| `system_id` | no | The ID of a SimpliSafe system | +| `light_state` | no | True for on, False for off | + ### `simplisafe.set_pin` Set a SimpliSafe PIN. | Service Data Attribute | Optional | Description | |---------------------------|----------|---------------------------------------------| -| `system_id` | no | The ID of the system to remove the PIN from | +| `system_id` | no | The ID of the system to remove the PIN from | | `label` | no | The label to show in the SimpliSafe UI | | `pin` | no | The PIN value to use | + +### `simplisafe.set_volume_property` + +Set a level for one of the base station's various volumes. + +| Service Data Attribute | Optional | Description | +|---------------------------|----------|---------------------------------------------| +| `system_id` | no | The ID of a SimpliSafe system | +| `volume_property` | no | The volume property to set (alarm, chime, voice_prompt) | +| `volume` | no | A volume (off, low, medium, high) | diff --git a/source/_integrations/smartthings.markdown b/source/_integrations/smartthings.markdown index 0b9772331d7..1986c58684e 100644 --- a/source/_integrations/smartthings.markdown +++ b/source/_integrations/smartthings.markdown @@ -46,7 +46,7 @@ If you are using Home Assistant Cloud (Nabu Casa) the integration will create a 1. A [personal access token](https://account.smartthings.com/tokens) tied to a Samsung or SmartThings account (see below for instructions). 2. Home Assistant setup for [remote access](/docs/configuration/remote/) via a domain name secured with SSL. *Self-signed SSL certificates are not supported by the SmartThings Cloud API.* -3. [`base_url` of the http component](/integrations/http#base_url) set the URL that Home Assistant is available on the internet. +3. [`base_url` of the http integration](/integrations/http#base_url) set the URL that Home Assistant is available on the internet. SmartThings requires the `base_url` and Home Assistant to use the standard HTTPS port (443). ## Setup instructions diff --git a/source/_integrations/snips.markdown b/source/_integrations/snips.markdown index 1937ef70490..86f8cce136c 100644 --- a/source/_integrations/snips.markdown +++ b/source/_integrations/snips.markdown @@ -27,7 +27,7 @@ The Snips platform can be installed via the Snips APT/Debian repository. sudo apt-get update sudo apt-get install -y dirmngr sudo bash -c 'echo "deb https://raspbian.snips.ai/$(lsb_release -cs) stable main" > /etc/apt/sources.list.d/snips.list' -sudo apt-key adv --keyserver pgp.mit.edu --recv-keys D4F50CDCA10A2849 +sudo apt-key adv --fetch-keys https://raspbian.snips.ai/531DD1A7B702B14D.pub sudo apt-get update sudo apt-get install -y snips-platform-voice ``` diff --git a/source/_integrations/songpal.markdown b/source/_integrations/songpal.markdown index ac3977f1a71..6877ebf0d83 100644 --- a/source/_integrations/songpal.markdown +++ b/source/_integrations/songpal.markdown @@ -49,7 +49,7 @@ See [python-songpal's documentation](https://github.com/rytilahti/python-songpal In addition to the general [media player services](/integrations/media_player/#services), the following services are provided: -### Service `media_player/songpal_set_sound_setting` +### Service `songpal/set_sound_setting` For a list of available settings and their values use [`songpal sound`](https://github.com/rytilahti/python-songpal#sound-settings) command. diff --git a/source/_integrations/soundtouch.markdown b/source/_integrations/soundtouch.markdown index 7b15e66d1dc..8bc82bfaaa6 100644 --- a/source/_integrations/soundtouch.markdown +++ b/source/_integrations/soundtouch.markdown @@ -83,7 +83,7 @@ You can use TTS services like [Google Text-to-Speech](/integrations/google_trans A workaround if you want to publish your Home Assistant installation on Internet in SSL is to configure an HTTPS Web Server as a reverse proxy ([nginx](/docs/ecosystem/nginx/) for example) and let your Home Assistant configuration in HTTP on your local network. The Soundtouch devices will be available to access the TTS files in HTTP in local and your configuration will be in HTTPS on the Internet. -### Service `soundtouch_play_everywhere` +### Service `play_everywhere` Create a multi-room (zone) from a master and play same content on all other devices (slaves) @@ -92,7 +92,7 @@ Create a multi-room (zone) from a master and play same content on all other | ---------------------- | -------- | ----------- | | `master` | no | `entity_id` of the master device -### Service `soundtouch_create_zone` +### Service `create_zone` Create a multi-room (zone) from a master and play on selected slaves @@ -101,7 +101,7 @@ Create a multi-room (zone) from a master and play on selected slaves | `master` | no | `entity_id` of the master device| | `slaves` | no | List of slaves `entity_id` | -### Service `soundtouch_add_zone_slave` +### Service `add_zone_slave` Add slave(s) to an existing zone @@ -110,7 +110,7 @@ Add slave(s) to an existing zone | `master` | no | `entity_id` of the master device | | `slaves` | no | List of slaves `entity_id` to add| -### Service `soundtouch_remove_zone_slave` +### Service `remove_zone_slave` Remove slave(s) from an existing zone. diff --git a/source/_integrations/spotify.markdown b/source/_integrations/spotify.markdown index 919555b5d1f..a96557cf511 100644 --- a/source/_integrations/spotify.markdown +++ b/source/_integrations/spotify.markdown @@ -81,7 +81,7 @@ name: ## Setup After the prerequisites and configuration are complete, restart Home Assistant. -A **Spotify** configurator element will be available. Follow the instructions to +Under notifications a **Spotify** configurator element will be available. Click on "Link Spotify account" and follow the instructions to authorize Home Assistant to access your Spotify account. A Spotify media player will then appear. If you are prompted to download a file after completing authorization, discard the download. It is not needed. diff --git a/source/_integrations/squeezebox.markdown b/source/_integrations/squeezebox.markdown index c9e81bf4074..2de50583424 100644 --- a/source/_integrations/squeezebox.markdown +++ b/source/_integrations/squeezebox.markdown @@ -59,7 +59,7 @@ transporter_toslink: media_content_type: "music" ``` -### Service `squeezebox_call_method` +### Service `call_method` Call a custom Squeezebox JSONRPC API. diff --git a/source/_integrations/ssdp.markdown b/source/_integrations/ssdp.markdown index 7627c272b64..98fdac9f5ce 100644 --- a/source/_integrations/ssdp.markdown +++ b/source/_integrations/ssdp.markdown @@ -4,6 +4,7 @@ description: "Discover integrations on the network using the SSDP protocol." ha_category: - Network ha_release: 0.94 +logo: home-assistant.png --- The `ssdp` "Simple Service Discovery Protocol" integration will scan the network for supported devices and services. Discovered integrations will show up in the discovered section on the integrations page in the config panel. diff --git a/source/_integrations/starline.markdown b/source/_integrations/starline.markdown new file mode 100644 index 00000000000..2ff6da66b01 --- /dev/null +++ b/source/_integrations/starline.markdown @@ -0,0 +1,62 @@ +--- +title: "StarLine" +description: "Instructions on how to setup your StarLine account with Home Assistant." +logo: starline.png +ha_category: + - Car + - Binary Sensor + - Presence Detection + - Lock + - Sensor + - Switch +ha_release: 0.103 +ha_iot_class: Cloud Polling +ha_config_flow: true +--- + +The `starline` integration lets you retrieve data of your StarLine security system from the StarLine portal. You will need a working StarLine account. + +This integration provides the following platforms: + +- Binary Sensors: Hand brake, hood, trunk, alarm status and doors lock state. +- Device tracker: The location of your car. +- Lock: Control the lock of your car. +- Sensors: Battery level, SIM card balance, GSM signal level, interior temperature and engine temperature. +- Switches: Start/stop engine, heater (webasto), additional channel and sound the horn. +- Services: Update the state, set update frequency. More details can be found [here](#services). + +## Configuration + +1. Create a new application in the [StarLine developer profile](https://my.starline.ru/developer). +2. Open the integrations page and add the StarLine integration. +3. Fill in your application ID, secret, login and password. + +After adding the integration, you can configure the API update interval on the integration page. + +
+ +You can make up to 1000 API calls per day, which means you could make one approximately every 86 seconds. +By default, the state of integration will be updated every 3 minutes, making 480 calls per day. +It is not recommended to set an update interval of less than 90 seconds. + +
+ +## Services + +### Update the state + +The service `starline.update_state` fetches the last state of the device from the StarLine server. + +This service does not require any attributes. + +### Set scan interval + +The service `starline.set_scan_interval` sets update frequency for entities. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ----------- | +| `scan_interval` | no | Update frequency in seconds. + +## Disclaimer + +This software is not affiliated with or endorsed by StarLine Company. diff --git a/source/_integrations/switch.mysensors.markdown b/source/_integrations/switch.mysensors.markdown index 03acee61f65..1d35df94d29 100644 --- a/source/_integrations/switch.mysensors.markdown +++ b/source/_integrations/switch.mysensors.markdown @@ -54,7 +54,7 @@ The MySensors switch platform exposes a service to change an IR code attribute f | Service | Description | | ------- | ----------- | -| mysensors_send_ir_code | Set an IR code as a state attribute for a MySensors IR device switch and turn the switch on.| +| mysensors.send_ir_code | Set an IR code as a state attribute for a MySensors IR device switch and turn the switch on.| The service can be used as part of an automation script. For example: @@ -66,7 +66,7 @@ automation: platform: time at: '5:30:00' action: - service: switch.mysensors_send_ir_code + service: mysensors.send_ir_code entity_id: switch.hvac_1_1 data: V_IR_SEND: '0xC284' # the IR code to send @@ -76,7 +76,7 @@ automation: platform: time at: '0:30:00' action: - service: switch.mysensors_send_ir_code + service: mysensors.send_ir_code entity_id: switch.hvac_1_1 data: V_IR_SEND: '0xC288' # the IR code to send diff --git a/source/_integrations/switch.template.markdown b/source/_integrations/switch.template.markdown index 050b3f2b16a..228f161564b 100644 --- a/source/_integrations/switch.template.markdown +++ b/source/_integrations/switch.template.markdown @@ -104,11 +104,11 @@ switch: turn_on: service: switch.turn_on data: - entity_id: switch.source + entity_id: switch.target turn_off: service: switch.turn_off data: - entity_id: switch.source + entity_id: switch.target ``` {% endraw %} @@ -151,7 +151,7 @@ switch: switches: skylight: friendly_name: "Skylight" - value_template: "{{ is_state('sensor.skylight.state', 'on') }}" + value_template: "{{ is_state('sensor.skylight', 'on') }}" turn_on: service: switch.turn_on data: diff --git a/source/_integrations/switch.xiaomi_miio.markdown b/source/_integrations/switch.xiaomi_miio.markdown index 17049dc3faf..a6dd3f74fcc 100644 --- a/source/_integrations/switch.xiaomi_miio.markdown +++ b/source/_integrations/switch.xiaomi_miio.markdown @@ -88,7 +88,7 @@ model: ## Platform Services -### Service `switch.xiaomi_miio_set_wifi_led_on` (Power Strip only) +### Service `xiaomi_miio.switch_set_wifi_led_on` (Power Strip only) Turn the wifi led on. @@ -96,7 +96,7 @@ Turn the wifi led on. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO switch entity. | -### Service `switch.xiaomi_miio_set_wifi_led_off` (Power Strip only) +### Service `xiaomi_miio.switch_set_wifi_led_off` (Power Strip only) Turn the wifi led off. @@ -104,7 +104,7 @@ Turn the wifi led off. |---------------------------|----------|---------------------------------------------------------| | `entity_id` | no | Only act on a specific Xiaomi miIO switch entity. | -### Service `switch.xiaomi_miio_set_power_price` (Power Strip) +### Service `xiaomi_miio.switch_set_power_price` (Power Strip) Set the power price. @@ -113,7 +113,7 @@ Set the power price. | `entity_id` | no | Only act on a specific Xiaomi miIO switch entity. | | `price` | no | Power price, between 0 and 999. | -### Service `switch.xiaomi_miio_set_power_mode` (Power Strip V1 only) +### Service `xiaomi_miio.switch_set_power_mode` (Power Strip V1 only) Set the power mode. diff --git a/source/_integrations/switcher_kis.markdown b/source/_integrations/switcher_kis.markdown index 8c6b44df1fa..54834bb13da 100644 --- a/source/_integrations/switcher_kis.markdown +++ b/source/_integrations/switcher_kis.markdown @@ -27,6 +27,7 @@ To retrieve your device's details, please follow the instructions [here](https:/ Please note, on the original script repository, users recently reported difficulties controlling the device after upgrading the firmware to the new 3.0 version.As this integration is based on that script, please do not upgrade to version 3.0 until this issue is resolved. You can follow the issue [here](https://github.com/NightRang3r/Switcher-V2-Python/issues/3).
+ ```yaml switcher_kis: phone_id: 'REPLACE_WITH_PHONE_ID' diff --git a/source/_integrations/template.markdown b/source/_integrations/template.markdown index 979c97edf0d..8918d530d75 100644 --- a/source/_integrations/template.markdown +++ b/source/_integrations/template.markdown @@ -311,7 +311,7 @@ sensor: The `template` sensors are not limited to use attributes from other entities but can also work with [Home Assistant's template extensions](/docs/configuration/templating/#home-assistant-template-extensions). -This template contains no entities that will trigger an update, so we add an `entity_id:` line with an entity that will force an update - here we're using a [date sensor](/integrations/time_date) to get a daily update: +This template contains no entities that will trigger an update (as `now()` is a function), so we add an `entity_id:` line with an entity that will force an update - here we're using a [date sensor](/integrations/time_date) to get a daily update: {% raw %} @@ -328,8 +328,25 @@ sensor: {% endraw %} -Useful entities to choose might be `sensor.date` which update once per day or `sensor.time` which updates once per minute. +In this case it is also possible to convert the entity-less template above into one that will be updated automatically: +{% raw %} + +````yaml +sensor: + - platform: template + sensors: + nonsmoker: + value_template: "{{ (( as_timestamp(strptime(states('sensor.date'), '%Y-%m-%d')) - as_timestamp(strptime('06.07.2018', '%d.%m.%Y')) ) / 86400 ) | round(2) }}" + friendly_name: 'Not smoking' + unit_of_measurement: "Days" +```` + +{% endraw %} + +Useful entities to choose might be `sensor.date` which update once per day or `sensor.time`, which updates once per minute. +Please note that the resulting template will be evaluated by Home Assistant state engine on every state change of these sensors, which in case of `sensor.time` happens every minute and might have a negative impact on performance. + An alternative to this is to create an interval-based automation that calls the service `homeassistant.update_entity` for the entities requiring updates. This modified example updates every 5 minutes: {% raw %} diff --git a/source/_integrations/tesla.markdown b/source/_integrations/tesla.markdown index f80a34a1fda..7c97985d10d 100644 --- a/source/_integrations/tesla.markdown +++ b/source/_integrations/tesla.markdown @@ -23,7 +23,7 @@ This integration provides the following platforms: - Device tracker - to track location of your car - Lock - Door lock. Enables you to control Tesla's door lock - Climate - HVAC control. Allow you to control (turn on/off, set target temperature) your Tesla's HVAC system. -- Switch - Charger and max range switch. Allow you to start/stop charging and set max range charging. +- Switch - Charger and max range switch to allow you to start/stop charging and set max range charging. Update switch to allow you to disable polling of vehicles to conserve battery ## Configuration diff --git a/source/_integrations/tibber.markdown b/source/_integrations/tibber.markdown index d1de6b5caf2..fe74790e370 100644 --- a/source/_integrations/tibber.markdown +++ b/source/_integrations/tibber.markdown @@ -21,7 +21,7 @@ There is currently support for the following device types within Home Assistant: ## Setup -Go to [developer.tibber.com/](https://developer.tibber.com/) to get your API token. +Go to [developer.tibber.com/settings/accesstoken](https://developer.tibber.com/settings/accesstoken) to get your API token. ## Configuration diff --git a/source/_integrations/time_date.markdown b/source/_integrations/time_date.markdown index 31563206955..4261bf2807f 100644 --- a/source/_integrations/time_date.markdown +++ b/source/_integrations/time_date.markdown @@ -9,9 +9,8 @@ ha_release: pre 0.7 ha_qa_scale: internal --- -The time and date (`time_date`) sensor platform simple displays the time in various formats, the date, or both. - -To enable this sensor in your installation, add the following to your `configuration.yaml` file: +The time and date (`time_date`) sensor platform adds one or more sensors to your Home Assistant state machine. +To have these sensors available in your installation, add the following to your `configuration.yaml` file (each option creates a separate sensor that contains appropriate data): ```yaml # Example configuration.yaml entry diff --git a/source/_integrations/todoist.markdown b/source/_integrations/todoist.markdown index 7c82331fc4d..bedcfa150b8 100644 --- a/source/_integrations/todoist.markdown +++ b/source/_integrations/todoist.markdown @@ -121,7 +121,7 @@ Home Assistant does its best to [determine what task in each project is "most" i ### Services -Todoist also comes with access to a service, `calendar.todoist_new_task`. This service can be used to create a new Todoist task. You can specify labels and a project, or you can leave them blank, and the task will go to your "Inbox" project. +Todoist also comes with access to a service, `todoist.new_task`. This service can be used to create a new Todoist task. You can specify labels and a project, or you can leave them blank, and the task will go to your "Inbox" project. Here are two example JSON payloads resulting in the same task: diff --git a/source/_integrations/tplink.markdown b/source/_integrations/tplink.markdown index 3332b859ee2..f612c9eeb80 100644 --- a/source/_integrations/tplink.markdown +++ b/source/_integrations/tplink.markdown @@ -36,7 +36,7 @@ The following devices are known to work with this component. - HS107 (indoor 2-outlet) - HS300 (powerstrip 6-outlet) -- KP400 (outdoot 2-outlet) +- KP400 (outdoor 2-outlet) ### Wall Switches diff --git a/source/_integrations/transmission.markdown b/source/_integrations/transmission.markdown index 8981e96f6fc..dd8455037c5 100644 --- a/source/_integrations/transmission.markdown +++ b/source/_integrations/transmission.markdown @@ -119,8 +119,10 @@ Adds a new torrent to download. It can either be a URL (http, https or ftp), mag | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | +| `name` | no | Name of the configured instance | `torrent` | no | Torrent to download + ## Templating ### Sensor `started_torrents` diff --git a/source/_integrations/unifiled.markdown b/source/_integrations/unifiled.markdown index 3ed773231c1..8b13a079709 100644 --- a/source/_integrations/unifiled.markdown +++ b/source/_integrations/unifiled.markdown @@ -8,7 +8,7 @@ ha_release: 0.102 ha_iot_class: Local Polling --- -[UniFi LED](https://unifi-led.ui.com/) by [Ubiquiti Networks, inc.](https://www.ubnt.com/) is a system off controller managed led light panels and dimmers. +[UniFi LED](https://unifi-led.ui.com/) by [Ubiquiti Networks, inc.](https://www.ubnt.com/) is a system of controller managed led light panels and dimmers. There is currently support for the following device type within Home Assistant: diff --git a/source/_integrations/upc_connect.markdown b/source/_integrations/upc_connect.markdown index 66ad6c559c0..902a952da38 100644 --- a/source/_integrations/upc_connect.markdown +++ b/source/_integrations/upc_connect.markdown @@ -37,4 +37,5 @@ Also known to be working with the following devices: - Irish Virgin Media Super Hub 3.0 - Unitymedia Connect Box (DE) - Ziggo Connectbox (NL) + - Compal CH7465LG ED 3.0 - Connect box (UPC / Vodafone CZ) diff --git a/source/_integrations/uptimerobot.markdown b/source/_integrations/uptimerobot.markdown index 06ddefdd0e9..93ccce59911 100644 --- a/source/_integrations/uptimerobot.markdown +++ b/source/_integrations/uptimerobot.markdown @@ -8,7 +8,7 @@ ha_release: 0.72 ha_iot_class: Cloud Polling --- -The `uptimerobot` binary sensor platform allows you get the status for all of your monitors from your account on [Uptime Robot.]( https://uptimerobot.com). +The `uptimerobot` binary sensor platform allows you get the status for all of your monitors from your account on [Uptime Robot]( https://uptimerobot.com). ## Configuration @@ -28,6 +28,6 @@ api_key: type: string {% endconfiguration %} -All the data will be fetch from [Uptime Robot](https://uptimerobot.com). +All the data will be fetched from [Uptime Robot](https://uptimerobot.com). To get your API key, go to [My Settings](https://uptimerobot.com/dashboard#mySettings) on the Uptime Robot website, at the bottom you will find your "Main API Key". diff --git a/source/_integrations/vacuum.xiaomi_miio.markdown b/source/_integrations/vacuum.xiaomi_miio.markdown index 61eb90f249b..2dc5fbbe8c0 100644 --- a/source/_integrations/vacuum.xiaomi_miio.markdown +++ b/source/_integrations/vacuum.xiaomi_miio.markdown @@ -54,15 +54,15 @@ name: ## Platform Services -In addition to all of the services provided by the `vacuum` integration (`start`, `pause`, `stop`, `return_to_base`, `locate`, `set_fan_speed` and `send_command`), the `xiaomi` platform introduces specific services to access the remote control mode of the robot. These are: +In addition to all of the services provided by the `vacuum` integration (`start`, `pause`, `stop`, `return_to_base`, `locate`, `set_fan_speed` and `send_command`), the `xiaomi_miio` platform introduces specific services to access the remote control mode of the robot. These are: -- `xiaomi_remote_control_start` -- `xiaomi_remote_control_stop` -- `xiaomi_remote_control_move` -- `xiaomi_remote_control_move_step` -- `xiaomi_clean_zone` +- `xiaomi_miio.vacuum_remote_control_start` +- `xiaomi_miio.vacuum_remote_control_stop` +- `xiaomi_miio.vacuum_remote_control_move` +- `xiaomi_miio.vacuum_remote_control_move_step` +- `xiaomi_miio.vacuum_clean_zone` -### Service `vacuum.xiaomi_remote_control_start` +### Service `xiaomi_miio.vacuum_remote_control_start` Start the remote control mode of the robot. You can then move it with `remote_control_move`; when done, call `remote_control_stop`. @@ -70,7 +70,7 @@ Start the remote control mode of the robot. You can then move it with `remote_co |---------------------------|----------|---------------------------------------------------| | `entity_id` | no | Only act on a specific robot | -### Service `vacuum.xiaomi_remote_control_stop` +### Service `xiaomi_miio.vacuum_remote_control_stop` Exit the remote control mode of the robot. @@ -78,7 +78,7 @@ Exit the remote control mode of the robot. |---------------------------|----------|---------------------------------------------------| | `entity_id` | no | Only act on a specific robot | -### Service `vacuum.xiaomi_remote_control_move` +### Service `xiaomi_miio.vacuum_remote_control_move` Remote control the robot. Please ensure you first set it in remote control mode with `remote_control_start`. @@ -89,7 +89,7 @@ Remote control the robot. Please ensure you first set it in remote control mode | `rotation` | no | Rotation: between -179 degrees and 179 degrees | | `duration` | no | The number of milliseconds that the robot should move for | -### Service `vacuum.xiaomi_remote_control_move_step` +### Service `xiaomi_miio.vacuum_remote_control_move_step` Enter remote control mode, make one move, stop, and exit remote control mode. @@ -100,7 +100,7 @@ Enter remote control mode, make one move, stop, and exit remote control mode. | `rotation` | no | Rotation: between -179 degrees and 179 degrees | | `duration` | no | The number of milliseconds that the robot should move for | -### Service `vacuum.xiaomi_clean_zone` +### Service `xiaomi_miio.vacuum_clean_zone` Start the cleaning operation in the areas selected for the number of repeats indicated. @@ -110,7 +110,7 @@ Start the cleaning operation in the areas selected for the number of repeats ind | `zone` | no | List of zones. Each zone is an array of 4 integer value. Example: [[23510,25311,25110,26361]] | | `repeats` | no | Number of cleaning repeats for each zone between 1 and 3. | -Example of `vacuum.xiaomi_clean_zone` use: +Example of `xiaomi_miio.vacuum_clean_zone` use: Inline array: {% raw %} @@ -122,7 +122,7 @@ automation: platform: homeassistant condition: [] action: - - service: vacuum.xiaomi_clean_zone + - service: xiaomi_miio.vacuum_clean_zone data_template: entity_id: vacuum.xiaomi_vacuum repeats: '{{states('input_number.vacuum_passes')|int}}' @@ -140,7 +140,7 @@ automation: platform: homeassistant condition: [] action: - - service: vacuum.xiaomi_clean_zone + - service: xiaomi_miio.vacuum_clean_zone data_template: entity_id: vacuum.xiaomi_vacuum repeats: '{{states('input_number.vacuum_passes')|int}}' @@ -159,7 +159,7 @@ automation: platform: homeassistant condition: [] action: - - service: vacuum.xiaomi_clean_zone + - service: xiaomi_miio.vacuum_clean_zone data: entity_id: vacuum.xiaomi_vacuum repeats: 1 @@ -208,11 +208,13 @@ The following table shows the units of measurement for each attribute: As per Version 5.4.49 the Android Mi Home app stores the token readable in the log files. It can easily be retrieved in the folder Smarthome on in the Android device. Just open the text file inside the Smarthome/logs folder and search for the token.

-The iPhone app still stores the token in the SQLite db as of v4.10.2 (Dec 22, 2018). +The iPhone app still stores the token in the SQLite db as of v4.23.4 (Nov 17, 2019).

-This token (32 hexadecimal characters) is required for the Xiaomi Mi Robot Vacuum, Mi Robot 2 (Roborock) Vacuum, Xiaomi Philips Lights and Xiaomi IR Remote. The Xiaomi Gateway uses another security method and requires a `key` (16 alphanumeric chars), which can be obtained -easily via a hidden menu item at the Mi-Home app or using the `miio` command line tool. - +After resetting the WiFi settings of the Xiaomi robot vacuum, a new Access Token will be generated and therefore these instructions need to be followed again. +

+These instructions are written for the Mi Home app - not for the new RoboRock app. +

+This token (32 hexadecimal characters) is required for the Xiaomi Mi Robot Vacuum, Mi Robot 2 (Roborock) Vacuum, Xiaomi Philips Lights and Xiaomi IR Remote. The Xiaomi Gateway uses another security method and requires a `key` (16 alphanumeric chars), which can be obtained easily via a hidden menu item at the Mi-Home app or using the `miio` command line tool.
### Miio command line tool @@ -252,7 +254,7 @@ The information output is: To fetch the token follow these instructions depending on your mobile phone platform. -1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). +1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. 2. Download and extract the [MiToolKit.zip](https://github.com/ultrara1n/MiToolkit/releases). 3. Enable developer mode and USB debugging on the Android phone and plug it into the computer. 4. Change the MiToolKit language to English if you need to. @@ -280,7 +282,7 @@ source /srv/homeassistant/bin/activate To fetch the token follow these instructions depending on your mobile phone platform. -1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). +1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. 2. Enable developer mode, USB debugging and plug the Android phone into the computer. 3. Get ADB by running `apt-get install android-tools-adb` or `apt-get install adb`. 4. `adb devices` should list your device. Consult the ADB manual if necessary. @@ -315,7 +317,7 @@ source /srv/homeassistant/bin/activate To fetch the token follow these instructions depending on your mobile phone platform. -1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). +1. Configure the robot with [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/). Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. 2. Enable developer mode, USB debugging and root permission only for ADB on the Android phone and plug it into the computer. 3. Get ADB (e.g, using `apt-get install android-tools-adb`). 4. The command `adb devices` should list your device. @@ -328,12 +330,12 @@ To fetch the token follow these instructions depending on your mobile phone plat ### iOS -1. Configure the robot with the Mi Home app. +1. Configure the robot with the Mi Home app. Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. Note that the new RoboRock app is currently not supported for this method. 2. Using iTunes, create an unencrypted backup of your iPhone. 3. Install [iBackup Viewer](https://www.imactools.com/iphonebackupviewer/), open it, and open your backup. 4. Open the "Raw Data" module. 5. Navigate to `com.xiaomi.mihome`. -6. Search for a file that looks like this: `123456789_mihome.sqlite` (Note: `_mihome.sqlite` is *not* the correct file). +6. Search for a file that looks like this: `123456789_mihome.sqlite` (Note: `_mihome.sqlite` is *not* the correct file. Most likely, you will find this file in the `Documents` folder.) 7. Save this file to your filesystem. 8. Install [DB Browser for SQLite](https://sqlitebrowser.org/). 9. Open DB Browser and load the `.sqlite` file you saved from your backup. @@ -351,7 +353,7 @@ To fetch the token follow these instructions depending on your mobile phone plat ### Bluestacks -1. Configure the robot with the Mi-Home app. +1. Configure the robot with the Mi-Home app. Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. Note that the new RoboRock app is currently not supported for this method. 2. Install [BlueStacks](https://www.bluestacks.com). 3. Set up [Mi Home version 5.0.30](https://www.apkmirror.com/apk/xiaomi-inc/mihome/mihome-5-0-30-release/) in BlueStacks and login to synchronize devices. 4. Use [BlueStacks Tweaker](https://forum.xda-developers.com/general/general/bluestacks-tweaker-2-tool-modifing-t3622681) to access the filesystem and retrieve the token. @@ -372,7 +374,7 @@ Software Required: - [Android Backup Extractor](https://sourceforge.net/projects/adbextractor/) - [SQLite Browser](https://sqlitebrowser.org/) 1. Install an old Version of MiHome (e.g. Mi Home version 5.0.30) on your Android-Device -2. Open MiHome, log-in and add your devices +2. Open MiHome, log-in and add your devices. Make sure to select the correct region, as Xiaomi uses different product names for different geographical areas. 3. Enable USB-Debugging on your Android 4. Create a backup from your MiHome App, by using adb ```bash diff --git a/source/_integrations/venstar.markdown b/source/_integrations/venstar.markdown index 701df65acc5..f2c60460c41 100644 --- a/source/_integrations/venstar.markdown +++ b/source/_integrations/venstar.markdown @@ -10,17 +10,18 @@ ha_iot_class: Local Polling The `venstar` climate platform allows you to control [Venstar](https://www.venstar.com/) thermostats from Home Assistant. -Venstar thermostats feature a local API that allows for automation without the need for a cloud service. +Venstar thermostats feature a local API that allows for automation without the need for their Skyport cloud service. Currently supported and tested thermostats: -- Color Touch T7900 +- ColorTouch T7900 +- ColorTouch T7850 (No Humidity control) Currently supported functionality: - Setting heat/cool temperature when the thermostat is in the appropriate mode. - Changing the operation mode of the thermostat (heat/cool/off/auto) - Turning the fan on/off -- Reading and setting the humidity level and limits +- Reading and setting the humidity level and limits (T7900 only) - Turning on away preset - Turning on hold mode preset @@ -28,7 +29,9 @@ The following values are supported for the hold_mode state attribute: - `off`: *Enables* the scheduling functionality. - `temperature`: *Disables* the schedule and holds the set temperature indefinitely. -Note - Please ensure you update your thermostat to the latest firmware. Currently tested on firmware 5.10. +Note - Please ensure that you update your thermostat to the latest firmware. Initially tested on firmware 5.10 and currently VH6.79. + +Local API mode needs to be enabled via the thermostat's *Menu > WiFi > Local API Options > Local API - ON* To set it up, add the following information to your `configuration.yaml` file: diff --git a/source/_integrations/versasense.markdown b/source/_integrations/versasense.markdown new file mode 100644 index 00000000000..f54e1e68716 --- /dev/null +++ b/source/_integrations/versasense.markdown @@ -0,0 +1,43 @@ +--- +title: "VersaSense" +description: "Integrate your VersaSense MicroPnP devices." +date: 2019-11-19 14:00 +logo: versasense.png +ha_release: 0.103 +ha_category: + - Hub + - Sensor + - Switch +ha_iot_class: Local Polling +--- + +The `VersaSense` integration supports the VersaSense Edge Gateway. The gateway is able to control hubs and their peripherals (sensors and actuators) in the mesh network. + +## Configuration + +```yaml +# Example configuration.yaml entry +versasense: + host: GATEWAY_URI +``` + +{% configuration %} +host: + description: "The IP address or hostname of the VersaSense gateway. Including *protocol* and *port*, e.g., https://gateway.versasense.com:8889" + required: true + type: string +{% endconfiguration %} + +## Supported hardware + +All Versasense gateways with software version >= 1.0.2.10 + +The integration is tested with following peripherals and devices: + +- S03 S04: Temperature and Humidity sensor +- S06: Barometric Pressure sensor +- S10: Light sensor +- S17: Object detection sensor +- S19: Buzzer actuator +- Pxx: SmartMesh IP Hub +- M01: SmartMesh Edge Gateway diff --git a/source/_integrations/version.markdown b/source/_integrations/version.markdown index 55e767fdba2..62f7755e94a 100644 --- a/source/_integrations/version.markdown +++ b/source/_integrations/version.markdown @@ -46,7 +46,7 @@ source: ### Supported images for Hass.io and Docker -`default`, `qemux86`, `qemux86-64`, `qemuarm`, `qemuarm-64`, `intel-nuc`, `raspberrypi`, `raspberrypi2`, `raspberrypi3`, `raspberrypi3-64`, `tinker`, `odroid-c2`, `odroid-xu` +`default`, `qemux86`, `qemux86-64`, `qemuarm`, `qemuarm-64`, `intel-nuc`, `raspberrypi`, `raspberrypi2`, `raspberrypi3`, `raspberrypi3-64`, `raspberrypi4`, `raspberrypi4-64`, `tinker`, `odroid-c2`, `odroid-xu` ## Alternatives for showing local version diff --git a/source/_integrations/vivotek.markdown b/source/_integrations/vivotek.markdown index 63a479470d0..f00ddafb14d 100644 --- a/source/_integrations/vivotek.markdown +++ b/source/_integrations/vivotek.markdown @@ -43,6 +43,11 @@ password: description: The password for accessing your camera. required: true type: string +security_level: + description: The security level of the user accessing your camera. This could be `admin` or `viewer`. + required: false + default: admin + type: string ssl: description: Enable or disable SSL. Set to false to use an HTTP-only camera. required: false @@ -76,6 +81,7 @@ camera: ssl: true username: !secret fd_camera_username password: !secret fd_camera_pwd + security_level: admin verify_ssl: false framerate: 5 stream_path: live2.sdp diff --git a/source/_integrations/wake_on_lan.markdown b/source/_integrations/wake_on_lan.markdown index 664020e3561..fe65e758050 100644 --- a/source/_integrations/wake_on_lan.markdown +++ b/source/_integrations/wake_on_lan.markdown @@ -61,12 +61,12 @@ To enable this switch in your installation, add the following to your `configura # Example configuration.yaml entry switch: - platform: wake_on_lan - mac_address: "00-01-02-03-04-05" + mac: "00-01-02-03-04-05" ``` {% configuration %} -mac_address: - description: MAC address to send the wake up command to. +mac: + description: The MAC address to send the wake up command to. required: true type: string name: diff --git a/source/_integrations/waqi.markdown b/source/_integrations/waqi.markdown index 14cefc5cd39..07d890f0492 100644 --- a/source/_integrations/waqi.markdown +++ b/source/_integrations/waqi.markdown @@ -10,8 +10,16 @@ ha_iot_class: Cloud Polling The `waqi` sensor platform will query [World Air Quality Index](https://aqicn.org/city/beijing/) service to check AQI value for a specific set of locations. The resulting indexes will be added to the Home Assistant as sensor outputs. +## Setup + This sensor requires an API token. Please obtain one at [AQICN API token](https://aqicn.org/data-platform/token/#/). +The locations field is a search for a location. E.g., "brisbane" or "Brisban" would find Brisbane, Australia and all associated stations in the area. + +The format for station fields is exactly from the website, e.g., you would provide the location string "[South Brisbane, Australia](http://aqicn.org/city/australia/queensland/south-brisbane/)" for the linked location. + +## Configuration + To enable this sensor, add the following lines to your `configuration.yaml` file: ```yaml diff --git a/source/_integrations/watson_iot.markdown b/source/_integrations/watson_iot.markdown index f01c6696e46..1d94dcad0b3 100644 --- a/source/_integrations/watson_iot.markdown +++ b/source/_integrations/watson_iot.markdown @@ -16,7 +16,7 @@ To use this component, you first need to register a gateway device type and then a gateway device in your IoT platform instance. For instructions on how to do this check the [official documentation](https://cloud.ibm.com/docs/services/IoT?topic=iot-platform-getting-started#IoT_connectGateway) which provides the details on doing this. After you register the gateway device -for your home-assistant you'll need 4 pieces of information: +for your Home Assistant instance you'll need four pieces of information: - Organization ID - Gateway device Type @@ -36,19 +36,19 @@ watson_iot: {% configuration %} organization: - description: The Organization ID for your Watson IoT Platform instance + description: The Organization ID for your Watson IoT Platform instance. required: true type: string type: - description: The device type for the gateway device to use + description: The device type for the gateway device to use. required: true type: string id: - description: The device id for the gateway device to use + description: The device id for the gateway device to use. required: true type: string token: - description: The authentication token for the gateway device + description: The authentication token for the gateway device. required: true type: string exclude: diff --git a/source/_integrations/waze_travel_time.markdown b/source/_integrations/waze_travel_time.markdown index 2f65bb76550..e223131dd7f 100644 --- a/source/_integrations/waze_travel_time.markdown +++ b/source/_integrations/waze_travel_time.markdown @@ -64,8 +64,25 @@ vehicle_type: description: "Set the vehicle type for the sensor: car, taxi, or motorcycle, otherwise the default is car." required: false type: string +avoid_ferries: + description: "If this is set to true, Waze will avoid ferries on your route." + required: false + type: boolean + default: false +avoid_toll_roads: + description: "If this is set to true, Waze will avoid toll roads on your route." + required: false + type: boolean + default: false +avoid_subscription_roads: + description: "If this is set to true, Waze will avoid roads needing a vignette / subscription on your route." + required: false + type: boolean + default: false {% endconfiguration %} +When using the `avoid_toll_roads`, `avoid_subscription_roads` and `avoid_ferries` options be aware that Waze will sometimes still route you over toll roads or ferries if a valid vignette/subscription is assumed. Default behaviour is that Waze will route you over roads having subscription options, so best is to set both `avoid_toll_roads` and `avoid_subscription_roads` or `avoid_ferries` if needed and experiment to ensure the desired outcome. + ## Example using dynamic destination Using the flexible option to set a sensor value to the `destination`, you can setup a single Waze integration that will calculate travel time to multiple optional locations on demand. @@ -118,6 +135,15 @@ sensor: region: 'US' units: imperial # 'metric' for Metric, 'imperial' for Imperial vehicle_type: motorcycle # vehicle type used for routing + + # Avoiding toll, subscription + - platform: waze_travel_time + name: Westerscheldetunnel + origin: 51.330436, 3.802043 + destination: 51.445677, 3.749929 + region: 'EU' + avoid_toll_roads: true + avoid_subscription_roads: true ``` {% endraw %} diff --git a/source/_integrations/weblink.markdown b/source/_integrations/weblink.markdown index bdbe73101c4..89b7d5b62d9 100644 --- a/source/_integrations/weblink.markdown +++ b/source/_integrations/weblink.markdown @@ -11,7 +11,9 @@ ha_qa_scale: internal The `weblink` integration allows you to display links in the Home Assistant frontend.
+ The below documentation applies to the classic "States" user interface. Starting with Home Assistant 0.86, Lovelace is the new default interface. For information on configuring weblinks in Lovelace please follow [these instructions](/lovelace/entities/#weblink) instead. +
## Configuration diff --git a/source/_integrations/wemo.markdown b/source/_integrations/wemo.markdown index b1227ef4863..f4b671742a0 100644 --- a/source/_integrations/wemo.markdown +++ b/source/_integrations/wemo.markdown @@ -8,7 +8,6 @@ ha_category: - Fan - Light - Switch -featured: true ha_release: pre 0.7 --- @@ -102,5 +101,5 @@ There are several services which can be used for automations and control of the | `toggle` | Calling this service will toggle the humidifier between on and off states. | `turn_off` | Calling this service will turn the humidifier off (entity_id is required). | `turn_on` | Calling this service will turn the humidifier on and set the speed to the last used speed (defaults to medium, entity_id is required). -| `wemo_set_humidity` | Calling this service will set the desired relative humidity setting on the device (entity_id is a required list of 1 or more entities to set humidity on, and target_humidity is a required float value between 0 and 100 (this value will be rounded down and mapped to one of the valid desired humidity settings of 45, 50, 55, 60, or 100 that are supported by the WeMo humidifier)). -| `wemo_reset_filter_life` | Calling this service will reset the humdifier's filter life back to 100% (entity_id is a required list of 1 or more entities to reset the filter life on). Call this service when you change the filter on your humidifier. +| `wemo.set_humidity` | Calling this service will set the desired relative humidity setting on the device (entity_id is a required list of 1 or more entities to set humidity on, and target_humidity is a required float value between 0 and 100 (this value will be rounded down and mapped to one of the valid desired humidity settings of 45, 50, 55, 60, or 100 that are supported by the WeMo humidifier)). +| `wemo.reset_filter_life` | Calling this service will reset the humdifier's filter life back to 100% (entity_id is a required list of 1 or more entities to reset the filter life on). Call this service when you change the filter on your humidifier. diff --git a/source/_integrations/wink.markdown b/source/_integrations/wink.markdown index 5dbd141bb09..2d886838490 100644 --- a/source/_integrations/wink.markdown +++ b/source/_integrations/wink.markdown @@ -501,9 +501,9 @@ The requirement is that you have setup [Wink](/integrations/wink/) from above. The following services have only been confirmed on Schlage locks.
-### Service `wink_set_lock_alarm_mode` +### Service `set_lock_alarm_mode` -You can use the service wink/wink_set_lock_alarm_mode to set the alarm mode of your lock. +You can use the service wink/set_lock_alarm_mode to set the alarm mode of your lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -516,14 +516,14 @@ Example: script: set_locks_to_tamper: sequence: - - service: wink.wink_set_lock_alarm_mode + - service: wink.set_lock_alarm_mode data: mode: "tamper" ``` -### Service `wink_set_lock_alarm_sensitivity` +### Service `set_lock_alarm_sensitivity` -You can use the service wink/wink_set_lock_alarm_sensitivity to set the alarm sensitivity of your lock. +You can use the service wink/set_lock_alarm_sensitivity to set the alarm sensitivity of your lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -536,14 +536,14 @@ Example: script: set_locks_to_high_sensitivity: sequence: - - service: wink.wink_set_lock_alarm_sensitivity + - service: wink.set_lock_alarm_sensitivity data: sensitivity: "high" ``` -### Service `wink_set_lock_alarm_state` +### Service `set_lock_alarm_state` -You can use the service wink/wink_set_lock_alarm_state to set the alarm state of your lock. +You can use the service wink/set_lock_alarm_state to set the alarm state of your lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -556,14 +556,14 @@ Example: script: disable_all_locks_alarm: sequence: - - service: wink.wink_set_lock_alarm_state + - service: wink.set_lock_alarm_state data: enabled: false ``` -### Service `wink_set_lock_beeper_state` +### Service `set_lock_beeper_state` -You can use the service wink/wink_set_lock_beeper_state to set the beeper state of your lock. +You can use the service wink/set_lock_beeper_state to set the beeper state of your lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -576,14 +576,14 @@ Example: script: disable_all_locks_beepers: sequence: - - service: wink.wink_set_lock_beeper_state + - service: wink.set_lock_beeper_state data: enabled: false ``` -### Service `wink_set_lock_vacation_mode` +### Service `set_lock_vacation_mode` -You can use the service wink/wink_set_lock_vacation_mode to set the vacation mode of your lock. +You can use the service wink/set_lock_vacation_mode to set the vacation mode of your lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | @@ -596,14 +596,14 @@ Example: script: enabled_vacation_mode_on_all_locks: sequence: - - service: wink.wink_set_lock_vacation_mode + - service: wink.set_lock_vacation_mode data: enabled: false ``` -### Service `wink_add_new_lock_key_code` +### Service `add_new_lock_key_code` -You can use the service wink/wink_add_new_lock_key_code to add a new user code to your Wink lock. +You can use the service wink/add_new_lock_key_code to add a new user code to your Wink lock. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | diff --git a/source/_integrations/xbox_live.markdown b/source/_integrations/xbox_live.markdown index da9419bcd2a..3308b649b76 100644 --- a/source/_integrations/xbox_live.markdown +++ b/source/_integrations/xbox_live.markdown @@ -17,7 +17,7 @@ Please also make sure to connect your Xbox account on that site. The configuration requires you to specify XUIDs which are the unique identifiers for profiles. These can be determined on [XboxAPI.com](https://xboxapi.com/) by either looking at your own profile page or using their interactive documentation -to search for gamertags. +to search for gamertags. Sensor names default to the gamertag associated with an XUID. To use the Xbox Live sensor in your installation, add the following to your `configuration.yaml` file: @@ -42,3 +42,4 @@ xuid: required: true type: list {% endconfiguration %} + diff --git a/source/_integrations/yamaha.markdown b/source/_integrations/yamaha.markdown index 400f94a220b..2bcd02479be 100644 --- a/source/_integrations/yamaha.markdown +++ b/source/_integrations/yamaha.markdown @@ -127,7 +127,7 @@ script: ``` -### Service `yamaha_enable_output` +### Service `enable_output` Enable or disable an output port (HDMI) on the receiver. diff --git a/source/_integrations/yi.markdown b/source/_integrations/yi.markdown index 9c220a1f776..b37eb945d93 100644 --- a/source/_integrations/yi.markdown +++ b/source/_integrations/yi.markdown @@ -21,7 +21,7 @@ To successfully implement this platform, the Home Assistant host should be capab ### Installing Alternative Firmware -In order to integrate the camera with Home Assistant, it is necessary to install a custom firmware on the device. Instructions for doing so can be found via the [yi-hack-v3 GitHub project](https://github.com/shadow-1/yi-hack-v3). +In order to integrate the camera with Home Assistant, it is necessary to install a custom firmware on the device. Instructions for doing so can be found via the [yi-hack-v3 GitHub project](https://github.com/shadow-1/yi-hack-v3) or if you have a 2019 version camera [yi-hack-6FUS_4.5.0 GitHub project](https://github.com/roleoroleo/yi-hack-6FUS_4.5.0). Once installed, please ensure that you have enabled FTP and Telnet on your device. diff --git a/source/_integrations/zeroconf.markdown b/source/_integrations/zeroconf.markdown index 7cb0c209973..1888e4ab651 100644 --- a/source/_integrations/zeroconf.markdown +++ b/source/_integrations/zeroconf.markdown @@ -5,6 +5,7 @@ ha_category: - Network ha_qa_scale: internal ha_release: 0.18 +logo: home-assistant.png --- The `zeroconf` integration will scan the network for supported devices and services. Discovered integrations will show up in the discovered section on the integrations page in the config panel. It will also make Home Assistant discoverable for other services in the network. Zeroconf is also sometimes known as Bonjour, Rendezvous, and Avahi. diff --git a/source/_integrations/zha.markdown b/source/_integrations/zha.markdown index 768978d3992..e066856ef38 100644 --- a/source/_integrations/zha.markdown +++ b/source/_integrations/zha.markdown @@ -46,10 +46,10 @@ The custom quirks implementations for zigpy implemented as ZHA Device Handlers f - Digi XBee Series 3 (xbee3-24) modules - Digi XBee Series 2C (S2C) modules - Digi XBee Series 2 (S2) modules (Note! This first have to be flashed with Zigbee Coordinator API firmware) -- Dresden-Elektronik deCONZ based Zigbee radios (via the [zigpy-deconz](https://github.com/zigpy/zigpy-deconz) library for zigpy) - - [ConBee II (a.k.a. ConBee 2) USB adapter from Dresden-Elektronik](https://shop.dresden-elektronik.de/conbee-2.html) - - [ConBee USB adapter from Dresden-Elektronik](https://www.dresden-elektronik.de/conbee/) - - [RaspBee Raspberry Pi Shield from Dresden-Elektronik](https://www.dresden-elektronik.de/raspbee/) +- dresden elektronik deCONZ based Zigbee radios (via the [zigpy-deconz](https://github.com/zigpy/zigpy-deconz) library for zigpy) + - [ConBee II (a.k.a. ConBee 2) USB adapter from dresden elektronik](https://phoscon.de/conbee2) + - [ConBee USB adapter from dresden elektronik](https://phoscon.de/conbee) + - [RaspBee Raspberry Pi Shield from dresden elektronik](https://phoscon.de/raspbee) - ZiGate based radios (via the [zigpy-zigate](https://github.com/doudz/zigpy-zigate) library for zigpy and require firmware 3.1a or later) - [ZiGate USB-TTL](https://zigate.fr/produit/zigate-ttl/) - [ZiGate USB-DIN](https://zigate.fr/produit/zigate-usb-din/) @@ -102,6 +102,8 @@ enable_quirks: To add new devices to the network, call the `permit` service on the `zha` domain. Do this by clicking the Service icon in Developer tools and typing `zha.permit` in the **Service** dropdown box. Next, follow the device instructions for adding, scanning or factory reset. +Alternatively you can trigger a scan for devices through the Web UI via `Configuration > ZHA > Add Devices`. + ## Troubleshooting ### Add Philips Hue bulbs that have previously been added to another bridge diff --git a/source/_lovelace/entities.markdown b/source/_lovelace/entities.markdown index 23c614811b4..68d61c8e11b 100644 --- a/source/_lovelace/entities.markdown +++ b/source/_lovelace/entities.markdown @@ -61,7 +61,7 @@ image: type: string secondary_info: required: false - description: "Show additional info. Values: `entity-id`, `last-changed`." + description: "Show additional info. Values: `entity-id`, `last-changed`, `last-triggered' (only for automations and scripts)." type: string format: required: false diff --git a/source/_posts/2019-10-25-rip-hassbian.markdown b/source/_posts/2019-10-25-rip-hassbian.markdown index 22e8f52ff19..99e50ae9a82 100644 --- a/source/_posts/2019-10-25-rip-hassbian.markdown +++ b/source/_posts/2019-10-25-rip-hassbian.markdown @@ -7,38 +7,42 @@ date_formatted: "October 26, 2019" author: Fredrik Lindqvist author_twitter: Landrash comments: true -categories: community +categories: Announcements --- It's time for what was once the simplest way to install Home Assistant to retire. ## R.I.P Hassbian -Some of you will probably wonder why Hassbian is being retired and I'll try to give a proper motivation. +Some of you will probably wonder why Hassbian is being retired and I'll try to give a proper motivation. First of is the age-old factor of **time**. I as the lead developer of Hassbian haven't been able to give it the time and attention it requires, and there have been few others that have pushed the project further. The one exception being [@ludeeus] who's done most of the heavy lifting when the image was retooled to use a proper apt package and repository. Second is that it's no longer the best option for most to use as an installation method. Hass.io has surpassed Hassbian in almost all ways I can imagine. ## Next Step for Hassbian + Since Hassbian has been around for quite a while, there are quite a few users that don't want Hassbian to go away. To make this as easy as possible for those users, here's the plan. - - The repositories [pi-gen] and [hassbian-scripts] hosting the Hassbian projects files will be moved to a new organization. - - A last release will be done by me mid Q4 2019. This image will be hosted under the [pi-gen] repository. - - The [pi-gen] repository will be reworked to work with a standard [raspbian] image with minor modifications for anyone wanting to create their own "Hassbian like" image. This has always been possible, but the current repository is a bit out of date with the current layout of the Raspbian image. - - The [hassbian-scripts] package will get a final release and will continue to be hosted on Gitlab. Some minor changes will be made to reflect the changes to the project. +- The repositories [pi-gen] and [hassbian-scripts] hosting the Hassbian projects files will be moved to a new organization. +- A last release will be done by me mid Q4 2019. This image will be hosted under the [pi-gen] repository. +- The [pi-gen] repository will be reworked to work with a standard [raspbian] image with minor modifications for anyone wanting to create their own "Hassbian like" image. This has always been possible, but the current repository is a bit out of date with the current layout of the Raspbian image. +- The [hassbian-scripts] package will get a final release and will continue to be hosted on Gitlab. Some minor changes will be made to reflect the changes to the project. ## Next step for Hassbian users + The Hassbian image has always aimed to be the same as a manual Raspbian Lite installation with some packages added. There won't really be any big changes for all of the users of Hassbian and for documentation, please refer to the [Manual installation on a Raspberry PI] method. ## Alternatives + If you want to continue using something similar, have a look at the [manual installation on a Raspberry Pi] since it is the base Hassbian was created from. For everyone else, I would wholeheartedly recommend Hass.io since it is what I personally use now (It's what I had hoped Hassbian could have been but better). ## Last but not least + Last but not least, thank you to all of those who contributed, in any way, to the Hassbian project and image. [@ludeeus]: https://github.com/ludeeus [pi-gen]: https://github.com/Hassbian/pi-gen [hassbian-scripts]: https://github.com/Hassbian/hassbian-scripts -[Manual installation on a Raspberry Pi]: /docs/installation/raspberry-pi/ +[manual installation on a raspberry pi]: /docs/installation/raspberry-pi/ [raspbian]: https://www.raspberrypi.org/downloads/raspbian/ diff --git a/source/_posts/2019-10-30-release-101.markdown b/source/_posts/2019-10-30-release-101.markdown index d6b40c0afa8..bcb29ab3b90 100644 --- a/source/_posts/2019-10-30-release-101.markdown +++ b/source/_posts/2019-10-30-release-101.markdown @@ -50,7 +50,7 @@ Your webhook should be available from the internet, if you have a cloud subscrip As you may have already read, we'll be sunsetting Hassbian. -Hassbian was a superset of Raspbian optimized for Home Assistant. With limited time from the developers and easier alternatives as [Hass.io](hhttps://www.home-assistant.io/hassio/) it is time to sunset Hassbian. +Hassbian was a superset of Raspbian optimized for Home Assistant. With limited time from the developers and easier alternatives as [Hass.io](https://www.home-assistant.io/hassio/) it is time to sunset Hassbian. A big thank you to all those who worked on Hassbian - specifically [@landrash](https://github.com/landrash), who was the primary driver of this for so long, and [@ludeeus](https://github.com/ludeeus). diff --git a/source/_posts/2019-11-20-privacy-focused-voice-assistant.markdown b/source/_posts/2019-11-20-privacy-focused-voice-assistant.markdown index 8e90a1804d7..ce96755eabc 100644 --- a/source/_posts/2019-11-20-privacy-focused-voice-assistant.markdown +++ b/source/_posts/2019-11-20-privacy-focused-voice-assistant.markdown @@ -85,6 +85,8 @@ We don't want to wait with integrating this until all the pieces run 100% locall With Almond and Ada, we've put the building blocks in place to create voice assistants. It's now time to use it, improve it and surprise us by sharing the things you'll use it for. +We've added a new section on the forums to discuss [voice setups](https://community.home-assistant.io/c/configuration/voice-assistant). + ## Bonus I hacked together a quick prototype to allow you to talk to Almond via a Telegram Bot! It's available as a [custom component](https://gist.github.com/balloob/d59cae89d19a14bcec99ce1bde05bd44). diff --git a/source/_posts/2019-11-20-release-102.markdown b/source/_posts/2019-11-20-release-102.markdown index a0535006490..6e71a779a50 100644 --- a/source/_posts/2019-11-20-release-102.markdown +++ b/source/_posts/2019-11-20-release-102.markdown @@ -8,7 +8,7 @@ author: Paulus Schoutsen author_twitter: balloob comments: true categories: Release-Notes -og_image: /images/blog/2019-10-0.102/components.png +og_image: /images/blog/2019-11-0.102/components.png --- Home Assistant 0.102 is here ! It's been quite the trip as we hosted our annual State of the Union last week, which took a lot of energy away from our release. This doesn't mean that we don't have anything to share, just that the notes might be a little less polished. @@ -21,13 +21,13 @@ Alright, so what's new? A lot. At the State of the Union we announced that we have released the initial version of the official [Home Assistant Android app](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android). It's still a work in progress, but the basic version already works. -It's been developed by [@CedrickFlocon](https://github.com/CedrickFlocon) and the source is [available on GitHub](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android). We've already seen some other developers step in, so that's great! Keep it coming. +It's been developed by [@CedrickFlocon](https://github.com/CedrickFlocon) and the source is [available on GitHub](https://github.com/home-assistant/home-assistant-android/). We've already seen some other developers step in, so that's great! Keep it coming. ## Private Voice Assistant -We teamed up with Stanford to tightly integrate their open, privacy-preserving virtual assistant Almond into Home Assistant. For more information, see the [separate blog post](/blog/2019/11/14/privacy-focused-voice-assistant/). +We teamed up with Stanford to tightly integrate their open, privacy-preserving virtual assistant Almond into Home Assistant. For more information, see the [separate blog post](/blog/2019/11/20/privacy-focused-voice-assistant/). ## Account Linking @@ -211,6 +211,55 @@ Experiencing issues introduced by this release? Please report them in our [issue - Updated frontend to 20191119.2 ([@bramkragten] - [#28896]) ([frontend docs]) (beta fix) - Fix Almond onboarding url when using cloud ([@bramkragten] - [#28908]) ([almond docs]) (beta fix) +## Release 0.102.1 - November 21 + +- Fix missing Netatmo sensors ([@cgtobi] - [#28899]) ([netatmo docs]) +- Updated frontend to 20191119.5 ([@bramkragten] - [#28925]) ([frontend docs]) +- Fix Plex startup race condition #28934 [@jjlawren] + +[#28899]: https://github.com/home-assistant/home-assistant/pull/28899 +[#28925]: https://github.com/home-assistant/home-assistant/pull/28925 +[@bramkragten]: https://github.com/bramkragten +[@cgtobi]: https://github.com/cgtobi +[frontend docs]: /integrations/frontend/ +[netatmo docs]: /integrations/netatmo/ + +## Release 0.102.2 - November 24 + +- Fix Plex setup race condition v2 ([@jjlawren] - [#28943]) ([plex docs]) +- Fix ikea lights on deconz ([@pvizeli] - [#28949]) ([deconz docs]) +- Fix manual config ([@cgtobi] - [#28956]) ([netatmo docs]) +- Fix temp not being reported properly ([@shred86] - [#28973]) ([abode docs]) +- Updated frontend to 20191119.6 ([@bramkragten] - [#28996]) ([frontend docs]) +- Alexa gracefully handle climate devices without presets ([@frenck] - [#29010]) ([alexa docs]) + +## Release 0.102.3 - November 29 + +- Fix smartthings cloud webhook ([@bramkragten] - [#29219]) ([smartthings docs]) + +[#29219]: https://github.com/home-assistant/home-assistant/pull/29219 +[@bramkragten]: https://github.com/bramkragten +[smartthings docs]: /components/smartthings/ + +[#28943]: https://github.com/home-assistant/home-assistant/pull/28943 +[#28949]: https://github.com/home-assistant/home-assistant/pull/28949 +[#28956]: https://github.com/home-assistant/home-assistant/pull/28956 +[#28973]: https://github.com/home-assistant/home-assistant/pull/28973 +[#28996]: https://github.com/home-assistant/home-assistant/pull/28996 +[#29010]: https://github.com/home-assistant/home-assistant/pull/29010 +[@bramkragten]: https://github.com/bramkragten +[@cgtobi]: https://github.com/cgtobi +[@frenck]: https://github.com/frenck +[@jjlawren]: https://github.com/jjlawren +[@pvizeli]: https://github.com/pvizeli +[@shred86]: https://github.com/shred86 +[abode docs]: /integrations/abode/ +[alexa docs]: /integrations/alexa/ +[deconz docs]: /integrations/deconz/ +[frontend docs]: /integrations/frontend/ +[netatmo docs]: /integrations/netatmo/ +[plex docs]: /integrations/plex/ + ## All changes - Cover all possible values for venstar operation_mode ([@iamtpage] - [#27949]) ([venstar docs]) diff --git a/source/_posts/2019-11-22-state-of-the-union.markdown b/source/_posts/2019-11-22-state-of-the-union.markdown new file mode 100644 index 00000000000..4c2718372b3 --- /dev/null +++ b/source/_posts/2019-11-22-state-of-the-union.markdown @@ -0,0 +1,136 @@ +--- +layout: post +title: "State of the Union 2019: Recap" +description: "ING hosted 150 Home Assistant community members to hear about the what and why of Home Assistant." +date: 2019-11-22 0:41:02 +date_formatted: "November 22, 2019" +author: Paulus Schoutsen +author_twitter: balloob +comments: true +categories: Announcements +redirect_from: + - /state-of-the-union/ +og_image: /images/blog/2019-11-state-of-the-union/social.jpeg +--- + +On November 13, 2019, 150 Home Assistant community members gathered at [ING](https://www.ing.com) in Amsterdam for the Home Assistant State of the Union 2019. + +That evening, Paulus Schoutsen (founder Home Assistant) and Pascal Vizeli (founder hass.io) presented what Home Assistant is up to, why we're doing what we're doing and what we got planned. + +Video of the event is embedded below (it starts at 7:12): + +
+ +
+ +## Thanks + +The State of the Union could not have been possible without the time and energy of the following people: + +- [ING](https://www.ing.com) for hosting us once again ❤️ +- Erik-Jan Riemers for organizing – Rockstar ⭐️ +- Frenck for managing the livestream +- Arjan Vroege for assisting the team + +## Announcements + +### We're #10 open-source project in the world + +GitHub posted their [State of the Octoverse](https://octoverse.github.com/#top-and-trending-projects), listing Home Assistant as the tenth biggest project in the last year based on the number of contributors. + +This is especially impressive because all the other things on the list are related to, or maintained by billion dollar companies. + +

Top 10 biggest open-source projects.Top 10 biggest open-source projects.

+ +### Home Assistant around the world ❤️ + +
+ +
+ +### Improved Scenes + +In Home Assistant 0.102 we're launching a new scene editor. We're also adding two scene services `scene.apply` and `scene.create`. First one allows you to apply a scene without prior defining it, the second one allows you to create a scene on the fly. + +### iOS app + +[@robbiet480](https://github.com/robbiet480) has submitted the new and updated iOS app to the app store and it will be available soon. + +[Source code](https://github.com/home-assistant/home-assistant-ios) + +### Android app + +We have released a new Android app! [Download it here.](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android) It's being developed by [@CedrickFlocon](https://github.com/CedrickFlocon) and we're already seeing a ton of other contributors jump in. Awesome! + +[Source code](https://github.com/home-assistant/home-assistant-android/) + +### OAuth2 Account Linking + +We've made it easier in Home Assistant for integrations to use OAuth2 account linking. This is available starting Home Assistant 0.102. Somfy is the first partner to use it. + +It works using a small cloud service provided by Home Assistant Cloud. It is available to all users for free, no cloud account necessary. + +
+ +
+ +Check the [updated developer documentation](https://developers.home-assistant.io/docs/en/config_entries_config_flow_handler.html#configuration-via-oauth2) if you want to add OAuth2 account linking to an integration. + +### Teamed up with Almond: privacy-preserving virtual assistant + +We've teamed up with the Stanford Open Virtual Assistant Lab to bring [Almond](https://almond.stanford.edu/) to Home Assistant users. Almond has been upgraded with Home Assistant integration and users can now talk to Almond via the Lovelace UI. + +You can run this standalone, as a hass.io add-on or via a version hosted in the cloud by Stanford. + +

Short description of what Almond is.Short description of what Almond is.

+ +For more information, check [the announcement blog](/blog/2019/11/20/privacy-focused-voice-assistant/). + +### Ada, voice assistant powered by Home Assistant + +We have introduced a new project called Ada. Ada is a voice assistant that outsources all processing to the speech-to-text (new!), conversation and text-to-speech integrations in Home Assistant. You can pick your own providers for each integration. + +You can run this standalone or as a hass.io add-on. + +For more information, check [the announcement blog](/blog/2019/11/20/privacy-focused-voice-assistant/). + +[Source code](https://github.com/home-assistant/ada). + +

Architectural overview of Ada.Architectural overview of Ada.

+ +
+ +
+ +### Voice for Home Assistant Cloud + +Nabu Casa has introduced a new beta service providing speech-to-text and text-to-speech services to Home Assistant Cloud subscribers powered by Azure Cognitive Services. This will make it easy to get started with Ada or use it to send spoken notifications to speakers in your house. + +### Z-Wave + +We've been working with the Open Z-Wave developers on a new solution that will allow us to migrate to the new Open Z-Wave 1.6 relase and make it easier to stay up to date in the future. + +We're expecting to launch an MVP soon. This effort is driven by [@cgarwood](https://github.com/cgarwood). + +[Source code](https://github.com/cgarwood/python-openzwave-mqtt) + +### Frenck is joining Nabu Casa + +Frenck will be joining Nabu Casa as the fourth employee working full-time on Home Assistant. + +_"If I could describe my dream job, it would be being a full-time open source developer; Helping the world to become a better place by dedicating my time & knowledge to create & innovate open source software solutions. Allowing everybody on this earth the privilege to enjoy those things for free."_    – Franck Nijhof (Frenck) on [frenck.dev](https://frenck.dev/donate/) + +### Create automations using your voice + +We have been able to leverage Almond's neural network to **allow users to generate automations using natural language**. This means that you can now create an automation by telling Home Assistant to "turn on the lights when I get home" and we'll convert it to the appropriate automation in Home Assistant. + +[Source code](https://github.com/NabuCasa/thingtalk-hass-generator/). + +

+Screenshot of the create automation dialog. +Screenshot of the create automation dialog. +

+ +### Share the love ❤️ + +Home Assistant is the community and the community is Home Assistant. Help us spread the Home Assistant love, help others and share your knowledge on YouTube, blogs and other media. diff --git a/source/_posts/2019-12-01-home-assistant-for-everyone.markdown b/source/_posts/2019-12-01-home-assistant-for-everyone.markdown new file mode 100644 index 00000000000..2718d831b78 --- /dev/null +++ b/source/_posts/2019-12-01-home-assistant-for-everyone.markdown @@ -0,0 +1,48 @@ +--- +title: "Home Assistant for everyone" +description: "Make it easier. We're making Home Assistant easier to use, configure and contribute to." +date: 2019-12-01 00:01:00 +date_formatted: "December 1, 2019" +author: Paulus Schoutsen +author_twitter: balloob +categories: Community +og_image: /images/blog/2019-12-home-assistant-for-everyone/social.png +--- + +With Home Assistant, we want to help people live their life, while helping out in the background. I wrote about this in 2016 when I detailed my view on the [perfect home automation](https://www.home-assistant.io/blog/2016/01/19/perfect-home-automation/). We've been working towards this ever since. + +In 2019 we focused on "Make It Easier" ([see State of the Union for details](https://youtu.be/tc17q1Zn0Xs?t=1271)). We made Home Assistant easier to use, configure and to contribute to. Every time we make it easier, we become accessible to more people. There is still a ton we can make easier, and that's great because 2020 is around the corner and we need things to do :-) + +During Thanksgiving, Home Assistant made it to #1 on [Hacker News](https://news.ycombinator.com/item?id=21665125), a social news website focusing on computer science and entrepreneurship. The comments had lots of users chiming in with their positive experiences. One comment stood out to me and I wanted to share it: + +
+Just wanted to say that my life as a quadriplegic would be 13.4 million percent more crap without Home Assistant. Being quadriplegic and having something as open as Home Assistant is absolutely amazing, I have automated absolutely everything in the house and home assistant has not choked once. +

+Couple that with one of the friendliest communities for newbies I have come across in a long time and you have something really awesome. +

+I've been using it for a couple of years, I have tried all the other open source alternatives but nothing really comes close for me. I'm actually fiddling with my installation right now as it were. +

+I cannot plug my phone in to charge it up myself obviously, so I am writing a little automation that will check who is in the house and announce through the speakers my phone needs charging up or send them a text message if I have their phone number when my mobile phone charge gets below 20%. +

+Totally cool beanz and I am totally serious about how much easier this makes my life as a quadriplegic. +

+– escapologybb on Hacker News +
+ +This is just great. I love how this user can live a more comfortable life. It's really motivating. + +I also really like the first reply to the above comment. It highlights how we tend to judge things from our perspective and that our perspective might not paint the whole picture. + +
+Thanks for your comment. I came to this discussion with my blinkers on, so to speak, pre -judging how I need less automation in my world, and you give concrete evidence how someone's "meh" can be balanced by untold advantages (13.4 million, in fact) of such a system. +

+Thanks for making me eat humble pie and broadening my views. Sometimes more tech is helpful indeed. +

+Ps: The way you're applying it is creative and awesome too! +

+– cmroanirgo on Hacker News +
+ +As Home Assistant grows and evolves, let's make sure we don't judge the additions and changes based on just our own perspective and needs. Think about how it can help other (potential) Home Assistant users. It's our goal that a privacy-focused home automation platform is within everyone's reach, regardless of background, location or income. + +Paulus diff --git a/source/_posts/2019-12-03-sonos-shutting-down-local-voice-option-snips.markdown b/source/_posts/2019-12-03-sonos-shutting-down-local-voice-option-snips.markdown new file mode 100644 index 00000000000..4c8f80e3742 --- /dev/null +++ b/source/_posts/2019-12-03-sonos-shutting-down-local-voice-option-snips.markdown @@ -0,0 +1,52 @@ +--- +title: "Sonos shutting down local voice option Snips" +description: "After acquiring Snips, Sonos has decided to shut down the option to build local voice control." +date: 2019-12-03 00:01:00 +date_formatted: "December 3, 2019" +author: Paulus Schoutsen +author_twitter: balloob +categories: Public-Service-Announcement +og_image: /images/blog/2019-12-sonos-shutting-down-snips/social.png +--- + +It's that time of the year. The time when it's cold outside, it's cozy and warm inside, we're spending time with friends and family, and time for big companies to drop local accessible technology ([2015](/blog/2015/12/12/philips-hue-blocks-3rd-party-bulbs/), [2018](/blog/2018/12/17/logitech-harmony-removes-local-api/)). + +On November 20, 2019, Sonos [announced](https://investors.sonos.com/news-and-events/investor-news/latest-news/2019/Sonos-Announces-Acquisition-of-Snips/default.aspx) that they had acquired Snips earlier that month. Snips was a popular option for people to get local voice control in their homes. + +In the same month of the acquisition, Snips has announced that they are shutting down their console for users. The console allows users to train their system with custom sentences and intents. By shutting this down, it is no longer possible to make any changes to your local Snips system. + +

+ Screenshot of the post to announce shutting it down. + Announcement on the Snips forums. +

+ +What is actually worse, is that it looks like they are not shutting down their console completely, they are just shutting down public access. They could support users, but actively decide not to do so. It seems like they don't want us to know this, as they have edited their announcement on the forums. + +

+ Edit history shows they removed the word public access. + Edit history of the announcement shows they removed the words "public access to". +

+ +Voice control, powered by Snips, might show up in future Sonos devices. However, Sonos is not accessible to many people out there. The customizations will also be lost according to Patrick Spence, the CEO of Sonos, in an [interview with Variety](https://variety.com/2019/digital/news/sonos-snips-acquisition-q4-2019-earnings-1203410771/): + +
+“We are not building an ask-anything assistant,” Spence said. Instead, the goal of the acquisition was to build something a lot more music-specific. +
+ +## Bad move by Sonos + +A very bad move by Sonos. This is not a world in which it's Sonos vs. Google vs. Amazon. It is not even a fight just about smart speakers, it is a fight about if the audio system in our house is local and private, or not. + +By taking Snips off the table, there is one less option for local voice control. These users will now look for alternatives, which will include cloud options. + +Technology often ends up with a winner takes all. Sonos has just made a better case for its competitors, [again](https://jpmens.net/2018/09/11/upset-at-sonos/). + +## What the local home needs + +Audio is an essential part of our homes. We want to play music, be notified of events (i.e., doorbell) and we want to be able to use our voice to control our devices. A system that provides this, needs to run locally and be accessible via an open API. + +Sonos could be this system, they have great hardware that works together nicely. However, they are keeping their API tightly controlled, making it impossible for a user to build on top of it. + +It is a choice. They could keep the Snips console open to the public, open up their modern local API and embrace the community that cares about local control. Nevertheless, they choose to work against it. + +So Sonos, why are you? diff --git a/source/_redirects b/source/_redirects index 508361b8762..5908e04daa6 100644 --- a/source/_redirects +++ b/source/_redirects @@ -2054,3 +2054,20 @@ # Breaking changes /integrations/switch.pca /integrations/elv + +# App documentation +/ios/whats-new https://companion.home-assistant.io/getting_started/index.html +/docs/ecosystem/ios/ https://companion.home-assistant.io/ +/docs/ecosystem/ios/devices_file https://companion.home-assistant.io/ +/docs/ecosystem/ios/integration https://companion.home-assistant.io/integrations/ +/docs/ecosystem/ios/location https://companion.home-assistant.io/core/location +/docs/ecosystem/ios/notifications https://companion.home-assistant.io/notifications/basic +/docs/ecosystem/ios/notifications/actions https://companion.home-assistant.io/notifications/actionable +/docs/ecosystem/ios/notifications/architecture https://companion.home-assistant.io/notifications/details +/docs/ecosystem/ios/notifications/attachments https://companion.home-assistant.io/notifications/attachments +/docs/ecosystem/ios/notifications/basic https://companion.home-assistant.io/notifications/basic +/docs/ecosystem/ios/notifications/content_extensions https://companion.home-assistant.io/notifications/dynamic-content +/docs/ecosystem/ios/notifications/privacy_security_rate_limits https://companion.home-assistant.io/notifications/details +/docs/ecosystem/ios/notifications/requesting_location_updates https://companion.home-assistant.io/notifications/location +/docs/ecosystem/ios/notifications/sounds https://companion.home-assistant.io/notifications/sounds +/ecosystem/ios/notifications https://companion.home-assistant.io/en/getting_started/migration#5---known-issues diff --git a/source/developers/credits.markdown b/source/developers/credits.markdown index 4769d6ad038..24c8b831c0b 100644 --- a/source/developers/credits.markdown +++ b/source/developers/credits.markdown @@ -1,40 +1,52 @@ --- title: "Credits" description: "Credits for the developers who contributed to Home Assistant." +date: 2019-11-17, 13:17:30 +0000 --- This page contains a list of people who have contributed in one way or another to Home Assistant. Hover over a username to see their contributions. ### Author -- [Paulus Schoutsen (@balloob)](https://github.com/balloob "9373 total commits to the Home Assistant orga: -5041 commits to home-assistant -1886 commits to home-assistant.io -1597 commits to home-assistant-polymer +- [Paulus Schoutsen (@balloob)](https://github.com/balloob "10899 total commits to the Home Assistant orga: +5707 commits to home-assistant +2135 commits to home-assistant.io +2016 commits to home-assistant-polymer 237 commits to home-assistant-js -174 commits to developers.home-assistant -135 commits to netdisco -126 commits to home-assistant-js-websocket -45 commits to hass-release -23 commits to LabelBot +235 commits to developers.home-assistant +151 commits to home-assistant-js-websocket +136 commits to netdisco +50 commits to hass-release +31 commits to probot-home-assistant +26 commits to LabelBot +26 commits to alerts.home-assistant.io 20 commits to data.home-assistant -15 commits to home-assistant-assets -11 commits to example-custom-config +18 commits to hassio-wheels +16 commits to home-assistant-assets 11 commits to hassio +11 commits to example-custom-config 9 commits to hbmqtt-auth-home-assistant 7 commits to micropython-home-assistant +7 commits to hassio-homeassistant 7 commits to custom-panel-starter-kit-react -5 commits to home-assistant-notebooks -5 commits to ui-schema +6 commits to home-assistant-notebooks +6 commits to ui-schema 4 commits to hassio-addons +3 commits to architecture 3 commits to hassio-build -2 commits to lambda-home-assistant-github +3 commits to hassio-cli 2 commits to home-assistant-iOS +2 commits to lambda-home-assistant-github 2 commits to issue-bot 2 commits to hassio-addons-example +2 commits to issue-maker 1 commit to warrant -1 commit to architecture 1 commit to feedparser +1 commit to ci-azure +1 commit to hassio-opencv +1 commit to custom-components-wheels +1 commit to codeowners-mention +1 commit to ada 1 commit to open-zwave ") @@ -45,17 +57,26 @@ This page contains a list of people who have contributed in one way or another t - [15goudreau (@15goudreau)](https://github.com/15goudreau "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [1DontEx1st (@1DontEx1st)](https://github.com/1DontEx1st "8 total commits to the Home Assistant orga: +7 commits to home-assistant.io +1 commit to developers.home-assistant +") - [333ryan18 (@333ryan18)](https://github.com/333ryan18 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [4lloyd (@4lloyd)](https://github.com/4lloyd "1 total commits to the Home Assistant orga: +- [4lloyd (@4lloyd)](https://github.com/4lloyd "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [5mauggy (@5mauggy)](https://github.com/5mauggy "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [7even (@hwikene)](https://github.com/hwikene "1 total commits to the Home Assistant orga: +- [7even (@hwikene)](https://github.com/hwikene "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer +1 commit to home-assistant.io ") -- [9R (@9R)](https://github.com/9R "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [9R (@9R)](https://github.com/9R "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io ") - [A Gomes (@ambgomes)](https://github.com/ambgomes "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -66,8 +87,8 @@ This page contains a list of people who have contributed in one way or another t - [a\-andre (@a-andre)](https://github.com/a-andre "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") -- [a\-r\-j\-a\-n (@a-r-j-a-n)](https://github.com/a-r-j-a-n "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [a\-r\-j\-a\-n (@a-r-j-a-n)](https://github.com/a-r-j-a-n "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io ") - [aaamoeder (@aaamoeder)](https://github.com/aaamoeder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -78,12 +99,17 @@ This page contains a list of people who have contributed in one way or another t - [aapjeisbaas (@aapjeisbaas)](https://github.com/aapjeisbaas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Aaron (@xeanhort)](https://github.com/xeanhort "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Aaron (@mcd1992)](https://github.com/mcd1992 "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") -- [Aaron Bach (@bachya)](https://github.com/bachya "182 total commits to the Home Assistant orga: -141 commits to home-assistant -40 commits to home-assistant.io +- [Aaron Bach (@bachya)](https://github.com/bachya "294 total commits to the Home Assistant orga: +237 commits to home-assistant +53 commits to home-assistant.io +2 commits to alerts.home-assistant.io +1 commit to architecture 1 commit to people ") - [Aaron Godfrey (@boralyl)](https://github.com/boralyl "2 total commits to the Home Assistant orga: @@ -102,9 +128,6 @@ This page contains a list of people who have contributed in one way or another t - [Aaron Parecki (@aaronpk)](https://github.com/aaronpk "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Aaron Pica (@xeanhort)](https://github.com/xeanhort "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") - [Aaron Polley (@xarnze)](https://github.com/xarnze "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -113,6 +136,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to open-zwave 1 commit to home-assistant.io ") +- [AaronDavidSchneider (@AaronDavidSchneider)](https://github.com/AaronDavidSchneider "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [aaronpace (@aaronpace)](https://github.com/aaronpace "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -126,18 +152,22 @@ This page contains a list of people who have contributed in one way or another t - [ABOTlegacy (@ABOTlegacy)](https://github.com/ABOTlegacy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Abílio Costa (@abmantis)](https://github.com/abmantis "42 total commits to the Home Assistant orga: -26 commits to home-assistant -12 commits to home-assistant.io +- [Abílio Costa (@abmantis)](https://github.com/abmantis "47 total commits to the Home Assistant orga: +29 commits to home-assistant +14 commits to home-assistant.io 2 commits to home-assistant-polymer -1 commit to home-assistant-js-websocket 1 commit to netdisco +1 commit to home-assistant-js-websocket ") - [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "19 total commits to the Home Assistant orga: -17 commits to home-assistant.io +- [ActuallyRuben (@ActuallyRuben)](https://github.com/ActuallyRuben "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "28 total commits to the Home Assistant orga: +26 commits to home-assistant.io 2 commits to home-assistant ") - [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the Home Assistant orga: @@ -182,8 +212,8 @@ This page contains a list of people who have contributed in one way or another t 3 commits to developers.home-assistant 2 commits to python-openzwave 1 commit to homebridge-homeassistant -1 commit to open-zwave 1 commit to people +1 commit to open-zwave ") - [Adam Reznechek (@adreznec)](https://github.com/adreznec "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -194,6 +224,9 @@ This page contains a list of people who have contributed in one way or another t - [Adam Stone (@astone123)](https://github.com/astone123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [adamgreg (@adamgreg)](https://github.com/adamgreg "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [adamomg (@adamomg)](https://github.com/adamomg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -206,14 +239,21 @@ This page contains a list of people who have contributed in one way or another t - [Addo Solutions (@AddoSolutions)](https://github.com/AddoSolutions "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Adduq (@Adduq)](https://github.com/Adduq "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [adebeun (@adebeun)](https://github.com/adebeun "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [ADeeds (@ADeeds)](https://github.com/ADeeds "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [adipose (@adipose)](https://github.com/adipose "2 total commits to the Home Assistant orga: -1 commit to appdaemon +- [AdighaLogic (@AdighaLogic)](https://github.com/AdighaLogic "7 total commits to the Home Assistant orga: +6 commits to hassio-addons +1 commit to home-assistant.io +") +- [adipose (@adipose)](https://github.com/adipose "3 total commits to the Home Assistant orga: +2 commits to appdaemon 1 commit to hassio-addons ") - [AdithyanI (@AdithyanI)](https://github.com/AdithyanI "1 total commits to the Home Assistant orga: @@ -222,8 +262,9 @@ This page contains a list of people who have contributed in one way or another t - [Aditya Shevade (@adibis)](https://github.com/adibis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Adriaan Peeters (@apeeters)](https://github.com/apeeters "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Adriaan Peeters (@apeeters)](https://github.com/apeeters "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to home-assistant ") - [Adrian Campos (@adriancampos)](https://github.com/adriancampos "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -237,6 +278,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant-polymer 1 commit to home-assistant.io ") +- [Adrian Schröter (@adrianschroeter)](https://github.com/adrianschroeter "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Adrian Scillato (@ascillato)](https://github.com/ascillato "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -249,6 +293,9 @@ This page contains a list of people who have contributed in one way or another t - [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Adrien Foulon (@Tofandel)](https://github.com/Tofandel "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Adrián López (@adrianlzt)](https://github.com/adrianlzt "8 total commits to the Home Assistant orga: 6 commits to home-assistant.io 2 commits to home-assistant @@ -271,22 +318,38 @@ This page contains a list of people who have contributed in one way or another t - [aguedob (@aguedob)](https://github.com/aguedob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ahertz (@ahertz)](https://github.com/ahertz "3 total commits to the Home Assistant orga: +2 commits to open-zwave +1 commit to home-assistant +") - [ahobsonsayers (@ahobsonsayers)](https://github.com/ahobsonsayers "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [aidbish (@aidbish)](https://github.com/aidbish "13 total commits to the Home Assistant orga: +11 commits to home-assistant.io +2 commits to home-assistant +") - [aisbergde (@aisbergde)](https://github.com/aisbergde "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [ajayjohn (@ajayjohn)](https://github.com/ajayjohn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ajobbins (@ajobbins)](https://github.com/ajobbins "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [akasma74 (@akasma74)](https://github.com/akasma74 "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [akargl (@akargl)](https://github.com/akargl "2 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +1 commit to developers.home-assistant ") -- [akloeckner (@akloeckner)](https://github.com/akloeckner "13 total commits to the Home Assistant orga: -7 commits to home-assistant.io -6 commits to home-assistant +- [akasma74 (@akasma74)](https://github.com/akasma74 "20 total commits to the Home Assistant orga: +18 commits to home-assistant.io +2 commits to home-assistant +") +- [akloeckner (@akloeckner)](https://github.com/akloeckner "15 total commits to the Home Assistant orga: +8 commits to home-assistant.io +7 commits to home-assistant ") - [Akriti Chadda (@akriticg)](https://github.com/akriticg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -294,6 +357,12 @@ This page contains a list of people who have contributed in one way or another t - [Akın Ömeroğlu (@akinomeroglu)](https://github.com/akinomeroglu "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Alain Tavan (@alain57)](https://github.com/alain57 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Alain Turbide (@Dilbert66)](https://github.com/Dilbert66 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the Home Assistant orga: 4 commits to home-assistant 1 commit to home-assistant.io @@ -302,23 +371,31 @@ This page contains a list of people who have contributed in one way or another t 17 commits to home-assistant 4 commits to home-assistant.io ") -- [Alan Tse (@alandtse)](https://github.com/alandtse "7 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Alan Tse (@alandtse)](https://github.com/alandtse "10 total commits to the Home Assistant orga: +6 commits to home-assistant 2 commits to home-assistant.io 1 commit to developers.home-assistant +1 commit to custom-components-wheels ") - [Alasdair Nicol (@alasdairnicol)](https://github.com/alasdairnicol "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Alastair D'Silva (@deece)](https://github.com/deece "5 total commits to the Home Assistant orga: 2 commits to hassos -1 commit to hassio-build -1 commit to hassio-homeassistant 1 commit to hassio +1 commit to hassio-homeassistant +1 commit to hassio-build +") +- [Alba Mendez (@jmendeth)](https://github.com/jmendeth "1 total commits to the Home Assistant orga: +1 commit to home-assistant-cli ") - [Albatross (@DyingAlbatross)](https://github.com/DyingAlbatross "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Albert Gouws (@KiLLeRRaT)](https://github.com/KiLLeRRaT "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Albert Lee (@trisk)](https://github.com/trisk "20 total commits to the Home Assistant orga: 12 commits to home-assistant 8 commits to home-assistant.io @@ -329,11 +406,17 @@ This page contains a list of people who have contributed in one way or another t - [AlCalzone (@AlCalzone)](https://github.com/AlCalzone "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Alec Rust (@AlecRust)](https://github.com/AlecRust "11 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [Alec Rust (@AlecRust)](https://github.com/AlecRust "21 total commits to the Home Assistant orga: +15 commits to home-assistant.io +2 commits to companion.home-assistant 1 commit to home-assistant-polymer 1 commit to hassio-addons 1 commit to developers.home-assistant +1 commit to alerts.home-assistant.io +") +- [Aleix Murtra (@alemuro)](https://github.com/alemuro "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io ") - [Aleksandar Todorović \(r3bl\) (@aleksandar-todorovic)](https://github.com/aleksandar-todorovic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -357,29 +440,42 @@ This page contains a list of people who have contributed in one way or another t - [Alessandro Staniscia (@Odyno)](https://github.com/Odyno "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") -- [Alex (@asbach)](https://github.com/asbach "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Alessio Margelli (@alex9446)](https://github.com/alex9446 "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io 1 commit to home-assistant ") -- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the Home Assistant orga: +- [Alex (@shr00mie)](https://github.com/shr00mie "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Alex (@asbach)](https://github.com/asbach "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to home-assistant ") - [Alex (@MungoRae)](https://github.com/MungoRae "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Alex (@nnmalex)](https://github.com/nnmalex "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alex (@alexanderVonBergner)](https://github.com/alexanderVonBergner "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alex Bahm (@techfreek)](https://github.com/techfreek "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Alex Bahm (@techfreek)](https://github.com/techfreek "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [Alex Barcelo (@alexbarcelo)](https://github.com/alexbarcelo "8 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to hassio-addons 1 commit to home-assistant ") -- [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Alex Fung (@paraselene)](https://github.com/paraselene "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Alex Harvey (@infamy)](https://github.com/infamy "29 total commits to the Home Assistant orga: 14 commits to home-assistant @@ -389,9 +485,6 @@ This page contains a list of people who have contributed in one way or another t - [Alex Lauerman (@alexlauerman)](https://github.com/alexlauerman "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Alex Macleod (@Alexendoo)](https://github.com/Alexendoo "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant @@ -399,8 +492,8 @@ This page contains a list of people who have contributed in one way or another t - [Alex MF (@adsmf)](https://github.com/adsmf "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [Alex Molodoj (@Molodax)](https://github.com/Molodax "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [Alex Molodoj (@Molodax)](https://github.com/Molodax "9 total commits to the Home Assistant orga: +9 commits to home-assistant.io ") - [Alex Muller (@alexmuller)](https://github.com/alexmuller "1 total commits to the Home Assistant orga: 1 commit to gu-who @@ -408,20 +501,30 @@ This page contains a list of people who have contributed in one way or another t - [Alex Osadchyy (@aosadchyy)](https://github.com/aosadchyy "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Alex Popoutsis (@apop880)](https://github.com/apop880 "4 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +2 commits to home-assistant.io +") +- [Alex S (@asleeis)](https://github.com/asleeis "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Alex S\. Glomsaas (@xlexi)](https://github.com/xlexi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Alex Tzonkov (@attzonko)](https://github.com/attzonko "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Alex X (@AlexxIT)](https://github.com/AlexxIT "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alex1234 (@Alex1234)](https://github.com/Alex1234 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [alex9446 (@alex9446)](https://github.com/alex9446 "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Alexander (@ualex73)](https://github.com/ualex73 "162 total commits to the Home Assistant orga: +- [Alexander (@ualex73)](https://github.com/ualex73 "164 total commits to the Home Assistant orga: 162 commits to open-zwave +1 commit to home-assistant +1 commit to home-assistant.io ") - [Alexander (@vtochq)](https://github.com/vtochq "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -460,11 +563,17 @@ This page contains a list of people who have contributed in one way or another t - [Alexandre Prates Dias (@pratesbh)](https://github.com/pratesbh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "36 total commits to the Home Assistant orga: -34 commits to home-assistant +- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "72 total commits to the Home Assistant orga: +70 commits to home-assistant 1 commit to home-assistant-polymer 1 commit to people ") +- [Alexey Pristavkin (@Pristavkin)](https://github.com/Pristavkin "1 total commits to the Home Assistant orga: +1 commit to hassos +") +- [Alexey Savin (@savin-alexey)](https://github.com/savin-alexey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alexis Iglauer (@ax42)](https://github.com/ax42 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -493,11 +602,8 @@ This page contains a list of people who have contributed in one way or another t - [Allan Klein (@allanak)](https://github.com/allanak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Allan Persson \| Marathon Pepe (@allanpersson)](https://github.com/allanpersson "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io -") -- [allixx (@allixx)](https://github.com/allixx "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Allan Persson (@allanpersson)](https://github.com/allanpersson "9 total commits to the Home Assistant orga: +9 commits to home-assistant.io ") - [allserv (@allserv)](https://github.com/allserv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -505,9 +611,12 @@ This page contains a list of people who have contributed in one way or another t - [Almost Engineer (@almostengr)](https://github.com/almostengr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "176 total commits to the Home Assistant orga: -99 commits to home-assistant.io -63 commits to home-assistant +- [almostserious (@almostserious)](https://github.com/almostserious "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "185 total commits to the Home Assistant orga: +101 commits to home-assistant.io +70 commits to home-assistant 7 commits to home-assistant-polymer 3 commits to developers.home-assistant 1 commit to hassbian-scripts @@ -515,9 +624,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons 1 commit to people ") +- [Alpha Tango (@alphatangoalpha)](https://github.com/alphatangoalpha "2 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to home-assistant.io +") - [Alvi Mahadi (@alvi2496)](https://github.com/alvi2496 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [ambarkhuizen (@ambarkhuizen)](https://github.com/ambarkhuizen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [amigian74 (@amigian74)](https://github.com/amigian74 "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -541,8 +657,8 @@ This page contains a list of people who have contributed in one way or another t - [Anders Einar Hilden (@Kagee)](https://github.com/Kagee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Anders Fogh Eriksen (@Fogh)](https://github.com/Fogh "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Anders Fogh Eriksen (@Fogh)](https://github.com/Fogh "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Anders Gjendem (@agjendem)](https://github.com/agjendem "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -550,13 +666,14 @@ This page contains a list of people who have contributed in one way or another t - [Anders Ljusberg (@andlju)](https://github.com/andlju "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "342 total commits to the Home Assistant orga: -279 commits to home-assistant -51 commits to home-assistant.io +- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "410 total commits to the Home Assistant orga: +331 commits to home-assistant +65 commits to home-assistant.io 6 commits to pyharmony 3 commits to home-assistant-polymer 2 commits to home-assistant-iOS -1 commit to developers.home-assistant +2 commits to developers.home-assistant +1 commit to people ") - [Anders Norås (@anoras)](https://github.com/anoras "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -564,9 +681,13 @@ This page contains a list of people who have contributed in one way or another t - [andig (@andig)](https://github.com/andig "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") -- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "16 total commits to the Home Assistant orga: -10 commits to home-assistant -6 commits to home-assistant.io +- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "33 total commits to the Home Assistant orga: +20 commits to home-assistant +13 commits to home-assistant.io +") +- [Andre Richter (@andre-richter)](https://github.com/andre-richter "6 total commits to the Home Assistant orga: +5 commits to home-assistant +1 commit to home-assistant.io ") - [Andrea (@BubiDevs)](https://github.com/BubiDevs "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -578,6 +699,13 @@ This page contains a list of people who have contributed in one way or another t - [Andrea Cioccarelli (@AndreaCioccarelli)](https://github.com/AndreaCioccarelli "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Andrea Donno (@adonno)](https://github.com/adonno "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to hassio-addons +") +- [Andrea G (@Muffo)](https://github.com/Muffo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andrea Tosatto (@andtos90)](https://github.com/andtos90 "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -655,20 +783,24 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") -- [Andrew (@a005)](https://github.com/a005 "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [Andrew (@adpriebe)](https://github.com/adpriebe "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Andrew Chatham (@achatham)](https://github.com/achatham "1 total commits to the Home Assistant orga: +- [Andrew (@a005)](https://github.com/a005 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "1276 total commits to the Home Assistant orga: -1138 commits to appdaemon +- [Andrew Beveridge (@beveradb)](https://github.com/beveradb "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Andrew Chatham (@achatham)](https://github.com/achatham "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") +- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "1533 total commits to the Home Assistant orga: +1394 commits to appdaemon 88 commits to hadashboard -28 commits to scenegen +29 commits to scenegen 22 commits to home-assistant.io ") - [Andrew Fahrenholtz (@PlasmaEye)](https://github.com/PlasmaEye "1 total commits to the Home Assistant orga: @@ -689,23 +821,35 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Andrew Loe (@loe)](https://github.com/loe "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Andrew Loe (@loe)](https://github.com/loe "3 total commits to the Home Assistant orga: +2 commits to home-assistant 1 commit to home-assistant.io ") +- [Andrew Onyshchuk (@oandrew)](https://github.com/oandrew "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Andrew Patton (@acusti)](https://github.com/acusti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Andrew Riley (@andrewcr7)](https://github.com/andrewcr7 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "75 total commits to the Home Assistant orga: -47 commits to home-assistant -24 commits to home-assistant.io -2 commits to developers.home-assistant +- [Andrew Rowson (@growse)](https://github.com/growse "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "127 total commits to the Home Assistant orga: +91 commits to home-assistant +31 commits to home-assistant.io +3 commits to developers.home-assistant 1 commit to netdisco 1 commit to people ") +- [Andrew Scheller (@lurch)](https://github.com/lurch "1 total commits to the Home Assistant orga: +1 commit to pi-gen +") +- [Andrew Simmons (@agsimmons)](https://github.com/agsimmons "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andrew Smith (@andrewmichaelsmith)](https://github.com/andrewmichaelsmith "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") @@ -722,9 +866,13 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Wedgbury (@sconemad)](https://github.com/sconemad "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") -- [Andrew Williams (@nikdoof)](https://github.com/nikdoof "1 total commits to the Home Assistant orga: +- [Andrew Williams (@nikdoof)](https://github.com/nikdoof "5 total commits to the Home Assistant orga: +4 commits to scenegen 1 commit to home-assistant ") +- [Andrew Wong (@featherbear)](https://github.com/featherbear "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andrew Ying (@andrewying)](https://github.com/andrewying "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -745,14 +893,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant-js-websocket 1 commit to people ") -- [Andrey "Limych" Khrolenok (@Limych)](https://github.com/Limych "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Andrey "Limych" Khrolenok (@Limych)](https://github.com/Limych "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant ") -- [Andrey Jr\. Melnikov (@LynxChaus)](https://github.com/LynxChaus "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") -- [Andrey Kupreychik (@foxel)](https://github.com/foxel "20 total commits to the Home Assistant orga: -13 commits to home-assistant +- [Andrey Kupreychik (@foxel)](https://github.com/foxel "24 total commits to the Home Assistant orga: +17 commits to home-assistant 7 commits to home-assistant.io ") - [Andrey Mikhaylov \(lolmaus\) (@lolmaus)](https://github.com/lolmaus "1 total commits to the Home Assistant orga: @@ -769,15 +915,25 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to home-assistant ") +- [András Rutkai (@rutkai)](https://github.com/rutkai "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") - [André Hahn (@ahahn94)](https://github.com/ahahn94 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Andréas Lundgren (@adevade)](https://github.com/adevade "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Andy Castille (@Klikini)](https://github.com/Klikini "20 total commits to the Home Assistant orga: -12 commits to home-assistant -8 commits to home-assistant.io +- [Andy Castille (@Klikini)](https://github.com/Klikini "22 total commits to the Home Assistant orga: +13 commits to home-assistant +9 commits to home-assistant.io +") +- [Andy Cordill (@acordill)](https://github.com/acordill "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Andy Kittner (@andkit)](https://github.com/andkit "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [Andy Lindeman (@alindeman)](https://github.com/alindeman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -802,6 +958,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Angie1313 (@Angie1313)](https://github.com/Angie1313 "2 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +") +- [Anglac (@Anglac)](https://github.com/Anglac "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Anna Prosvetova (@aprosvetova)](https://github.com/aprosvetova "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -811,6 +973,9 @@ This page contains a list of people who have contributed in one way or another t - [anotherthomas (@anotherthomas)](https://github.com/anotherthomas "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") +- [anrudolph (@anrudolph)](https://github.com/anrudolph "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Anthony Arnaud (@aarnaud)](https://github.com/aarnaud "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -826,10 +991,11 @@ This page contains a list of people who have contributed in one way or another t - [antihate8 (@antihate8)](https://github.com/antihate8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Antoine Bertin (@Diaoul)](https://github.com/Diaoul "5 total commits to the Home Assistant orga: +- [Antoine Bertin (@Diaoul)](https://github.com/Diaoul "7 total commits to the Home Assistant orga: +3 commits to home-assistant.io 2 commits to home-assistant -2 commits to home-assistant.io 1 commit to home-assistant-polymer +1 commit to hassio-addons ") - [Antoine GRÉA (@grea09)](https://github.com/grea09 "4 total commits to the Home Assistant orga: 3 commits to home-assistant @@ -838,6 +1004,9 @@ This page contains a list of people who have contributed in one way or another t - [Antoine Meillet (@inetAnt)](https://github.com/inetAnt "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Antoine Rahier (@Twanislas)](https://github.com/Twanislas "3 total commits to the Home Assistant orga: +3 commits to home-assistant-polymer +") - [Anton Babenko (@antonbabenko)](https://github.com/antonbabenko "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -862,13 +1031,19 @@ This page contains a list of people who have contributed in one way or another t - [Anton\-Juul\-Naber (@antonjuulnaber)](https://github.com/antonjuulnaber "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Antoni K (@antoni-k)](https://github.com/antoni-k "11 total commits to the Home Assistant orga: -10 commits to home-assistant.io +- [Antoni K (@antoni-k)](https://github.com/antoni-k "14 total commits to the Home Assistant orga: +13 commits to home-assistant.io 1 commit to hassbian-scripts ") +- [Antonio Larrosa (@antlarr)](https://github.com/antlarr "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Antonio Párraga Navarro (@aparraga)](https://github.com/aparraga "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Antonio Pérez (@skarcha)](https://github.com/skarcha "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Antony Messerli (@antonym)](https://github.com/antonym "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -890,19 +1065,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant-polymer 1 commit to home-assistant.io ") -- [apop880 (@apop880)](https://github.com/apop880 "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") -- [aquarium (@theaquarium)](https://github.com/theaquarium "4 total commits to the Home Assistant orga: +- [aquarium (@theaquarium)](https://github.com/theaquarium "6 total commits to the Home Assistant orga: +3 commits to home-assistant-polymer 3 commits to home-assistant.io -1 commit to home-assistant-polymer ") - [AR (@aleiphoenix)](https://github.com/aleiphoenix "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Aral Balkan (@aral)](https://github.com/aral "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [arcsur (@arcsur)](https://github.com/arcsur "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io @@ -918,6 +1087,9 @@ This page contains a list of people who have contributed in one way or another t - [arg0nik (@arg0nik)](https://github.com/arg0nik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ari (@arigit)](https://github.com/arigit "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Ari Lotter (@arilotter)](https://github.com/arilotter "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant @@ -925,9 +1097,9 @@ This page contains a list of people who have contributed in one way or another t - [aribarreto (@aribarreto)](https://github.com/aribarreto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [arigilder (@arigilder)](https://github.com/arigilder "6 total commits to the Home Assistant orga: -5 commits to home-assistant -1 commit to home-assistant.io +- [arigilder (@arigilder)](https://github.com/arigilder "8 total commits to the Home Assistant orga: +6 commits to home-assistant +2 commits to home-assistant.io ") - [arjenfvellinga (@arjenfvellinga)](https://github.com/arjenfvellinga "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -939,7 +1111,10 @@ This page contains a list of people who have contributed in one way or another t - [ArnoGit (@ArnoGit)](https://github.com/ArnoGit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [arraylabs (@arraylabs)](https://github.com/arraylabs "8 total commits to the Home Assistant orga: +- [Aron Hafner (@alonalon)](https://github.com/alonalon "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [ArrayLabs (@arraylabs)](https://github.com/arraylabs "8 total commits to the Home Assistant orga: 6 commits to home-assistant 2 commits to home-assistant.io ") @@ -949,8 +1124,9 @@ This page contains a list of people who have contributed in one way or another t - [arteck (@arteck)](https://github.com/arteck "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Artem (@ArtHome12)](https://github.com/ArtHome12 "2 total commits to the Home Assistant orga: +- [Artem (@ArtHome12)](https://github.com/ArtHome12 "3 total commits to the Home Assistant orga: 2 commits to developers.home-assistant +1 commit to home-assistant.io ") - [Artem Sydorenko (@Art3mS1d)](https://github.com/Art3mS1d "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -967,15 +1143,16 @@ This page contains a list of people who have contributed in one way or another t - [Arttu mahlakaarto (@amahlaka)](https://github.com/amahlaka "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [Arturo R\. (@jaquer)](https://github.com/jaquer "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [Artuto (@Artuto)](https://github.com/Artuto "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Arvind Prasanna (@aprasanna)](https://github.com/aprasanna "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [aschamberger (@aschamberger)](https://github.com/aschamberger "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [ash7777 (@ash7777)](https://github.com/ash7777 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -985,6 +1162,10 @@ This page contains a list of people who have contributed in one way or another t - [Ashton Campbell (@AshtonCampbell)](https://github.com/AshtonCampbell "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Askarov Rishat (@rishatik92)](https://github.com/rishatik92 "6 total commits to the Home Assistant orga: +3 commits to home-assistant +3 commits to home-assistant.io +") - [Assaf Inbal (@shmuelzon)](https://github.com/shmuelzon "12 total commits to the Home Assistant orga: 9 commits to homebridge-homeassistant 3 commits to home-assistant @@ -1018,18 +1199,19 @@ This page contains a list of people who have contributed in one way or another t - [Austin (@trainman419)](https://github.com/trainman419 "9 total commits to the Home Assistant orga: 9 commits to home-assistant ") -- [Austin Drummond (@adrum)](https://github.com/adrum "11 total commits to the Home Assistant orga: -6 commits to home-assistant.io -5 commits to home-assistant +- [Austin Drummond (@adrum)](https://github.com/adrum "20 total commits to the Home Assistant orga: +10 commits to home-assistant.io +10 commits to home-assistant +") +- [Austin Mroczek (@austinmroczek)](https://github.com/austinmroczek "11 total commits to the Home Assistant orga: +5 commits to home-assistant.io +4 commits to home-assistant +2 commits to open-zwave ") - [austinlg96 (@austinlg96)](https://github.com/austinlg96 "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [austinmroczek (@austinmroczek)](https://github.com/austinmroczek "5 total commits to the Home Assistant orga: -3 commits to home-assistant.io -2 commits to open-zwave -") - [Avi Schwab (@froboy)](https://github.com/froboy "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") @@ -1045,9 +1227,6 @@ This page contains a list of people who have contributed in one way or another t - [Axel (@axel8viii)](https://github.com/axel8viii "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Axel Burri (@digint)](https://github.com/digint "3 total commits to the Home Assistant orga: -3 commits to dehydrated -") - [ayatoy (@ayatoy)](https://github.com/ayatoy "1 total commits to the Home Assistant orga: 1 commit to feedparser ") @@ -1068,6 +1247,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to python-openzwave 1 commit to home-assistant ") +- [BackSlasher (@BackSlasher)](https://github.com/BackSlasher "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [badele (@badele)](https://github.com/badele "24 total commits to the Home Assistant orga: 22 commits to home-assistant 2 commits to home-assistant.io @@ -1078,12 +1260,19 @@ This page contains a list of people who have contributed in one way or another t - [Bakkoda (@Bakkoda)](https://github.com/Bakkoda "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Balazs Keresztury (@belidzs)](https://github.com/belidzs "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Balazs Keresztury (@belidzs)](https://github.com/belidzs "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Balazs Sandor (@sanyatuning)](https://github.com/sanyatuning "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [Balázs Suhajda (@suhajdab)](https://github.com/suhajdab "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Baptiste Candellier (@outadoc)](https://github.com/outadoc "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Baptiste Lecocq (@tiste)](https://github.com/tiste "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -1100,6 +1289,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to netdisco 2 commits to home-assistant.io ") +- [Barrysv (@Barrysv)](https://github.com/Barrysv "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Bart S (@zBart)](https://github.com/zBart "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -1111,10 +1303,21 @@ This page contains a list of people who have contributed in one way or another t - [Bartek Celary (@bcelary)](https://github.com/bcelary "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bartosz Fenski (@fenio)](https://github.com/fenio "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Baruch Rothkoff (@baruchiro)](https://github.com/baruchiro "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Bas (@basbl)](https://github.com/basbl "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Bas Nijholt (@basnijholt)](https://github.com/basnijholt "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to home-assistant +") - [Bas Schipper (@basschipper)](https://github.com/basschipper "10 total commits to the Home Assistant orga: 8 commits to home-assistant 2 commits to home-assistant.io @@ -1128,14 +1331,14 @@ This page contains a list of people who have contributed in one way or another t - [basst22778 (@basst22778)](https://github.com/basst22778 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [bastshoes (@bastshoes)](https://github.com/bastshoes "5 total commits to the Home Assistant orga: -2 commits to home-assistant +- [bastien (@cbastienbaron)](https://github.com/cbastienbaron "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [bastshoes (@bastshoes)](https://github.com/bastshoes "6 total commits to the Home Assistant orga: +3 commits to home-assistant 2 commits to home-assistant.io 1 commit to home-assistant-polymer ") -- [battistaar (@battistaar)](https://github.com/battistaar "1 total commits to the Home Assistant orga: -1 commit to homebridge-homeassistant -") - [Batári Balázs László (@bayi)](https://github.com/bayi "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -1143,9 +1346,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to home-assistant ") -- [Beat (@bdurrer)](https://github.com/bdurrer "16 total commits to the Home Assistant orga: -11 commits to home-assistant.io -4 commits to home-assistant +- [Beat (@bdurrer)](https://github.com/bdurrer "18 total commits to the Home Assistant orga: +12 commits to home-assistant.io +5 commits to home-assistant 1 commit to home-assistant-polymer ") - [Beau Breeden (@BeauBreeden)](https://github.com/BeauBreeden "1 total commits to the Home Assistant orga: @@ -1172,9 +1375,10 @@ This page contains a list of people who have contributed in one way or another t - [Ben (@unixben)](https://github.com/unixben "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Ben Bangert (@bbangert)](https://github.com/bbangert "6 total commits to the Home Assistant orga: +- [Ben Bangert (@bbangert)](https://github.com/bbangert "7 total commits to the Home Assistant orga: 4 commits to home-assistant 2 commits to home-assistant.io +1 commit to people ") - [Ben Bennett (@knobunc)](https://github.com/knobunc "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -1182,21 +1386,22 @@ This page contains a list of people who have contributed in one way or another t - [Ben Carlsson (@glacials)](https://github.com/glacials "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Ben Dews (@bendews)](https://github.com/bendews "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Ben Dews (@bendews)](https://github.com/bendews "5 total commits to the Home Assistant orga: +4 commits to home-assistant +1 commit to home-assistant.io ") - [Ben Doerr (@bendoerr)](https://github.com/bendoerr "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Ben Krajancic (@Fantasmos)](https://github.com/Fantasmos "1 total commits to the Home Assistant orga: +- [Ben Krajancic (@fantasmos)](https://github.com/fantasmos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ben Lebherz (@benleb)](https://github.com/benleb "14 total commits to the Home Assistant orga: +- [Ben Lebherz (@benleb)](https://github.com/benleb "23 total commits to the Home Assistant orga: +11 commits to appdaemon +5 commits to home-assistant 4 commits to home-assistant.io -4 commits to home-assistant -3 commits to appdaemon -1 commit to home-assistant-notebooks 1 commit to home-assistant-cli +1 commit to home-assistant-notebooks 1 commit to developers.home-assistant ") - [Ben Menchaca (@bmenchaca)](https://github.com/bmenchaca "5 total commits to the Home Assistant orga: @@ -1221,6 +1426,9 @@ This page contains a list of people who have contributed in one way or another t - [Ben Schattinger (@lights0123)](https://github.com/lights0123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Ben Spoon (@spoonben)](https://github.com/spoonben "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ben Thomas (@wazoo)](https://github.com/wazoo "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") @@ -1231,6 +1439,10 @@ This page contains a list of people who have contributed in one way or another t - [ben423423n32j14e (@ben423423n32j14e)](https://github.com/ben423423n32j14e "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Bendik Brenne (@bendikrb)](https://github.com/bendikrb "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Benedict Aas (@Shou)](https://github.com/Shou "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to home-assistant @@ -1238,20 +1450,20 @@ This page contains a list of people who have contributed in one way or another t - [Benedikt Böhm (@hollow)](https://github.com/hollow "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Benjamin Albrecht (@beelbrecht)](https://github.com/beelbrecht "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [Benjamin Bryan (@ahnooie)](https://github.com/ahnooie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Benjamin Dos Santos (@bdossantos)](https://github.com/bdossantos "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [Benjamin Parzella (@bparzella)](https://github.com/bparzella "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") -- [Benji (@bbbenji)](https://github.com/bbbenji "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Benjamin Richter (@kilrogg)](https://github.com/kilrogg "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Benjamin Staffin (@benley)](https://github.com/benley "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Benji (@bbbenji)](https://github.com/bbbenji "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Bennett Kanuka (@bkanuka)](https://github.com/bkanuka "8 total commits to the Home Assistant orga: 8 commits to pyharmony @@ -1270,22 +1482,25 @@ This page contains a list of people who have contributed in one way or another t - [bergemalm (@bergemalm)](https://github.com/bergemalm "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Bernardus Jansen (@bajansen)](https://github.com/bajansen "1 total commits to the Home Assistant orga: +- [berightback\-dev (@berightback-dev)](https://github.com/berightback-dev "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Bernd Zeimetz (@bzed)](https://github.com/bzed "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Bernardus Jansen (@bajansen)](https://github.com/bajansen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Bertbert (@bertbert72)](https://github.com/bertbert72 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant ") +- [Bertie Blackman (@covertbert)](https://github.com/covertbert "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [bestlibre (@bestlibre)](https://github.com/bestlibre "16 total commits to the Home Assistant orga: 8 commits to home-assistant 5 commits to home-assistant.io -1 commit to home-assistant-polymer -1 commit to hassio-build 1 commit to hassio +1 commit to hassio-build +1 commit to home-assistant-polymer ") - [bforbird (@bforbird)](https://github.com/bforbird "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1303,8 +1518,8 @@ This page contains a list of people who have contributed in one way or another t - [BigMoby (@bigmoby)](https://github.com/bigmoby "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [bigwoof (@bigwoof)](https://github.com/bigwoof "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [bigwoof (@bigwoof)](https://github.com/bigwoof "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to home-assistant ") - [Bike Dude (@hackacad)](https://github.com/hackacad "1 total commits to the Home Assistant orga: @@ -1340,9 +1555,6 @@ This page contains a list of people who have contributed in one way or another t - [Björn Orri (@bjornorri)](https://github.com/bjornorri "1 total commits to the Home Assistant orga: 1 commit to home-assistant-iOS ") -- [Björn Ramberg (@bjorne)](https://github.com/bjorne "1 total commits to the Home Assistant orga: -1 commit to hassio-build -") - [bkcberry (@bkcberry)](https://github.com/bkcberry "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1378,6 +1590,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [bluestripe (@bluestripe)](https://github.com/bluestripe "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Bo (@bohmandan)](https://github.com/bohmandan "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -1391,8 +1606,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to appdaemon ") -- [Bob Igo (@Human)](https://github.com/Human "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Bob Igo (@Human)](https://github.com/Human "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io 1 commit to home-assistant ") - [Bob van Oijen (@bobvanoijen)](https://github.com/bobvanoijen "2 total commits to the Home Assistant orga: @@ -1404,6 +1619,14 @@ This page contains a list of people who have contributed in one way or another t - [Boced66 (@boced66)](https://github.com/boced66 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Bogdan Alexe (@bogdanalexe90)](https://github.com/bogdanalexe90 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Bogdan Vlaicu (@bvlaicu)](https://github.com/bvlaicu "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to home-assistant +1 commit to home-assistant.io +") - [boltgolt (@boltgolt)](https://github.com/boltgolt "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -1411,10 +1634,13 @@ This page contains a list of people who have contributed in one way or another t - [bonterra (@bonterra)](https://github.com/bonterra "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [boojew (@boojew)](https://github.com/boojew "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [boojew (@boojew)](https://github.com/boojew "10 total commits to the Home Assistant orga: +8 commits to home-assistant.io 2 commits to home-assistant ") +- [boolangery (@boolangery)](https://github.com/boolangery "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Boris K (@bokub)](https://github.com/bokub "12 total commits to the Home Assistant orga: 6 commits to home-assistant.io 6 commits to home-assistant @@ -1423,7 +1649,11 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to home-assistant ") -- [bouni (@Bouni)](https://github.com/Bouni "2 total commits to the Home Assistant orga: +- [bouni (@Bouni)](https://github.com/Bouni "86 total commits to the Home Assistant orga: +81 commits to home-assistant +5 commits to home-assistant.io +") +- [Bouwe Westerdijk (@bouwew)](https://github.com/bouwew "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") @@ -1432,6 +1662,9 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant 2 commits to home-assistant.io ") +- [br0nd (@br0nd)](https://github.com/br0nd "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Br4veSt4rr (@Br4veSt4rr)](https://github.com/Br4veSt4rr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1457,8 +1690,8 @@ This page contains a list of people who have contributed in one way or another t - [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Brad Sanders (@thebradleysanders)](https://github.com/thebradleysanders "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Brad Sanders (@thebradleysanders)](https://github.com/thebradleysanders "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [bradarndt (@digdugg)](https://github.com/digdugg "2 total commits to the Home Assistant orga: 2 commits to python-openzwave @@ -1466,6 +1699,12 @@ This page contains a list of people who have contributed in one way or another t - [braddparker (@braddparker)](https://github.com/braddparker "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Bradley Nelson (@BCNelson)](https://github.com/BCNelson "1 total commits to the Home Assistant orga: +1 commit to home-assistant-android +") +- [Bradley Wehmeier (@bradleywehmeier)](https://github.com/bradleywehmeier "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [BradleyDHobbs (@BradleyDHobbs)](https://github.com/BradleyDHobbs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1475,17 +1714,32 @@ This page contains a list of people who have contributed in one way or another t - [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io ") -- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "120 total commits to the Home Assistant orga: -83 commits to home-assistant-polymer -26 commits to home-assistant -9 commits to home-assistant.io +- [Bram Goolaerts (@bollewolle)](https://github.com/bollewolle "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "353 total commits to the Home Assistant orga: +262 commits to home-assistant-polymer +68 commits to home-assistant +14 commits to home-assistant.io +4 commits to custom-components-wheels 1 commit to home-assistant-notebooks 1 commit to people +1 commit to developers.home-assistant +1 commit to probot-home-assistant +1 commit to alerts.home-assistant.io ") - [Bram Mittendorff (@brammittendorff)](https://github.com/brammittendorff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brandon Davidson (@brandond)](https://github.com/brandond "1 total commits to the Home Assistant orga: +- [Brandon Chothia (@chothia)](https://github.com/chothia "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Brandon Corry (@brandoncorry)](https://github.com/brandoncorry "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Brandon Davidson (@brandond)](https://github.com/brandond "4 total commits to the Home Assistant orga: +3 commits to home-assistant 1 commit to netdisco ") - [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the Home Assistant orga: @@ -1507,8 +1761,14 @@ This page contains a list of people who have contributed in one way or another t - [Brendan Berg (@captainnapalm)](https://github.com/captainnapalm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "11 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [Brendan Tobolaski (@btobolaski)](https://github.com/btobolaski "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "23 total commits to the Home Assistant orga: +15 commits to home-assistant.io +4 commits to home-assistant +3 commits to appdaemon +1 commit to data.home-assistant ") - [Brent Hughes (@bah2830)](https://github.com/bah2830 "28 total commits to the Home Assistant orga: 18 commits to home-assistant @@ -1521,12 +1781,15 @@ This page contains a list of people who have contributed in one way or another t - [Brent Saltzman (@brent20)](https://github.com/brent20 "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Brenton (@rbrenton)](https://github.com/rbrenton "1 total commits to the Home Assistant orga: +1 commit to hassos +") - [Brenton Zillins (@bzillins)](https://github.com/bzillins "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Brian Bennett (@bahamat)](https://github.com/bahamat "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Brett T\. Warden (@bwarden)](https://github.com/bwarden "3 total commits to the Home Assistant orga: +3 commits to home-assistant ") - [Brian Cribbs (@cribbstechnologies)](https://github.com/cribbstechnologies "44 total commits to the Home Assistant orga: 27 commits to home-assistant @@ -1574,8 +1837,8 @@ This page contains a list of people who have contributed in one way or another t - [Brian Towles (@wonderslug)](https://github.com/wonderslug "4 total commits to the Home Assistant orga: 4 commits to home-assistant ") -- [Brig Lamoreaux (@briglx)](https://github.com/briglx "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Brig Lamoreaux (@briglx)](https://github.com/briglx "7 total commits to the Home Assistant orga: +6 commits to home-assistant 1 commit to home-assistant.io ") - [Brigham Brown (@brigham)](https://github.com/brigham "1 total commits to the Home Assistant orga: @@ -1609,14 +1872,17 @@ This page contains a list of people who have contributed in one way or another t - [Bruno Binet (@bbinet)](https://github.com/bbinet "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") +- [bruxy70 (@bruxy70)](https://github.com/bruxy70 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Bryan Berg (@berg)](https://github.com/berg "1 total commits to the Home Assistant orga: 1 commit to hassos ") - [Bryan Van de Ven (@bryevdv)](https://github.com/bryevdv "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Bryan York (@bryanyork)](https://github.com/bryanyork "4 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Bryan York (@bryanyork)](https://github.com/bryanyork "5 total commits to the Home Assistant orga: +5 commits to home-assistant ") - [BryanJacobs (@BryanJacobs)](https://github.com/BryanJacobs "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -1626,17 +1892,11 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to python-openzwave ") -- [BtbN (@BtbN)](https://github.com/BtbN "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") -- [bufferUnderrun (@bufferUnderrun)](https://github.com/bufferUnderrun "12 total commits to the Home Assistant orga: -12 commits to open-zwave -") - [BUUT\! (@buut-vrij)](https://github.com/buut-vrij "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [bvansambeek (@bvansambeek)](https://github.com/bvansambeek "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [bvansambeek (@bvansambeek)](https://github.com/bvansambeek "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io 1 commit to hassio-build ") - [bw3 (@bw3)](https://github.com/bw3 "1 total commits to the Home Assistant orga: @@ -1656,9 +1916,9 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant 3 commits to hassio ") -- [c\-soft (@c-soft)](https://github.com/c-soft "5 total commits to the Home Assistant orga: -3 commits to home-assistant -2 commits to home-assistant.io +- [c\-soft (@c-soft)](https://github.com/c-soft "7 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant.io ") - [cadwal (@cadwal)](https://github.com/cadwal "1 total commits to the Home Assistant orga: 1 commit to hassio @@ -1670,6 +1930,9 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant 1 commit to home-assistant.io ") +- [Caleb Mah (@calebmah)](https://github.com/calebmah "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") - [callifo (@callifo)](https://github.com/callifo "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") @@ -1682,6 +1945,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Cameron Morris (@cameronrmorris)](https://github.com/cameronrmorris "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") +- [capstan1 (@capstan1)](https://github.com/capstan1 "3 total commits to the Home Assistant orga: +2 commits to hassos +1 commit to home-assistant.io +") - [Carl Chan (@carlchan)](https://github.com/carlchan "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -1689,28 +1959,39 @@ This page contains a list of people who have contributed in one way or another t - [Carl Johnson (@carlivar)](https://github.com/carlivar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "101 total commits to the Home Assistant orga: -93 commits to home-assistant.io +- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "102 total commits to the Home Assistant orga: +94 commits to home-assistant.io 5 commits to home-assistant +1 commit to fabric-home-assistant 1 commit to hassbian-scripts 1 commit to homebridge-homeassistant -1 commit to fabric-home-assistant +") +- [Carlos Duarte Do Nascimento \(Chester\) (@chesterbr)](https://github.com/chesterbr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Carlos Gustavo Sarmiento (@carlos-sarmiento)](https://github.com/carlos-sarmiento "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Carlos Rodríguez (@crguez)](https://github.com/crguez "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the Home Assistant orga: 6 commits to home-assistant ") -- [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "14 total commits to the Home Assistant orga: -13 commits to home-assistant +- [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "17 total commits to the Home Assistant orga: +14 commits to home-assistant +1 commit to hassio 1 commit to developers.home-assistant +1 commit to home-assistant.io ") - [Carter (@BluGeni)](https://github.com/BluGeni "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to home-assistant ") +- [casey (@csjo)](https://github.com/csjo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Casper (@casperklein)](https://github.com/casperklein "2 total commits to the Home Assistant orga: 1 commit to hassio 1 commit to home-assistant.io @@ -1731,12 +2012,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave 1 commit to home-assistant.io ") -- [cclauss (@cclauss)](https://github.com/cclauss "2 total commits to the Home Assistant orga: -1 commit to appdaemon -1 commit to python-openzwave -") -- [cdce8p (@cdce8p)](https://github.com/cdce8p "209 total commits to the Home Assistant orga: -132 commits to home-assistant +- [cdce8p (@cdce8p)](https://github.com/cdce8p "213 total commits to the Home Assistant orga: +136 commits to home-assistant 51 commits to home-assistant.io 14 commits to home-assistant-polymer 6 commits to developers.home-assistant @@ -1756,6 +2033,9 @@ This page contains a list of people who have contributed in one way or another t - [Cedric Van Goethem (@Zepheus)](https://github.com/Zepheus "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Cedrick Flocon (@CedrickFlocon)](https://github.com/CedrickFlocon "7 total commits to the Home Assistant orga: +7 commits to home-assistant-android +") - [ceejii (@ceejii)](https://github.com/ceejii "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -1777,9 +2057,15 @@ This page contains a list of people who have contributed in one way or another t - [ChadCurvin (@Curvin777)](https://github.com/Curvin777 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chandan Rai (@bhageena)](https://github.com/bhageena "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [chanders (@chanders)](https://github.com/chanders "2 total commits to the Home Assistant orga: 2 commits to hadashboard ") +- [Chao (@chaoranxie)](https://github.com/chaoranxie "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [CHAPELLE Quentin (@quentinchap)](https://github.com/quentinchap "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1787,22 +2073,19 @@ This page contains a list of people who have contributed in one way or another t 12 commits to home-assistant 7 commits to home-assistant.io ") -- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "58 total commits to the Home Assistant orga: -26 commits to home-assistant -19 commits to home-assistant.io -12 commits to home-assistant-polymer +- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "73 total commits to the Home Assistant orga: +32 commits to home-assistant +21 commits to home-assistant.io +19 commits to home-assistant-polymer 1 commit to people ") - [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the Home Assistant orga: 5 commits to home-assistant 3 commits to home-assistant.io ") -- [Chayoung You (@yous)](https://github.com/yous "3 total commits to the Home Assistant orga: +- [ChaYoung You (@yous)](https://github.com/yous "3 total commits to the Home Assistant orga: 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 orga: -1 commit to libcoap -") - [Chema García (@sch3m4)](https://github.com/sch3m4 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -1815,18 +2098,19 @@ This page contains a list of people who have contributed in one way or another t - [chierichetto (@chierichetto)](https://github.com/chierichetto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [chkhanu (@chkhanu)](https://github.com/chkhanu "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [chknetsc (@chknetsc)](https://github.com/chknetsc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [chmielowiec (@chmielowiec)](https://github.com/chmielowiec "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [chocomega (@chocomega)](https://github.com/chocomega "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [choss (@choss)](https://github.com/choss "4 total commits to the Home Assistant orga: +- [choss (@choss)](https://github.com/choss "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +2 commits to home-assistant ") - [Chris (@chennin)](https://github.com/chennin "15 total commits to the Home Assistant orga: 11 commits to home-assistant.io @@ -1847,6 +2131,15 @@ This page contains a list of people who have contributed in one way or another t - [Chris Baumgartner (@mchrisb03)](https://github.com/mchrisb03 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Chris Caron (@caronc)](https://github.com/caronc "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Chris Colohan (@colohan)](https://github.com/colohan "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to home-assistant +1 commit to home-assistant.io +") - [Chris Cowart (@cpcowart)](https://github.com/cpcowart "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -1860,13 +2153,17 @@ This page contains a list of people who have contributed in one way or another t - [Chris Heath (@Nedlinin)](https://github.com/Nedlinin "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Chris Helming (@cwhits)](https://github.com/cwhits "8 total commits to the Home Assistant orga: +- [Chris Helming (@cwhits)](https://github.com/cwhits "12 total commits to the Home Assistant orga: +8 commits to home-assistant 4 commits to home-assistant.io -4 commits to home-assistant ") - [Chris Huegle (@chuegle)](https://github.com/chuegle "1 total commits to the Home Assistant orga: 1 commit to netdisco ") +- [Chris Johnston (@Chris-Johnston)](https://github.com/Chris-Johnston "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to home-assistant +") - [Chris Jones (@fezfox)](https://github.com/fezfox "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant @@ -1904,12 +2201,29 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 4 commits to appdaemon ") +- [Chris Soyars (@ctso)](https://github.com/ctso "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") +- [Chris Thornton (@cj-thornton)](https://github.com/cj-thornton "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Chris Van Humbeeck (@humbeecc)](https://github.com/humbeecc "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Chris Vanclercq (@Vanclec)](https://github.com/Vanclec "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chris Vick (@cvick)](https://github.com/cvick "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [chriscla (@chriscla)](https://github.com/chriscla "11 total commits to the Home Assistant orga: +6 commits to home-assistant +5 commits to home-assistant.io +") - [chrismcneil (@chrismcneil)](https://github.com/chrismcneil "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1929,9 +2243,6 @@ This page contains a list of people who have contributed in one way or another t - [Christian (@cschroeter)](https://github.com/cschroeter "2 total commits to the Home Assistant orga: 2 commits to hassio ") -- [Christian Baer (@chrisb86)](https://github.com/chrisb86 "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [Christian Biamont (@chrillux)](https://github.com/chrillux "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -1940,6 +2251,13 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant 1 commit to home-assistant.io ") +- [Christian Clauss (@cclauss)](https://github.com/cclauss "2 total commits to the Home Assistant orga: +1 commit to appdaemon +1 commit to python-openzwave +") +- [Christian Kuhn (@lolli42)](https://github.com/lolli42 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Christian Lahme (@krys1976)](https://github.com/krys1976 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1963,12 +2281,10 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant.io 3 commits to developers.home-assistant ") -- [Christian Tacke (@ChristianTacke)](https://github.com/ChristianTacke "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") -- [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "39 total commits to the Home Assistant orga: -23 commits to home-assistant +- [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "42 total commits to the Home Assistant orga: +25 commits to home-assistant 16 commits to home-assistant.io +1 commit to open-zwave ") - [Christofer Hellqvist (@hellqvist)](https://github.com/hellqvist "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -1999,14 +2315,15 @@ This page contains a list of people who have contributed in one way or another t - [christopheBfr (@christopheBfr)](https://github.com/christopheBfr "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Christopher Cavey (@cicavey)](https://github.com/cicavey "3 total commits to the Home Assistant orga: +- [Christopher Cavey (@cicavey)](https://github.com/cicavey "4 total commits to the Home Assistant orga: 3 commits to open-zwave +1 commit to home-assistant.io ") - [Christopher Vella (@chrisvella)](https://github.com/chrisvella "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Christopher Viel (@Chris-V)](https://github.com/Chris-V "6 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Christopher Viel (@Chris-V)](https://github.com/Chris-V "7 total commits to the Home Assistant orga: +4 commits to home-assistant 2 commits to home-assistant.io 1 commit to open-zwave ") @@ -2017,9 +2334,15 @@ This page contains a list of people who have contributed in one way or another t - [chrysn (@chrysn)](https://github.com/chrysn "65 total commits to the Home Assistant orga: 65 commits to libcoap ") +- [Chuang Zheng (@frogkind)](https://github.com/frogkind "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Chun\-wei Kuo (@Domon)](https://github.com/Domon "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [cHunter789 (@cHunter789)](https://github.com/cHunter789 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [chz^3 (@chzchzchz)](https://github.com/chzchzchz "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -2039,9 +2362,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Claudio Barca (@clabnet)](https://github.com/clabnet "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Claudio Heckler (@heckler)](https://github.com/heckler "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [Claudiu Farcas (@farcasclaudiu)](https://github.com/farcasclaudiu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [claughinghouse (@claughinghouse)](https://github.com/claughinghouse "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [Claus F\. Strasburger (@cfstras)](https://github.com/cfstras "5 total commits to the Home Assistant orga: 5 commits to pi-gen ") @@ -2059,10 +2391,10 @@ This page contains a list of people who have contributed in one way or another t 2 commits to open-zwave 1 commit to home-assistant ") -- [Clifford W\. Hansen (@cliffordwhansen)](https://github.com/cliffordwhansen "7 total commits to the Home Assistant orga: +- [Clifford W\. Hansen (@cliffordwhansen)](https://github.com/cliffordwhansen "10 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant.io 2 commits to appdaemon -2 commits to home-assistant -2 commits to home-assistant.io 1 commit to developers.home-assistant ") - [clyra (@clyra)](https://github.com/clyra "3 total commits to the Home Assistant orga: @@ -2080,11 +2412,12 @@ This page contains a list of people who have contributed in one way or another t - [Codepadawan (@Codepadawan)](https://github.com/Codepadawan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [cogneato (@cogneato)](https://github.com/cogneato "34 total commits to the Home Assistant orga: -26 commits to home-assistant.io +- [cogneato (@cogneato)](https://github.com/cogneato "56 total commits to the Home Assistant orga: +47 commits to home-assistant.io 4 commits to developers.home-assistant 3 commits to hassos 1 commit to people +1 commit to hassio-installer ") - [Colby Rome (@cisasteelersfan)](https://github.com/cisasteelersfan "7 total commits to the Home Assistant orga: 4 commits to home-assistant @@ -2096,9 +2429,11 @@ This page contains a list of people who have contributed in one way or another t - [Colin Dunn (@colindunn)](https://github.com/colindunn "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Colin Frei (@colinfrei)](https://github.com/colinfrei "5 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Colin Frei (@colinfrei)](https://github.com/colinfrei "8 total commits to the Home Assistant orga: +4 commits to home-assistant.io 2 commits to home-assistant +1 commit to hassio-addons +1 commit to developers.home-assistant ") - [Colin Harrington (@ColinHarrington)](https://github.com/ColinHarrington "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -2113,18 +2448,12 @@ This page contains a list of people who have contributed in one way or another t 3 commits to open-zwave 3 commits to home-assistant.io ") -- [Collin Allen (@command-tab)](https://github.com/command-tab "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Comic Chang (@comicchang)](https://github.com/comicchang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [ComputerCandy (@ComputerCandy)](https://github.com/ComputerCandy "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") -- [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "17 total commits to the Home Assistant orga: -9 commits to home-assistant -5 commits to home-assistant.io +- [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "19 total commits to the Home Assistant orga: +10 commits to home-assistant +6 commits to home-assistant.io 2 commits to home-assistant-polymer 1 commit to developers.home-assistant ") @@ -2134,6 +2463,9 @@ This page contains a list of people who have contributed in one way or another t - [Constantine Poltyrev (@shprota)](https://github.com/shprota "1 total commits to the Home Assistant orga: 1 commit to appdaemon ") +- [coolguymatt (@coolguymatt)](https://github.com/coolguymatt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Cooper Dale (@Cooper-Dale)](https://github.com/Cooper-Dale "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") @@ -2155,6 +2487,12 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to home-assistant ") +- [corneels (@corneels)](https://github.com/corneels "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Cornelius Mund (@cornim)](https://github.com/cornim "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [corneyl (@corneyl)](https://github.com/corneyl "5 total commits to the Home Assistant orga: 4 commits to home-assistant 1 commit to home-assistant.io @@ -2162,8 +2500,12 @@ This page contains a list of people who have contributed in one way or another t - [CornierKhan1 (@caution3)](https://github.com/caution3 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Courtenay (@hdsheena)](https://github.com/hdsheena "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Costas (@costastf)](https://github.com/costastf "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Courtenay (@hdsheena)](https://github.com/hdsheena "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Courtney Strachan (@cstrachan88)](https://github.com/cstrachan88 "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -2171,13 +2513,16 @@ This page contains a list of people who have contributed in one way or another t - [cpgifford (@cpgifford)](https://github.com/cpgifford "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [cpopp (@cpopp)](https://github.com/cpopp "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [cpopp (@cpopp)](https://github.com/cpopp "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io ") - [cpw (@cpw)](https://github.com/cpw "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [CQoute (@CQoute)](https://github.com/CQoute "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Craig Hills (@chills42)](https://github.com/chills42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2192,6 +2537,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") +- [croghostrider (@croghostrider)](https://github.com/croghostrider "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") - [cryptelli (@cryptelli)](https://github.com/cryptelli "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2212,8 +2560,8 @@ This page contains a list of people who have contributed in one way or another t - [Curtis Gibby (@curtisgibby)](https://github.com/curtisgibby "1 total commits to the Home Assistant orga: 1 commit to hassio ") -- [CV (@dagobert)](https://github.com/dagobert "16 total commits to the Home Assistant orga: -12 commits to home-assistant.io +- [CV (@dagobert)](https://github.com/dagobert "17 total commits to the Home Assistant orga: +13 commits to home-assistant.io 4 commits to home-assistant ") - [cvwillegen (@cvwillegen)](https://github.com/cvwillegen "5 total commits to the Home Assistant orga: @@ -2224,8 +2572,11 @@ This page contains a list of people who have contributed in one way or another t 2 commits to open-zwave ") - [cxlwill (@cxlwill)](https://github.com/cxlwill "4 total commits to the Home Assistant orga: -2 commits to hassbian-scripts 2 commits to home-assistant-polymer +2 commits to hassbian-scripts +") +- [Cyro (@cyrosy)](https://github.com/cyrosy "4 total commits to the Home Assistant orga: +4 commits to home-assistant ") - [DaCoD (@dacod)](https://github.com/dacod "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -2233,14 +2584,14 @@ This page contains a list of people who have contributed in one way or another t - [Dale Higgs (@dale3h)](https://github.com/dale3h "45 total commits to the Home Assistant orga: 32 commits to home-assistant.io 11 commits to home-assistant -1 commit to homebridge-homeassistant 1 commit to hassbot +1 commit to homebridge-homeassistant ") - [Dallas Opelt (@DallasO)](https://github.com/DallasO "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [damarco (@damarco)](https://github.com/damarco "19 total commits to the Home Assistant orga: -19 commits to home-assistant +- [damarco (@damarco)](https://github.com/damarco "26 total commits to the Home Assistant orga: +26 commits to home-assistant ") - [Damian Nowak (@Nowaker)](https://github.com/Nowaker "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2258,8 +2609,8 @@ This page contains a list of people who have contributed in one way or another t - [Dan Chen (@djchen)](https://github.com/djchen "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "24 total commits to the Home Assistant orga: -19 commits to home-assistant +- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "25 total commits to the Home Assistant orga: +20 commits to home-assistant 5 commits to home-assistant.io ") - [Dan Faulknor (@danielfaulknor)](https://github.com/danielfaulknor "3 total commits to the Home Assistant orga: @@ -2289,6 +2640,9 @@ This page contains a list of people who have contributed in one way or another t - [Dan Olson (@danielolson13)](https://github.com/danielolson13 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dan Ponte (@amigan)](https://github.com/amigan "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Dan Ports (@drkp)](https://github.com/drkp "15 total commits to the Home Assistant orga: 10 commits to open-zwave 4 commits to home-assistant @@ -2331,8 +2685,8 @@ This page contains a list of people who have contributed in one way or another t - [Daniel (@danimtb)](https://github.com/danimtb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Daniel Beyer (@ymc-dabe)](https://github.com/ymc-dabe "5 total commits to the Home Assistant orga: -5 commits to dehydrated +- [Daniel Anner (@danner26)](https://github.com/danner26 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Daniel Bowman (@vrih)](https://github.com/vrih "5 total commits to the Home Assistant orga: 4 commits to home-assistant @@ -2348,9 +2702,9 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "441 total commits to the Home Assistant orga: -307 commits to home-assistant -130 commits to home-assistant.io +- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "480 total commits to the Home Assistant orga: +345 commits to home-assistant +131 commits to home-assistant.io 3 commits to home-assistant-polymer 1 commit to people ") @@ -2358,10 +2712,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Daniel Lando (@robertsLando)](https://github.com/robertsLando "14 total commits to the Home Assistant orga: -14 commits to open-zwave +- [Daniel Kucera (@danielkucera)](https://github.com/danielkucera "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") -- [Daniel Lashua (@dlashua)](https://github.com/dlashua "3 total commits to the Home Assistant orga: +- [Daniel Lando (@robertsLando)](https://github.com/robertsLando "15 total commits to the Home Assistant orga: +14 commits to open-zwave +1 commit to home-assistant.io +") +- [Daniel Lashua (@dlashua)](https://github.com/dlashua "125 total commits to the Home Assistant orga: +122 commits to appdaemon 2 commits to home-assistant.io 1 commit to home-assistant ") @@ -2369,10 +2728,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "128 total commits to the Home Assistant orga: -68 commits to home-assistant +- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "135 total commits to the Home Assistant orga: +74 commits to home-assistant 48 commits to home-assistant.io -11 commits to hassio-addons +12 commits to hassio-addons 1 commit to people ") - [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the Home Assistant orga: @@ -2385,9 +2744,12 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "61 total commits to the Home Assistant orga: -33 commits to home-assistant -28 commits to home-assistant.io +- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "81 total commits to the Home Assistant orga: +42 commits to home-assistant +39 commits to home-assistant.io +") +- [Daniel Stockhausen (@daniel-stockhausen)](https://github.com/daniel-stockhausen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -2418,10 +2780,10 @@ This page contains a list of people who have contributed in one way or another t - [Danijel Stojnic (@danijelst)](https://github.com/danijelst "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "4 total commits to the Home Assistant orga: +- [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "6 total commits to the Home Assistant orga: +3 commits to home-assistant 2 commits to home-assistant.io 1 commit to homebridge-homeassistant -1 commit to home-assistant ") - [Daniël van de Giessen (@DvdGiessen)](https://github.com/DvdGiessen "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -2435,6 +2797,9 @@ This page contains a list of people who have contributed in one way or another t - [DannyHg (@DannyHg)](https://github.com/DannyHg "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [danu5 (@danu5)](https://github.com/danu5 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [daphatty (@daphatty)](https://github.com/daphatty "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2464,6 +2829,12 @@ This page contains a list of people who have contributed in one way or another t - [Darío Hereñú (@kant)](https://github.com/kant "1 total commits to the Home Assistant orga: 1 commit to gu-who ") +- [dasadi (@dasadi)](https://github.com/dasadi "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Dash Winterson (@dashdanw)](https://github.com/dashdanw "1 total commits to the Home Assistant orga: +1 commit to hassbian-scripts +") - [dasos (@dasos)](https://github.com/dasos "11 total commits to the Home Assistant orga: 7 commits to home-assistant 3 commits to home-assistant.io @@ -2502,6 +2873,10 @@ This page contains a list of people who have contributed in one way or another t - [Dave J (@kxtcd950)](https://github.com/kxtcd950 "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") +- [Dave T (@davet2001)](https://github.com/davet2001 "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") - [DAVe3283 (@DAVe3283)](https://github.com/DAVe3283 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -2517,27 +2892,33 @@ This page contains a list of people who have contributed in one way or another t - [David (@dschoorisse)](https://github.com/dschoorisse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [David (@DaveCo1701)](https://github.com/DaveCo1701 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [David Barnett (@dbarnett)](https://github.com/dbarnett "50 total commits to the Home Assistant orga: 50 commits to open-zwave ") -- [David Barrera (@davidbb)](https://github.com/davidbb "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [David Barrera (@davidbb)](https://github.com/davidbb "3 total commits to the Home Assistant orga: +2 commits to home-assistant 1 commit to home-assistant.io ") - [David Baumann (@daBONDi)](https://github.com/daBONDi "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [David Beitey (@davidjb)](https://github.com/davidjb "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [David Beitey (@davidjb)](https://github.com/davidjb "10 total commits to the Home Assistant orga: +6 commits to home-assistant.io +2 commits to developers.home-assistant +1 commit to example-custom-config +1 commit to .github ") - [David Bilay (@dYalib)](https://github.com/dYalib "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [David Bonnes (@zxdavb)](https://github.com/zxdavb "15 total commits to the Home Assistant orga: -12 commits to home-assistant.io -3 commits to home-assistant +- [David Bonnes (@zxdavb)](https://github.com/zxdavb "96 total commits to the Home Assistant orga: +71 commits to home-assistant +25 commits to home-assistant.io ") - [David Broadfoot (@dlbroadfoot)](https://github.com/dlbroadfoot "6 total commits to the Home Assistant orga: 5 commits to home-assistant @@ -2554,15 +2935,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to home-assistant ") -- [David Earl (@davidearl)](https://github.com/davidearl "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [David Edmondson (@dme)](https://github.com/dme "1 total commits to the Home Assistant orga: 1 commit to feedparser ") -- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "92 total commits to the Home Assistant orga: -75 commits to home-assistant -15 commits to home-assistant-polymer +- [David Edmundson (@davidedmundson)](https://github.com/davidedmundson "7 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant.io +") +- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "172 total commits to the Home Assistant orga: +150 commits to home-assistant +20 commits to home-assistant-polymer 1 commit to people 1 commit to home-assistant.io ") @@ -2580,8 +2962,8 @@ This page contains a list of people who have contributed in one way or another t - [David Jackson (@David-Jackson)](https://github.com/David-Jackson "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [David K (@neffs)](https://github.com/neffs "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [David K (@neffs)](https://github.com/neffs "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [David Lie (@davidlie)](https://github.com/davidlie "3 total commits to the Home Assistant orga: 3 commits to home-assistant @@ -2590,8 +2972,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [David McNett (@nugget)](https://github.com/nugget "13 total commits to the Home Assistant orga: -7 commits to home-assistant +- [David McNett (@nugget)](https://github.com/nugget "14 total commits to the Home Assistant orga: +8 commits to home-assistant 5 commits to home-assistant.io 1 commit to hassio ") @@ -2602,6 +2984,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [David Radcliffe (@dwradcliffe)](https://github.com/dwradcliffe "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") +- [David Roberts (@drobtravels)](https://github.com/drobtravels "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [David Ryan (@ptcryan)](https://github.com/ptcryan "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -2632,6 +3022,9 @@ This page contains a list of people who have contributed in one way or another t - [David Wang (@dcwangmit01)](https://github.com/dcwangmit01 "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") +- [David Winn (@qypea)](https://github.com/qypea "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [David Woodhouse (@dwmw2)](https://github.com/dwmw2 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -2639,6 +3032,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to hassio-build 1 commit to home-assistant ") +- [david81 (@david81)](https://github.com/david81 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [David\-Leon Pohl (@DavidLP)](https://github.com/DavidLP "15 total commits to the Home Assistant orga: 13 commits to home-assistant 2 commits to home-assistant.io @@ -2646,9 +3042,8 @@ This page contains a list of people who have contributed in one way or another t - [Davide Setti (@vad)](https://github.com/vad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [davidedmundson (@davidedmundson)](https://github.com/davidedmundson "7 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Davide Varricchio (@bannhead)](https://github.com/bannhead "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [DavidFW1960 (@DavidFW1960)](https://github.com/DavidFW1960 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -2663,8 +3058,11 @@ This page contains a list of people who have contributed in one way or another t - [dayofdoom (@dayofdoom)](https://github.com/dayofdoom "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [dbrowndan (@dbrowndan)](https://github.com/dbrowndan "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [DBCL (@DB-CL)](https://github.com/DB-CL "2 total commits to the Home Assistant orga: +2 commits to home-assistant-polymer +") +- [dbrowndan (@dbrowndan)](https://github.com/dbrowndan "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Dean (@FreekingDean)](https://github.com/FreekingDean "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -2673,12 +3071,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") -- [definitio (@definitio)](https://github.com/definitio "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io -") -- [deftdawg (@deftdawg)](https://github.com/deftdawg "18 total commits to the Home Assistant orga: -14 commits to home-assistant +- [definitio (@definitio)](https://github.com/definitio "9 total commits to the Home Assistant orga: +5 commits to home-assistant 4 commits to home-assistant.io ") - [deisi (@deisi)](https://github.com/deisi "12 total commits to the Home Assistant orga: @@ -2719,6 +3113,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to netdisco ") +- [Dennis Keitzel (@cybe)](https://github.com/cybe "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Dennis Modig (@techdude200)](https://github.com/techdude200 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -2731,9 +3128,21 @@ This page contains a list of people who have contributed in one way or another t - [Denver P (@DrTexx)](https://github.com/DrTexx "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [denverpilot (@denverpilot)](https://github.com/denverpilot "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Department G33k (@department-g33k)](https://github.com/department-g33k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [dependabot\-preview\[bot\] (@dependabot-preview[bot])](https://github.com/dependabot-preview[bot] "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [dependabot\[bot\] (@dependabot[bot])](https://github.com/dependabot[bot] "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [derandiunddasbo (@derandiunddasbo)](https://github.com/derandiunddasbo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Derek (@itchaboy)](https://github.com/itchaboy "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to home-assistant @@ -2750,8 +3159,8 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 1 commit to home-assistant-polymer ") -- [Destix (@Destix)](https://github.com/Destix "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Destix (@Destix)](https://github.com/Destix "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io ") - [DetroitEE (@DetroitEE)](https://github.com/DetroitEE "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -2761,15 +3170,24 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant 4 commits to homebridge-homeassistant ") +- [Developer Jaimyn (@jabelone)](https://github.com/jabelone "1 total commits to the Home Assistant orga: +1 commit to hassbian-scripts +") - [DeviantEng (@DeviantEng)](https://github.com/DeviantEng "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [DeviousPenguin (@DeviousPenguin)](https://github.com/DeviousPenguin "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [devnill (@devnill)](https://github.com/devnill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Devon Peet (@dpeet)](https://github.com/dpeet "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [dewi\-ny\-je (@dewi-ny-je)](https://github.com/dewi-ny-je "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [dfournie (@dfournie)](https://github.com/dfournie "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -2782,6 +3200,12 @@ This page contains a list of people who have contributed in one way or another t - [dickesW (@dickesW)](https://github.com/dickesW "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Diefferson Koderer Môro (@djpremier)](https://github.com/djpremier "79 total commits to the Home Assistant orga: +79 commits to home-assistant +") +- [dieselrabbit (@dieselrabbit)](https://github.com/dieselrabbit "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [digiblur (@digiblur)](https://github.com/digiblur "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -2793,6 +3217,10 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to home-assistant ") +- [Dima Zavin (@thecynic)](https://github.com/thecynic "7 total commits to the Home Assistant orga: +6 commits to home-assistant +1 commit to home-assistant.io +") - [Dimitri Pribysh (@dmand)](https://github.com/dmand "1 total commits to the Home Assistant orga: 1 commit to hassos ") @@ -2805,8 +3233,8 @@ This page contains a list of people who have contributed in one way or another t - [Diogo Alves (@killercode)](https://github.com/killercode "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Diogo Gomes (@dgomes)](https://github.com/dgomes "122 total commits to the Home Assistant orga: -85 commits to home-assistant +- [Diogo Gomes (@dgomes)](https://github.com/dgomes "126 total commits to the Home Assistant orga: +89 commits to home-assistant 33 commits to home-assistant.io 2 commits to developers.home-assistant 1 commit to home-assistant-polymer @@ -2830,6 +3258,9 @@ This page contains a list of people who have contributed in one way or another t - [DK (@poldim)](https://github.com/poldim "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [DKAutomater (@DKAutomater)](https://github.com/DKAutomater "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Dmitriy (@marcellus00)](https://github.com/marcellus00 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -2849,8 +3280,9 @@ This page contains a list of people who have contributed in one way or another t - [dnaphreak (@dnaphreak)](https://github.com/dnaphreak "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [dnguyen800 (@dnguyen800)](https://github.com/dnguyen800 "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [dnguyen800 (@dnguyen800)](https://github.com/dnguyen800 "12 total commits to the Home Assistant orga: +10 commits to home-assistant.io +2 commits to hassio-addons ") - [DoctorIOT (@DoctorIOT)](https://github.com/DoctorIOT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2866,14 +3298,11 @@ This page contains a list of people who have contributed in one way or another t - [Domantas Mauruča (@Dohxis)](https://github.com/Dohxis "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") -- [Domen Puncer Kugler (@domenpk)](https://github.com/domenpk "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [domier (@domier)](https://github.com/domier "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") -- [Dominik Heidler (@asdil12)](https://github.com/asdil12 "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") -- [Dominik Palo (@DominikPalo)](https://github.com/DominikPalo "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Dominik Palo (@DominikPalo)](https://github.com/DominikPalo "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Donal Phipps (@Phippsy)](https://github.com/Phippsy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2881,68 +3310,83 @@ This page contains a list of people who have contributed in one way or another t - [DonHugo (@DonHugo)](https://github.com/DonHugo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [doudz (@doudz)](https://github.com/doudz "6 total commits to the Home Assistant orga: -5 commits to home-assistant -1 commit to home-assistant.io +- [doogstar (@doogstar)](https://github.com/doogstar "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [Doug (@douglasbeck)](https://github.com/douglasbeck "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "9 total commits to the Home Assistant orga: +- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "10 total commits to the Home Assistant orga: 5 commits to home-assistant -2 commits to home-assistant.io +3 commits to home-assistant.io 1 commit to appdaemon 1 commit to hassio-addons ") +- [Douglas Paz (@douglasppaz)](https://github.com/douglasppaz "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [dpressle (@dpressle)](https://github.com/dpressle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [dpryor (@dpryor)](https://github.com/dpryor "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") +- [Drake Loud (@drakeloud)](https://github.com/drakeloud "2 total commits to the Home Assistant orga: +2 commits to home-assistant-polymer +") - [dramamoose (@dramamoose)](https://github.com/dramamoose "7 total commits to the Home Assistant orga: 4 commits to home-assistant 3 commits to home-assistant.io ") +- [dreed47 (@dreed47)](https://github.com/dreed47 "9 total commits to the Home Assistant orga: +8 commits to home-assistant +1 commit to developers.home-assistant +") - [dreizehnelf (@dreizehnelf)](https://github.com/dreizehnelf "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Drew Budwin (@dbudwin)](https://github.com/dbudwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Drew Skwiers\-Koballa (@dzsquared)](https://github.com/dzsquared "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io +") - [Drew Wells (@drewwells)](https://github.com/drewwells "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [DrewSK (@dzsquared)](https://github.com/dzsquared "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io -") -- [Dries De Peuter (@NoUseFreak)](https://github.com/NoUseFreak "1 total commits to the Home Assistant orga: +- [Dries De Peuter (@NoUseFreak)](https://github.com/NoUseFreak "4 total commits to the Home Assistant orga: +3 commits to home-assistant 1 commit to home-assistant.io ") -- [drjared88 (@drjared88)](https://github.com/drjared88 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [drjared88 (@drjared88)](https://github.com/drjared88 "5 total commits to the Home Assistant orga: +4 commits to home-assistant 1 commit to home-assistant.io ") -- [DrJeff (@DrJeff)](https://github.com/DrJeff "1 total commits to the Home Assistant orga: -1 commit to home-assistant-cli +- [DrJeff (@DrJeff)](https://github.com/DrJeff "2 total commits to the Home Assistant orga: +2 commits to home-assistant-cli ") - [drogfild (@drogfild)](https://github.com/drogfild "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [droopanu (@droopanu)](https://github.com/droopanu "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [drop table USERS; \-\- (@hudashot)](https://github.com/hudashot "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [DrZzs (@Snipercaine)](https://github.com/Snipercaine "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [dtorner (@dtorner)](https://github.com/dtorner "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [dtorner (@dtorner)](https://github.com/dtorner "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") -- [DubhAd (@DubhAd)](https://github.com/DubhAd "569 total commits to the Home Assistant orga: -562 commits to home-assistant.io +- [DubhAd (@DubhAd)](https://github.com/DubhAd "630 total commits to the Home Assistant orga: +621 commits to home-assistant.io 3 commits to developers.home-assistant 2 commits to hassos 1 commit to appdaemon +1 commit to people +1 commit to alerts.home-assistant.io 1 commit to home-assistant ") - [Duncan Leo (@duncanleo)](https://github.com/duncanleo "1 total commits to the Home Assistant orga: @@ -2955,7 +3399,12 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 5 commits to home-assistant ") -- [Dustin Rue (@dustinrue)](https://github.com/dustinrue "1 total commits to the Home Assistant orga: +- [Dustin Essington (@aetaric)](https://github.com/aetaric "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") +- [Dustin Rue (@dustinrue)](https://github.com/dustinrue "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant 1 commit to home-assistant.io ") - [Dustin S (@texnofobix)](https://github.com/texnofobix "1 total commits to the Home Assistant orga: @@ -2968,6 +3417,12 @@ This page contains a list of people who have contributed in one way or another t - [Dwight Holman (@anonfunc)](https://github.com/anonfunc "6 total commits to the Home Assistant orga: 6 commits to pyharmony ") +- [dwinnnspeaks (@dwinnnspeaks)](https://github.com/dwinnnspeaks "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Dylan (@DSAutomations)](https://github.com/DSAutomations "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Dylan Barlett (@dbarlett)](https://github.com/dbarlett "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2977,6 +3432,9 @@ This page contains a list of people who have contributed in one way or another t - [earaya (@earaya)](https://github.com/earaya "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [eBoon123 (@eBoon123)](https://github.com/eBoon123 "6 total commits to the Home Assistant orga: +6 commits to appdaemon +") - [ebpetway (@ebpetway)](https://github.com/ebpetway "55 total commits to the Home Assistant orga: 55 commits to warrant ") @@ -2991,15 +3449,21 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave 1 commit to home-assistant ") +- [Edgardo Ramírez (@SoldierCorp)](https://github.com/SoldierCorp "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [edgimar (@edgimar)](https://github.com/edgimar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [edif30 (@edif30)](https://github.com/edif30 "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") -- [Eduard van Valkenburg (@eavanvalkenburg)](https://github.com/eavanvalkenburg "8 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Edu\_Coder (@jptrsn)](https://github.com/jptrsn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Eduard van Valkenburg (@eavanvalkenburg)](https://github.com/eavanvalkenburg "11 total commits to the Home Assistant orga: +5 commits to home-assistant +5 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Eduardo Fonseca (@ebfio)](https://github.com/ebfio "1 total commits to the Home Assistant orga: @@ -3021,18 +3485,18 @@ This page contains a list of people who have contributed in one way or another t - [efp1 (@efp1)](https://github.com/efp1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [EgonMarmol (@EgonMarmol)](https://github.com/EgonMarmol "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") - [Egor Tsinko (@etsinko)](https://github.com/etsinko "12 total commits to the Home Assistant orga: 9 commits to home-assistant 3 commits to home-assistant.io ") -- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "41 total commits to the Home Assistant orga: -34 commits to home-assistant +- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "46 total commits to the Home Assistant orga: +39 commits to home-assistant 5 commits to home-assistant.io -1 commit to home-assistant-polymer 1 commit to pyharmony -") -- [eiaro (@eiaro)](https://github.com/eiaro "4 total commits to the Home Assistant orga: -4 commits to home-assistant +1 commit to home-assistant-polymer ") - [eieste (@eieste)](https://github.com/eieste "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -3040,6 +3504,12 @@ This page contains a list of people who have contributed in one way or another t - [Eirik H (@eithe)](https://github.com/eithe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Eirik Z (@atxbyea)](https://github.com/atxbyea "11 total commits to the Home Assistant orga: +11 commits to home-assistant.io +") +- [Eiríkur Haraldsson (@eiki25)](https://github.com/eiki25 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Eitan Mosenkis (@emosenkis)](https://github.com/emosenkis "6 total commits to the Home Assistant orga: 3 commits to home-assistant 2 commits to home-assistant.io @@ -3048,15 +3518,15 @@ This page contains a list of people who have contributed in one way or another t - [ejars (@ejars)](https://github.com/ejars "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Elan Ruusamäe (@glensc)](https://github.com/glensc "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [ejaviga (@ejaviga)](https://github.com/ejaviga "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [eldanb (@eldanb)](https://github.com/eldanb "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [Eleftherios Chamakiotis (@lexam79)](https://github.com/lexam79 "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to home-assistant +2 commits to home-assistant.io ") - [Elelabs\-maintainer (@Elelabs-maintainer)](https://github.com/Elelabs-maintainer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3068,15 +3538,15 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant 2 commits to home-assistant.io ") -- [Eliseo Martelli (@eliseomartelli)](https://github.com/eliseomartelli "26 total commits to the Home Assistant orga: -19 commits to home-assistant -7 commits to home-assistant.io +- [Eliseo Martelli (@eliseomartelli)](https://github.com/eliseomartelli "30 total commits to the Home Assistant orga: +22 commits to home-assistant +8 commits to home-assistant.io ") - [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the Home Assistant orga: 25 commits to home-assistant 6 commits to home-assistant.io ") -- [mvjt (@mvjt)](https://github.com/mvjt "1 total commits to the Home Assistant orga: +- [eltoro81 (@mvjt)](https://github.com/mvjt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Elvis (@mu3)](https://github.com/mu3 "1 total commits to the Home Assistant orga: @@ -3085,8 +3555,11 @@ This page contains a list of people who have contributed in one way or another t - [elyesa (@ssl)](https://github.com/ssl "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Emacee (@Emacee)](https://github.com/Emacee "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Em (@esciara)](https://github.com/esciara "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Emacee (@Emacee)](https://github.com/Emacee "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Emanuele (@ema987)](https://github.com/ema987 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3104,6 +3577,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") +- [Emil Nilsson (@voxic)](https://github.com/voxic "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") - [Emil Stjerneman (@bratanon)](https://github.com/bratanon "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant-polymer @@ -3111,6 +3587,13 @@ This page contains a list of people who have contributed in one way or another t - [emil\-e (@emil-e)](https://github.com/emil-e "1 total commits to the Home Assistant orga: 1 commit to python-openzwave ") +- [emilgil (@emilgil)](https://github.com/emilgil "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Emilv2 (@Emilv2)](https://github.com/Emilv2 "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [Emily Cassandra Meeker (@ecmeeker)](https://github.com/ecmeeker "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3136,16 +3619,14 @@ This page contains a list of people who have contributed in one way or another t - [Emre Saglam (@emresaglam)](https://github.com/emresaglam "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [endor (@endor-force)](https://github.com/endor-force "17 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [endor (@endor-force)](https://github.com/endor-force "19 total commits to the Home Assistant orga: +9 commits to home-assistant.io 5 commits to hassio-addons -3 commits to home-assistant +4 commits to home-assistant 1 commit to hassio-build ") -- [engrbm87 (@engrbm87)](https://github.com/engrbm87 "7 total commits to the Home Assistant orga: -3 commits to appdaemon -3 commits to home-assistant -1 commit to home-assistant.io +- [Enrico Battistella (@battistaar)](https://github.com/battistaar "1 total commits to the Home Assistant orga: +1 commit to homebridge-homeassistant ") - [Enrico Berndt (@treehoof)](https://github.com/treehoof "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3160,9 +3641,6 @@ This page contains a list of people who have contributed in one way or another t - [eracknaphobia (@eracknaphobia)](https://github.com/eracknaphobia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [erdgeist (@erdgeist)](https://github.com/erdgeist "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [eresonance (@eresonance)](https://github.com/eresonance "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3177,6 +3655,9 @@ This page contains a list of people who have contributed in one way or another t - [Eric Harris (@ericmharris)](https://github.com/ericmharris "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Eric Hiller (@erichiller)](https://github.com/erichiller "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Eric Hosford (@HosfordDotMe)](https://github.com/HosfordDotMe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3186,6 +3667,9 @@ This page contains a list of people who have contributed in one way or another t - [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Eric Miller (@ericmiller777)](https://github.com/ericmiller777 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Eric Nagley (@marchingphoenix)](https://github.com/marchingphoenix "18 total commits to the Home Assistant orga: 15 commits to home-assistant 3 commits to home-assistant.io @@ -3209,22 +3693,23 @@ This page contains a list of people who have contributed in one way or another t - [Erik Bent (@erikbent)](https://github.com/erikbent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "125 total commits to the Home Assistant orga: -108 commits to home-assistant +- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "126 total commits to the Home Assistant orga: +109 commits to home-assistant 14 commits to home-assistant.io 3 commits to netdisco ") - [Erik Gustavsson (@cyr123)](https://github.com/cyr123 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "188 total commits to the Home Assistant orga: -147 commits to home-assistant -39 commits to home-assistant.io -1 commit to developers.home-assistant +- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "312 total commits to the Home Assistant orga: +243 commits to home-assistant +55 commits to home-assistant.io +12 commits to home-assistant-polymer 1 commit to people +1 commit to developers.home-assistant ") -- [Erik\-jan Riemers (@riemers)](https://github.com/riemers "16 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Erik\-jan Riemers (@riemers)](https://github.com/riemers "17 total commits to the Home Assistant orga: +16 commits to home-assistant.io 1 commit to hassbian-scripts ") - [ErikS (@dmonizer)](https://github.com/dmonizer "1 total commits to the Home Assistant orga: @@ -3233,25 +3718,37 @@ This page contains a list of people who have contributed in one way or another t - [erizhang (@erizhang)](https://github.com/erizhang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [erlendmoland (@erlendmoland)](https://github.com/erlendmoland "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Ermanno Baschiera (@ebaschiera)](https://github.com/ebaschiera "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ernest W\. Durbin III (@ewdurbin)](https://github.com/ewdurbin "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Ernst79 (@Ernst79)](https://github.com/Ernst79 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Ernst Klamer (@Ernst79)](https://github.com/Ernst79 "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to home-assistant ") - [ErnstEeldert (@ErnstEeldert)](https://github.com/ErnstEeldert "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [escoand (@escoand)](https://github.com/escoand "15 total commits to the Home Assistant orga: -9 commits to home-assistant +- [Esben Damgaard (@Ebbe)](https://github.com/Ebbe "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [escoand (@escoand)](https://github.com/escoand "23 total commits to the Home Assistant orga: +16 commits to home-assistant +4 commits to home-assistant.io 3 commits to netdisco -3 commits to home-assistant.io ") - [EspenT (@EspenT)](https://github.com/EspenT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [etheralm (@etheralm)](https://github.com/etheralm "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [etheralm (@etheralm)](https://github.com/etheralm "5 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io ") - [Ettienne Gous (@ettiennegous)](https://github.com/ettiennegous "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3276,16 +3773,16 @@ This page contains a list of people who have contributed in one way or another t - [Eugenio Panadero (@azogue)](https://github.com/azogue "78 total commits to the Home Assistant orga: 46 commits to home-assistant 25 commits to home-assistant.io -3 commits to homebridge-homeassistant 3 commits to home-assistant-polymer +3 commits to homebridge-homeassistant 1 commit to people ") -- [Evan Bruhn (@evanjd)](https://github.com/evanjd "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [Evan Bruhn (@evanjd)](https://github.com/evanjd "11 total commits to the Home Assistant orga: +8 commits to home-assistant +3 commits to home-assistant.io ") -- [Evan Morse (@RowdyDog12)](https://github.com/RowdyDog12 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Evan Morse (@RowdyDog12)](https://github.com/RowdyDog12 "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [everix1992 (@everix1992)](https://github.com/everix1992 "4 total commits to the Home Assistant orga: 2 commits to pyharmony @@ -3308,32 +3805,36 @@ This page contains a list of people who have contributed in one way or another t - [eXtgmA (@eXtgmA)](https://github.com/eXtgmA "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [eyager1 (@eyager1)](https://github.com/eyager1 "1 total commits to the Home Assistant orga: +- [eyager1 (@eyager1)](https://github.com/eyager1 "7 total commits to the Home Assistant orga: +3 commits to home-assistant +3 commits to home-assistant.io 1 commit to home-assistant-polymer ") - [Ezra Bowden (@bn0)](https://github.com/bn0 "2 total commits to the Home Assistant orga: 2 commits to warrant ") -- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5487 total commits to the Home Assistant orga: -3301 commits to home-assistant.io -1897 commits to home-assistant -91 commits to home-assistant-cli -43 commits to developers.home-assistant -36 commits to home-assistant-notebooks +- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5728 total commits to the Home Assistant orga: +3340 commits to home-assistant.io +2003 commits to home-assistant +163 commits to home-assistant-cli +53 commits to developers.home-assistant +39 commits to home-assistant-notebooks 33 commits to home-assistant-assets 18 commits to organization-internal 12 commits to hassio-build +12 commits to data.home-assistant 11 commits to home-assistant-polymer 11 commits to netdisco +7 commits to hass-release 7 commits to hassos -6 commits to hassio-addons 6 commits to hassio -6 commits to hass-release -4 commits to data.home-assistant +6 commits to hassio-addons 2 commits to home-assistant-iOS 1 commit to home-assistant-js-websocket -1 commit to example-custom-config +1 commit to appdaemon 1 commit to ui-schema +1 commit to example-custom-config +1 commit to home-assistant-android ") - [Fabian Fischer (@nodomain)](https://github.com/nodomain "1 total commits to the Home Assistant orga: 1 commit to hassio-addons @@ -3341,13 +3842,19 @@ This page contains a list of people who have contributed in one way or another t - [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the Home Assistant orga: 4 commits to home-assistant ") +- [Fabian Hirschmann (@fhirschmann)](https://github.com/fhirschmann "1 total commits to the Home Assistant orga: +1 commit to appdaemon +") +- [Fabian Rodriguez (@MagicFab)](https://github.com/MagicFab "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Fabien Piuzzi (@reefab)](https://github.com/reefab "13 total commits to the Home Assistant orga: 8 commits to home-assistant 4 commits to home-assistant.io 1 commit to home-assistant-polymer ") -- [Fabrice Fontaine (@ffontaine)](https://github.com/ffontaine "7 total commits to the Home Assistant orga: -7 commits to open-zwave +- [Fabio Fantoni (@Fantu)](https://github.com/Fantu "1 total commits to the Home Assistant orga: +1 commit to hassos ") - [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -3364,28 +3871,39 @@ This page contains a list of people who have contributed in one way or another t - [Fares Rihani (@anchepiece)](https://github.com/anchepiece "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [farmio (@farmio)](https://github.com/farmio "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Farid (@ooii)](https://github.com/ooii "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io ") - [Farzad Noorian (@fnoorian)](https://github.com/fnoorian "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Federico Ariel Castagnini (@facastagnini)](https://github.com/facastagnini "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Federico Leoni (@effelle)](https://github.com/effelle "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Federico Zivolo (@FezVrasta)](https://github.com/FezVrasta "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant ") -- [augustdipierro (@augustdipierro)](https://github.com/augustdipierro "3 total commits to the Home Assistant orga: +- [fedor1210 (@augustdipierro)](https://github.com/augustdipierro "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Felipe Cypriano (@fcy)](https://github.com/fcy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Felix (@xifle)](https://github.com/xifle "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Felipe Martins Diel (@felipediel)](https://github.com/felipediel "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Felix Breidenstein (@fleaz)](https://github.com/fleaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Felix Eckhofer (@tribut)](https://github.com/tribut "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Felix Fischer (@felixfischer)](https://github.com/felixfischer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -3398,6 +3916,9 @@ This page contains a list of people who have contributed in one way or another t - [fenner (@fenner)](https://github.com/fenner "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ferdinand (@ferdinand)](https://github.com/ferdinand "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ferdydek (@ferdydek)](https://github.com/ferdydek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3414,10 +3935,6 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 2 commits to home-assistant ") -- [FieldofClay (@FieldofClay)](https://github.com/FieldofClay "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io -") - [fignew (@fignew)](https://github.com/fignew "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3425,14 +3942,17 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 2 commits to home-assistant.io ") -- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "40 total commits to the Home Assistant orga: -24 commits to home-assistant +- [Filip van Hoeckel (@filip-van-hoeckel)](https://github.com/filip-van-hoeckel "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "46 total commits to the Home Assistant orga: +30 commits to home-assistant 12 commits to home-assistant.io 3 commits to netdisco 1 commit to people ") -- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [firstmentoring (@firstmentoring)](https://github.com/firstmentoring "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3454,6 +3974,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [flebourse (@flebourse)](https://github.com/flebourse "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [FletcherAU (@FletcherAU)](https://github.com/FletcherAU "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -3470,14 +3993,19 @@ This page contains a list of people who have contributed in one way or another t - [flopp999 (@flopp999)](https://github.com/flopp999 "7 total commits to the Home Assistant orga: 7 commits to open-zwave ") +- [Florent Thoumie (@flz)](https://github.com/flz "15 total commits to the Home Assistant orga: +11 commits to home-assistant +4 commits to home-assistant.io +") - [Florian Bachmann (@baflo)](https://github.com/baflo "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") - [Florian Bernd (@flobernd)](https://github.com/flobernd "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Florian Gareis (@TheZoker)](https://github.com/TheZoker "2 total commits to the Home Assistant orga: +- [Florian Gareis (@TheZoker)](https://github.com/TheZoker "3 total commits to the Home Assistant orga: 1 commit to developers.home-assistant +1 commit to home-assistant-android 1 commit to home-assistant.io ") - [Florian Harr (@caffeineflo)](https://github.com/caffeineflo "1 total commits to the Home Assistant orga: @@ -3491,9 +4019,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant 3 commits to netdisco ") -- [Florian Klien (@flowolf)](https://github.com/flowolf "28 total commits to the Home Assistant orga: -19 commits to home-assistant.io -7 commits to home-assistant +- [Florian Klien (@flowolf)](https://github.com/flowolf "34 total commits to the Home Assistant orga: +20 commits to home-assistant.io +12 commits to home-assistant 2 commits to home-assistant-assets ") - [Florian Ludwig (@FlorianLudwig)](https://github.com/FlorianLudwig "2 total commits to the Home Assistant orga: @@ -3509,17 +4037,31 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to home-assistant +3 commits to home-assistant.io +") +- [Floris Van der krieken (@florisvdk)](https://github.com/florisvdk "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io ") - [Floyd Pink (@floydpink)](https://github.com/floydpink "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Fonta (@f0nt4)](https://github.com/f0nt4 "4 total commits to the Home Assistant orga: +- [Flsab (@flsabourin)](https://github.com/flsabourin "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [fmartens (@fmartens)](https://github.com/fmartens "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Fonta (@Fonta)](https://github.com/Fonta "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [fortepc (@fortepc)](https://github.com/fortepc "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [foreign\-sub (@foreign-sub)](https://github.com/foreign-sub "4 total commits to the Home Assistant orga: +4 commits to home-assistant +") +- [Forte (@fortepc)](https://github.com/fortepc "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [fotoetienne (@fotoetienne)](https://github.com/fotoetienne "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -3528,34 +4070,46 @@ This page contains a list of people who have contributed in one way or another t - [fotvoren (@fotvoren)](https://github.com/fotvoren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [foxy82 (@foxy82)](https://github.com/foxy82 "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Fran (@franfos)](https://github.com/franfos "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [fran1987 (@fran1987)](https://github.com/fran1987 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Frances Coronel (@fvcproductions)](https://github.com/fvcproductions "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Franck Nijhof (@frenck)](https://github.com/frenck "159 total commits to the Home Assistant orga: -83 commits to home-assistant.io -23 commits to hassio-cli -16 commits to home-assistant -12 commits to hassio -11 commits to developers.home-assistant -6 commits to hassio-addons -3 commits to home-assistant-polymer +- [Franck Nijhof (@frenck)](https://github.com/frenck "473 total commits to the Home Assistant orga: +244 commits to home-assistant.io +97 commits to home-assistant +38 commits to hassio-cli +31 commits to hassio-addons +22 commits to hassio +14 commits to developers.home-assistant +5 commits to home-assistant-polymer +4 commits to hass-release +3 commits to hassos +3 commits to hassos-cli +2 commits to hassio-base +2 commits to data.home-assistant +2 commits to alerts.home-assistant.io +1 commit to home-assistant-assets 1 commit to appdaemon -1 commit to hassio-build -1 commit to hassos +1 commit to hassio-homeassistant 1 commit to hassio-addons-development -1 commit to data.home-assistant +1 commit to architecture +1 commit to hassio-build ") - [Frank (@syphernl)](https://github.com/syphernl "3 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Frank Niesten (@Frankniesten)](https://github.com/Frankniesten "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Frank Wickström (@frwickst)](https://github.com/frwickst "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -3577,22 +4131,34 @@ This page contains a list of people who have contributed in one way or another t - [Frederic Hemberger (@fhemberger)](https://github.com/fhemberger "93 total commits to the Home Assistant orga: 93 commits to home-assistant.io ") -- [Frederik Bolding (@FrederikBolding)](https://github.com/FrederikBolding "6 total commits to the Home Assistant orga: -4 commits to home-assistant +- [fredericvl (@fredericvl)](https://github.com/fredericvl "9 total commits to the Home Assistant orga: +6 commits to home-assistant +3 commits to home-assistant.io +") +- [Frederik Bolding (@FrederikBolding)](https://github.com/FrederikBolding "7 total commits to the Home Assistant orga: +5 commits to home-assistant 2 commits to home-assistant.io ") +- [Frederik Gladhorn (@gladhorn)](https://github.com/gladhorn "2 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +1 commit to developers.home-assistant +") - [fredespi (@fredespi)](https://github.com/fredespi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "7 total commits to the Home Assistant orga: +- [Fredrik (@fohlsso2)](https://github.com/fohlsso2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to developers.home-assistant +2 commits to developers.home-assistant 1 commit to home-assistant ") -- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "58 total commits to the Home Assistant orga: -44 commits to home-assistant -12 commits to home-assistant.io +- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "92 total commits to the Home Assistant orga: +70 commits to home-assistant +19 commits to home-assistant.io 2 commits to developers.home-assistant +1 commit to hassio ") - [Fredrik Fjeld (@fredrikfjeld)](https://github.com/fredrikfjeld "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3600,10 +4166,10 @@ This page contains a list of people who have contributed in one way or another t - [Fredrik Haglund (@PetitCircuitLab)](https://github.com/PetitCircuitLab "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Fredrik Lindqvist (@Landrash)](https://github.com/Landrash "282 total commits to the Home Assistant orga: -160 commits to hassbian-scripts -73 commits to home-assistant.io -44 commits to pi-gen +- [Fredrik Lindqvist (@Landrash)](https://github.com/Landrash "327 total commits to the Home Assistant orga: +199 commits to hassbian-scripts +75 commits to home-assistant.io +48 commits to pi-gen 4 commits to home-assistant 1 commit to home-assistant-polymer ") @@ -3633,6 +4199,10 @@ This page contains a list of people who have contributed in one way or another t - [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the Home Assistant orga: 13 commits to home-assistant.io ") +- [fwestenberg (@fwestenberg)](https://github.com/fwestenberg "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [G\. Hussain Chinoy (@ghchinoy)](https://github.com/ghchinoy "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -3646,8 +4216,8 @@ This page contains a list of people who have contributed in one way or another t ") - [Gabriel Oliveira (@gabrielboliveira)](https://github.com/gabrielboliveira "4 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer -1 commit to hassio-addons 1 commit to hassos +1 commit to hassio-addons 1 commit to home-assistant.io ") - [GadgetReactor (@GadgetReactor)](https://github.com/GadgetReactor "2 total commits to the Home Assistant orga: @@ -3656,6 +4226,9 @@ This page contains a list of people who have contributed in one way or another t - [Gaetan Semet (@gsemet)](https://github.com/gsemet "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [galsom (@galsom)](https://github.com/galsom "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Galtwise (@Galtwise)](https://github.com/Galtwise "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -3671,7 +4244,8 @@ This page contains a list of people who have contributed in one way or another t - [Gary Barclay (@Bodge-IT)](https://github.com/Bodge-IT "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [GaryOkie (@GaryOkie)](https://github.com/GaryOkie "1 total commits to the Home Assistant orga: +- [GaryOkie (@GaryOkie)](https://github.com/GaryOkie "2 total commits to the Home Assistant orga: +1 commit to home-assistant 1 commit to home-assistant.io ") - [Gaston Dombiak (@gdombiak)](https://github.com/gdombiak "4 total commits to the Home Assistant orga: @@ -3690,13 +4264,20 @@ This page contains a list of people who have contributed in one way or another t - [gazoscalvertos (@gazoscalvertos)](https://github.com/gazoscalvertos "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Gedde (@raygoat)](https://github.com/raygoat "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [geekman2 (@geekman2)](https://github.com/geekman2 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [geekofweek (@geekofweek)](https://github.com/geekofweek "3 total commits to the Home Assistant orga: -3 commits to home-assistant +- [geekofweek (@geekofweek)](https://github.com/geekofweek "5 total commits to the Home Assistant orga: +5 commits to home-assistant ") -- [Geert van Horrik (@GeertvanHorrik)](https://github.com/GeertvanHorrik "1 total commits to the Home Assistant orga: +- [Geert (@ge2rt)](https://github.com/ge2rt "1 total commits to the Home Assistant orga: +1 commit to alerts.home-assistant.io +") +- [Geert van Horrik (@GeertvanHorrik)](https://github.com/GeertvanHorrik "2 total commits to the Home Assistant orga: +1 commit to home-assistant 1 commit to home-assistant.io ") - [geirra (@geirra)](https://github.com/geirra "2 total commits to the Home Assistant orga: @@ -3706,9 +4287,9 @@ This page contains a list of people who have contributed in one way or another t - [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the Home Assistant orga: 14 commits to home-assistant ") -- [GeoffAtHome (@GeoffAtHome)](https://github.com/GeoffAtHome "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [GeoffAtHome (@GeoffAtHome)](https://github.com/GeoffAtHome "6 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to home-assistant ") - [Geoffrey Westhoff (@GeoffreyWesthoff)](https://github.com/GeoffreyWesthoff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3725,8 +4306,8 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to home-assistant ") -- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "23 total commits to the Home Assistant orga: -13 commits to home-assistant.io +- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "24 total commits to the Home Assistant orga: +14 commits to home-assistant.io 7 commits to home-assistant 1 commit to appdaemon 1 commit to developers.home-assistant @@ -3745,12 +4326,10 @@ This page contains a list of people who have contributed in one way or another t - [georgroehl (@georgroehl)](https://github.com/georgroehl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Gerard (@erorus)](https://github.com/erorus "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") -- [Gerard (@gerard33)](https://github.com/gerard33 "27 total commits to the Home Assistant orga: -18 commits to home-assistant.io -9 commits to home-assistant +- [Gerard (@gerard33)](https://github.com/gerard33 "38 total commits to the Home Assistant orga: +23 commits to home-assistant.io +13 commits to home-assistant +2 commits to hassio-addons ") - [Gerardo Castillo (@altersis)](https://github.com/altersis "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -3769,9 +4348,6 @@ This page contains a list of people who have contributed in one way or another t - [gerliczky (@gerliczky)](https://github.com/gerliczky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [germeier (@germeier)](https://github.com/germeier "17 total commits to the Home Assistant orga: -17 commits to dehydrated -") - [Gert (@Gerto)](https://github.com/Gerto "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -3801,12 +4377,15 @@ This page contains a list of people who have contributed in one way or another t - [Gianpaolo Macario (@gmacario)](https://github.com/gmacario "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [gibman (@gibman)](https://github.com/gibman "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "9 total commits to the Home Assistant orga: 5 commits to home-assistant.io 4 commits to home-assistant ") -- [giefca (@giefca)](https://github.com/giefca "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [giefca (@giefca)](https://github.com/giefca "4 total commits to the Home Assistant orga: +4 commits to home-assistant ") - [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "7 total commits to the Home Assistant orga: 5 commits to home-assistant @@ -3815,12 +4394,16 @@ This page contains a list of people who have contributed in one way or another t - [Gijs Reichert (@GGeezes)](https://github.com/GGeezes "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") +- [Gil Peeters (@grillp)](https://github.com/grillp "17 total commits to the Home Assistant orga: +9 commits to home-assistant.io +8 commits to home-assistant +") +- [Gilad Peleg (@pgilad)](https://github.com/pgilad "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Gilles Margerie (@Gilles95)](https://github.com/Gilles95 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [gillkyle (@gillkyle)](https://github.com/gillkyle "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") - [Giorgos Logiotatidis (@glogiotatidis)](https://github.com/glogiotatidis "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant @@ -3842,12 +4425,16 @@ This page contains a list of people who have contributed in one way or another t - [gizmocuz (@gizmocuz)](https://github.com/gizmocuz "21 total commits to the Home Assistant orga: 21 commits to open-zwave ") +- [gjbadros (@gjbadros)](https://github.com/gjbadros "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [Glen Takahashi (@glentakahashi)](https://github.com/glentakahashi "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io ") -- [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "10 total commits to the Home Assistant orga: +10 commits to home-assistant.io ") - [Glenn Waters (@gwww)](https://github.com/gwww "19 total commits to the Home Assistant orga: 11 commits to home-assistant @@ -3871,6 +4458,10 @@ This page contains a list of people who have contributed in one way or another t - [GMFalka (@GMFalka)](https://github.com/GMFalka "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [gngj (@gngj)](https://github.com/gngj "7 total commits to the Home Assistant orga: +5 commits to home-assistant +2 commits to home-assistant.io +") - [Goir (@goir)](https://github.com/goir "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -3878,12 +4469,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [GoNzCiD (@GoNzCiD)](https://github.com/GoNzCiD "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [Gopal Kildoliya (@gopalkildoliya)](https://github.com/gopalkildoliya "6 total commits to the Home Assistant orga: 4 commits to home-assistant 2 commits to home-assistant.io ") -- [GoSpursGoNL (@GoSpursGoNL)](https://github.com/GoSpursGoNL "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [GoSpursGoNL (@GoSpursGoNL)](https://github.com/GoSpursGoNL "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [goto100 (@goto100)](https://github.com/goto100 "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -3912,11 +4507,15 @@ This page contains a list of people who have contributed in one way or another t 75 commits to home-assistant.io 8 commits to home-assistant ") +- [Greg (@gtdiehl)](https://github.com/gtdiehl "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [Greg (@theCMack)](https://github.com/theCMack "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Greg Dowling (@pavoni)](https://github.com/pavoni "212 total commits to the Home Assistant orga: -185 commits to home-assistant +- [Greg Dowling (@pavoni)](https://github.com/pavoni "213 total commits to the Home Assistant orga: +186 commits to home-assistant 25 commits to home-assistant.io 1 commit to netdisco 1 commit to people @@ -3924,14 +4523,21 @@ This page contains a list of people who have contributed in one way or another t - [Greg Johnson (@notgwj)](https://github.com/notgwj "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "29 total commits to the Home Assistant orga: -23 commits to home-assistant +- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "33 total commits to the Home Assistant orga: +27 commits to home-assistant 5 commits to home-assistant.io 1 commit to people ") - [Greg MacLellan (@gregmac)](https://github.com/gregmac "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Greg Rapp (@gdrapp)](https://github.com/gdrapp "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Greg Schwartz (@gregschwartz)](https://github.com/gregschwartz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") @@ -3939,6 +4545,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [gregod (@gregod)](https://github.com/gregod "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [Gregor Gruener (@ggruner)](https://github.com/ggruner "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -3952,15 +4561,25 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Gregory Knox (@Knoxie)](https://github.com/Knoxie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [gregwis (@gregwis)](https://github.com/gregwis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [gremblin (@e2m32)](https://github.com/e2m32 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Grodesh (@Grodesh)](https://github.com/Grodesh "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [groth\-its (@groth-its)](https://github.com/groth-its "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Grégoire M\. (@M-Gregoire)](https://github.com/M-Gregoire "1 total commits to the Home Assistant orga: +1 commit to hassio-installer +") - [gstorer (@gstorer)](https://github.com/gstorer "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -3969,15 +4588,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") +- [gth (@gth)](https://github.com/gth "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [gudata (@gudata)](https://github.com/gudata "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") - [Guilherme Conti Teixeira (@guiconti)](https://github.com/guiconti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Guillaume Boudrias (@gboudrias)](https://github.com/gboudrias "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [Guillaume Rischard (@grischard)](https://github.com/grischard "3 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer 1 commit to home-assistant @@ -3993,15 +4612,18 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") +- [guillempages (@guillempages)](https://github.com/guillempages "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") - [Gummientchen (@Gummientchen)](https://github.com/Gummientchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the Home Assistant orga: 20 commits to home-assistant ") -- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io -1 commit to home-assistant +- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "9 total commits to the Home Assistant orga: +7 commits to home-assistant.io +2 commits to home-assistant ") - [Guy Parisi (@Guyanthalas)](https://github.com/Guyanthalas "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io @@ -4020,9 +4642,23 @@ This page contains a list of people who have contributed in one way or another t - [gwmullin (@gwmullin)](https://github.com/gwmullin "24 total commits to the Home Assistant orga: 24 commits to open-zwave ") +- [h3ndrik (@h3ndrik)](https://github.com/h3ndrik "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [h4ckNinja (@h4ckninja)](https://github.com/h4ckninja "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [haakon storm heen (@haakonstorm)](https://github.com/haakonstorm "2 total commits to the Home Assistant orga: +1 commit to home-assistant-cli +1 commit to home-assistant.io +") - [Hackashaq666 (@Hackashaq666)](https://github.com/Hackashaq666 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Hadi Victorya (@hadipsy27)](https://github.com/hadipsy27 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Haim Gelfenbeyn (@haimgel)](https://github.com/haimgel "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -4036,6 +4672,10 @@ This page contains a list of people who have contributed in one way or another t - [Hans Knöchel (@hansemannn)](https://github.com/hansemannn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Hans Oischinger (@oischinger)](https://github.com/oischinger "5 total commits to the Home Assistant orga: +4 commits to home-assistant +1 commit to home-assistant.io +") - [Hans Svedåker (@svedaker)](https://github.com/svedaker "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -4049,8 +4689,8 @@ This page contains a list of people who have contributed in one way or another t - [happyleavesaoc (@happyleavesaoc)](https://github.com/happyleavesaoc "115 total commits to the Home Assistant orga: 90 commits to home-assistant 23 commits to home-assistant.io -1 commit to home-assistant-polymer 1 commit to people +1 commit to home-assistant-polymer ") - [Harald Klein (@haklein)](https://github.com/haklein "98 total commits to the Home Assistant orga: 98 commits to open-zwave @@ -4062,16 +4702,25 @@ This page contains a list of people who have contributed in one way or another t - [Harm\-Jan Roskam (@harmjanr)](https://github.com/harmjanr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Haroen Viaene (@Haroenv)](https://github.com/Haroenv "3 total commits to the Home Assistant orga: +3 commits to Iconic +") - [Harris Borawski (@hborawski)](https://github.com/hborawski "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Harrison Pace (@thehaxxa)](https://github.com/thehaxxa "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Harry Kantas (@harrykantas)](https://github.com/harrykantas "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Harvtronix (@Harvtronix)](https://github.com/Harvtronix "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [hasscasts (@hasscasts)](https://github.com/hasscasts "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Hate\-Usernames (@Hate-Usernames)](https://github.com/Hate-Usernames "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") @@ -4084,6 +4733,10 @@ This page contains a list of people who have contributed in one way or another t - [haXs (@haXs)](https://github.com/haXs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Hayley McIldoon (@shmooey)](https://github.com/shmooey "4 total commits to the Home Assistant orga: +2 commits to home-assistant-polymer +2 commits to home-assistant +") - [HBDK (@HBDK)](https://github.com/HBDK "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -4099,12 +4752,9 @@ This page contains a list of people who have contributed in one way or another t - [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the Home Assistant orga: 6 commits to home-assistant ") -- [heckler (@heckler)](https://github.com/heckler "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -") -- [Hedda (@Hedda)](https://github.com/Hedda "2 total commits to the Home Assistant orga: +- [Hedda (@Hedda)](https://github.com/Hedda "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to home-assistant -1 commit to home-assistant.io ") - [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "21 total commits to the Home Assistant orga: 15 commits to home-assistant @@ -4114,9 +4764,10 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant 5 commits to home-assistant.io ") -- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "10 total commits to the Home Assistant orga: -5 commits to home-assistant.io -5 commits to home-assistant +- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "14 total commits to the Home Assistant orga: +7 commits to home-assistant +6 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Heinrich Dahms (@htdahms)](https://github.com/htdahms "1 total commits to the Home Assistant orga: 1 commit to home-assistant-iOS @@ -4143,6 +4794,9 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant 2 commits to home-assistant.io ") +- [Henry Ou (@henryouly)](https://github.com/henryouly "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [henryk (@henryk)](https://github.com/henryk "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -4162,8 +4816,9 @@ This page contains a list of people who have contributed in one way or another t - [heymoe (@heymoe)](https://github.com/heymoe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [heytcass (@heytcass)](https://github.com/heytcass "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [heytcass (@heytcass)](https://github.com/heytcass "11 total commits to the Home Assistant orga: +9 commits to home-assistant.io +1 commit to developers.home-assistant 1 commit to home-assistant ") - [HFeenstra (@HFeenstra)](https://github.com/HFeenstra "1 total commits to the Home Assistant orga: @@ -4175,9 +4830,9 @@ This page contains a list of people who have contributed in one way or another t - [hitokiri8x (@hitokiri8x)](https://github.com/hitokiri8x "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Hmmbob (@hmmbob)](https://github.com/hmmbob "18 total commits to the Home Assistant orga: -11 commits to home-assistant.io -6 commits to home-assistant +- [Hmmbob (@hmmbob)](https://github.com/hmmbob "35 total commits to the Home Assistant orga: +27 commits to home-assistant.io +7 commits to home-assistant 1 commit to home-assistant-polymer ") - [hokagegano (@hokagegano)](https://github.com/hokagegano "2 total commits to the Home Assistant orga: @@ -4189,10 +4844,18 @@ This page contains a list of people who have contributed in one way or another t - [holelattanuttin (@holelattanuttin)](https://github.com/holelattanuttin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Home Assistant Bot (@homeassistant)](https://github.com/homeassistant "65 total commits to the Home Assistant orga: +63 commits to home-assistant +1 commit to developers.home-assistant +1 commit to companion.home-assistant +") - [honcheng (@honcheng)](https://github.com/honcheng "3 total commits to the Home Assistant orga: 2 commits to homebridge-homeassistant 1 commit to home-assistant.io ") +- [Honza Slesinger (@slesinger)](https://github.com/slesinger "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Hoobie7 (@Hoobie7)](https://github.com/Hoobie7 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4213,6 +4876,9 @@ This page contains a list of people who have contributed in one way or another t - [Hu Hao (@howiehu)](https://github.com/howiehu "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [HUANG da (@huangda1982)](https://github.com/huangda1982 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [huangyupeng (@huangyupeng)](https://github.com/huangyupeng "15 total commits to the Home Assistant orga: 8 commits to home-assistant 7 commits to home-assistant.io @@ -4220,6 +4886,10 @@ This page contains a list of people who have contributed in one way or another t - [hubertbanas (@hubertbanas)](https://github.com/hubertbanas "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Hugh Eaves (@hugheaves)](https://github.com/hugheaves "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Hugo Dupras (@jabesq)](https://github.com/jabesq "29 total commits to the Home Assistant orga: 21 commits to home-assistant 8 commits to home-assistant.io @@ -4230,13 +4900,16 @@ This page contains a list of people who have contributed in one way or another t - [Hugo Herter (@hoh)](https://github.com/hoh "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Hugo Hromic (@hhromic)](https://github.com/hhromic "7 total commits to the Home Assistant orga: -7 commits to pi-gen +- [Hugo Hromic (@hhromic)](https://github.com/hhromic "9 total commits to the Home Assistant orga: +9 commits to pi-gen ") - [hulkhaugen (@hulkhaugen)](https://github.com/hulkhaugen "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer 1 commit to home-assistant.io ") +- [Humberto Rodríguez A\. (@rhumbertgz)](https://github.com/rhumbertgz "203 total commits to the Home Assistant orga: +203 commits to appdaemon +") - [Hung Le (@hungle)](https://github.com/hungle "1 total commits to the Home Assistant orga: 1 commit to libcoap ") @@ -4282,9 +4955,13 @@ This page contains a list of people who have contributed in one way or another t - [iainsmacleod (@iainsmacleod)](https://github.com/iainsmacleod "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ian (@Apocrathia)](https://github.com/Apocrathia "1 total commits to the Home Assistant orga: +- [Ian (@ViViDboarder)](https://github.com/ViViDboarder "4 total commits to the Home Assistant orga: +3 commits to home-assistant 1 commit to home-assistant.io ") +- [Ian (@Apocrathia)](https://github.com/Apocrathia "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Ian Copp (@icopp)](https://github.com/icopp "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") @@ -4294,10 +4971,10 @@ This page contains a list of people who have contributed in one way or another t - [Ian Day (@iandday)](https://github.com/iandday "16 total commits to the Home Assistant orga: 16 commits to pyharmony ") -- [Ian Richardson (@iantrich)](https://github.com/iantrich "208 total commits to the Home Assistant orga: -160 commits to home-assistant-polymer -37 commits to home-assistant.io -6 commits to home-assistant +- [Ian Richardson (@iantrich)](https://github.com/iantrich "313 total commits to the Home Assistant orga: +234 commits to home-assistant-polymer +67 commits to home-assistant.io +7 commits to home-assistant 2 commits to ui-schema 2 commits to developers.home-assistant 1 commit to people @@ -4315,8 +4992,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons ") - [icovada (@icovada)](https://github.com/icovada "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to home-assistant +3 commits to home-assistant.io ") - [idfxken (@idfxken)](https://github.com/idfxken "5 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -4333,8 +5010,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") -- [IIIdefconIII (@IIIdefconIII)](https://github.com/IIIdefconIII "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [IIIdefconIII (@IIIdefconIII)](https://github.com/IIIdefconIII "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [ikifar2012 (@ikifar2012)](https://github.com/ikifar2012 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -4355,12 +5032,19 @@ This page contains a list of people who have contributed in one way or another t - [Illia Grybkov (@igrybkov)](https://github.com/igrybkov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [indykoning (@indykoning)](https://github.com/indykoning "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Ing\. Jaroslav Šafka (@jedi7)](https://github.com/jedi7 "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") - [Ingmar Stein (@IngmarStein)](https://github.com/IngmarStein "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Ingo Theiss (@itn3rd77)](https://github.com/itn3rd77 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [InovelliUSA (@InovelliUSA)](https://github.com/InovelliUSA "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -4389,9 +5073,12 @@ This page contains a list of people who have contributed in one way or another t - [irvingwa (@irvingwa)](https://github.com/irvingwa "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "10 total commits to the Home Assistant orga: -8 commits to home-assistant.io -2 commits to home-assistant +- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "12 total commits to the Home Assistant orga: +9 commits to home-assistant.io +3 commits to home-assistant +") +- [Issac (@issacg)](https://github.com/issacg "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [Issac Kelly (@issackelly)](https://github.com/issackelly "3 total commits to the Home Assistant orga: 3 commits to home-assistant @@ -4402,12 +5089,18 @@ This page contains a list of people who have contributed in one way or another t - [itineric (@itineric)](https://github.com/itineric "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ivo (@ivotje50)](https://github.com/ivotje50 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ivo Wever (@Confusion)](https://github.com/Confusion "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [j james (@wakeuplaughing)](https://github.com/wakeuplaughing "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [J3n50m4t (@J3n50m4t)](https://github.com/J3n50m4t "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [J4nsen (@J4nsen)](https://github.com/J4nsen "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -4420,10 +5113,15 @@ This page contains a list of people who have contributed in one way or another t - [J\.A\.P\. Klessens (@JKlessens)](https://github.com/JKlessens "40 total commits to the Home Assistant orga: 40 commits to open-zwave ") +- [J\.P\. Hutchins (@JPHutchins)](https://github.com/JPHutchins "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Jaak Laineste (@jaakla)](https://github.com/jaakla "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") -- [jaburges (@jaburges)](https://github.com/jaburges "1 total commits to the Home Assistant orga: +- [jaburges (@jaburges)](https://github.com/jaburges "2 total commits to the Home Assistant orga: +1 commit to home-assistant 1 commit to home-assistant.io ") - [Jacen (@jacen92)](https://github.com/jacen92 "2 total commits to the Home Assistant orga: @@ -4454,9 +5152,18 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant-polymer 1 commit to home-assistant.io ") -- [Jacob Mansfield (@cyberjacob)](https://github.com/cyberjacob "6 total commits to the Home Assistant orga: -3 commits to home-assistant -3 commits to home-assistant.io +- [Jack Yin (@jkyin)](https://github.com/jkyin "6 total commits to the Home Assistant orga: +6 commits to Iconic +") +- [jack1142 (@jack1142)](https://github.com/jack1142 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jackie Yang (@valkjsaaa)](https://github.com/valkjsaaa "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Jacob Mansfield (@cyberjacob)](https://github.com/cyberjacob "9 total commits to the Home Assistant orga: +5 commits to home-assistant +4 commits to home-assistant.io ") - [Jacob Minnis (@jminn)](https://github.com/jminn "2 total commits to the Home Assistant orga: 2 commits to home-assistant @@ -4477,9 +5184,6 @@ This page contains a list of people who have contributed in one way or another t - [jagjordi (@jagjordi)](https://github.com/jagjordi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jaimyn Mayer (@jabelone)](https://github.com/jabelone "1 total commits to the Home Assistant orga: -1 commit to hassbian-scripts -") - [Jake McCrary (@jakemcc)](https://github.com/jakemcc "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -4489,6 +5193,9 @@ This page contains a list of people who have contributed in one way or another t - [Jakob Reiter (@jakommo)](https://github.com/jakommo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jakub (@lenisko)](https://github.com/lenisko "1 total commits to the Home Assistant orga: +1 commit to hassio +") - [Jakub Bittner (@rexcze)](https://github.com/rexcze "2 total commits to the Home Assistant orga: 2 commits to home-assistant-polymer ") @@ -4498,8 +5205,8 @@ This page contains a list of people who have contributed in one way or another t - [jakubradziwon (@jakubradziwon)](https://github.com/jakubradziwon "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [James (@jimbob1001)](https://github.com/jimbob1001 "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [James (@jimbob1001)](https://github.com/jimbob1001 "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [James Clancey (@Clancey)](https://github.com/Clancey "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -4511,6 +5218,9 @@ This page contains a list of people who have contributed in one way or another t - [James Crook (@cooljimy84)](https://github.com/cooljimy84 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [James Goodhouse (@jamesgoodhouse)](https://github.com/jamesgoodhouse "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [James Hilliard (@jameshilliard)](https://github.com/jameshilliard "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -4528,21 +5238,26 @@ This page contains a list of people who have contributed in one way or another t - [james\-fry (@james-fry)](https://github.com/james-fry "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [JamesMcClelland (@JamesMcClelland)](https://github.com/JamesMcClelland "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") - [jamesthomas128 (@jamesthomas128)](https://github.com/jamesthomas128 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Jamie Shaw (@jamieshaw)](https://github.com/jamieshaw "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Jamie van Dyke (@fearoffish)](https://github.com/fearoffish "3 total commits to the Home Assistant orga: +- [Jamie van Dyke (@fearoffish)](https://github.com/fearoffish "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant-iOS +1 commit to people ") -- [jaminh (@jaminh)](https://github.com/jaminh "1 total commits to the Home Assistant orga: +- [jaminh (@jaminh)](https://github.com/jaminh "2 total commits to the Home Assistant orga: 1 commit to open-zwave +1 commit to home-assistant ") -- [JamesMcClelland (@JamesMcClelland)](https://github.com/JamesMcClelland "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Jan (@jevermeister)](https://github.com/jevermeister "1 total commits to the Home Assistant orga: +1 commit to hassos ") - [Jan Almeroth (@jalmeroth)](https://github.com/jalmeroth "8 total commits to the Home Assistant orga: 5 commits to home-assistant @@ -4566,8 +5281,9 @@ This page contains a list of people who have contributed in one way or another t 16 commits to home-assistant 6 commits to home-assistant.io ") -- [Jan Olbrecht (@olbjan)](https://github.com/olbjan "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Jan Olbrecht (@olbjan)](https://github.com/olbjan "7 total commits to the Home Assistant orga: +4 commits to companion.home-assistant +3 commits to home-assistant.io ") - [Jan Peer Stöcklmair (@JPeer264)](https://github.com/JPeer264 "3 total commits to the Home Assistant orga: 3 commits to 1password-teams-open-source @@ -4578,9 +5294,6 @@ This page contains a list of people who have contributed in one way or another t - [Jan Sepke (@jansepke)](https://github.com/jansepke "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jan Tore Morken (@jantore)](https://github.com/jantore "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [Jan van Helvoort (@janvanhelvoort)](https://github.com/janvanhelvoort "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -4598,6 +5311,10 @@ This page contains a list of people who have contributed in one way or another t - [Janos Racz (@rczjns)](https://github.com/rczjns "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jardi Martinez (@jardiamj)](https://github.com/jardiamj "9 total commits to the Home Assistant orga: +7 commits to home-assistant.io +2 commits to home-assistant +") - [Jared Beckham (@jtbeckha)](https://github.com/jtbeckha "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -4636,23 +5353,24 @@ This page contains a list of people who have contributed in one way or another t - [Jason Hite (@jasonmhite)](https://github.com/jasonmhite "6 total commits to the Home Assistant orga: 6 commits to appdaemon ") -- [Jason Hu (@awarecan)](https://github.com/awarecan "256 total commits to the Home Assistant orga: -174 commits to home-assistant -34 commits to home-assistant.io -32 commits to home-assistant-polymer +- [Jason Hu (@awarecan)](https://github.com/awarecan "291 total commits to the Home Assistant orga: +200 commits to home-assistant +41 commits to home-assistant.io +34 commits to home-assistant-polymer 10 commits to developers.home-assistant -2 commits to home-assistant-Android -1 commit to home-assistant-js-websocket +2 commits to home-assistant-android 1 commit to LabelBot 1 commit to netdisco +1 commit to home-assistant-js-websocket 1 commit to people ") -- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "38 total commits to the Home Assistant orga: -24 commits to home-assistant -10 commits to home-assistant.io -2 commits to home-assistant-polymer -1 commit to actions +- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "51 total commits to the Home Assistant orga: +33 commits to home-assistant +12 commits to home-assistant.io +3 commits to home-assistant-polymer 1 commit to people +1 commit to developers.home-assistant +1 commit to actions ") - [Jason Kingsbury (@relvacode)](https://github.com/relvacode "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -4662,11 +5380,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "15 total commits to the Home Assistant orga: -7 commits to home-assistant-iOS -7 commits to home-assistant +- [Jason Lachowsky (@dajo)](https://github.com/dajo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "88 total commits to the Home Assistant orga: +55 commits to home-assistant +26 commits to home-assistant.io +7 commits to home-assistant-iOS +") - [Jason Schollenberger (@jschollenberger)](https://github.com/jschollenberger "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4685,25 +5406,39 @@ This page contains a list of people who have contributed in one way or another t - [Jason Woodward (@woodwardjd)](https://github.com/woodwardjd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jasper van der Neut \- Stulen (@jvanderneutstulen)](https://github.com/jvanderneutstulen "10 total commits to the Home Assistant orga: -8 commits to hassos -2 commits to home-assistant +- [jasonbuechler (@jasonbuechler)](https://github.com/jasonbuechler "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") -- [javicalle (@javicalle)](https://github.com/javicalle "18 total commits to the Home Assistant orga: +- [Jasper van der Neut \- Stulen (@jvanderneutstulen)](https://github.com/jvanderneutstulen "12 total commits to the Home Assistant orga: +8 commits to hassos +3 commits to home-assistant +1 commit to people +") +- [javicalle (@javicalle)](https://github.com/javicalle "25 total commits to the Home Assistant orga: 13 commits to home-assistant.io -5 commits to home-assistant +12 commits to home-assistant ") - [Javier Gonel (@graffic)](https://github.com/graffic "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Javier González Calleja (@gonzalezcalleja)](https://github.com/gonzalezcalleja "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Javier González Calleja (@gonzalezcalleja)](https://github.com/gonzalezcalleja "6 total commits to the Home Assistant orga: +4 commits to home-assistant +2 commits to home-assistant.io +") +- [Javier Martínez (@JavierMartinz)](https://github.com/JavierMartinz "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Jaxom Nutt (@JaxomCS)](https://github.com/JaxomCS "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Jay (@Tediore)](https://github.com/Tediore "13 total commits to the Home Assistant orga: +13 commits to home-assistant.io +") +- [Jay (@jshridha)](https://github.com/jshridha "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Jay Love (@jslove)](https://github.com/jslove "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -4728,13 +5463,17 @@ This page contains a list of people who have contributed in one way or another t - [JBelinchon (@JBelinchon)](https://github.com/JBelinchon "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [jbrody17 (@jbrody17)](https://github.com/jbrody17 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [JC Connell (@jcconnell)](https://github.com/jcconnell "13 total commits to the Home Assistant orga: 7 commits to home-assistant.io 6 commits to home-assistant ") -- [Jc2k (@Jc2k)](https://github.com/Jc2k "31 total commits to the Home Assistant orga: -30 commits to home-assistant -1 commit to home-assistant.io +- [Jc2k (@Jc2k)](https://github.com/Jc2k "67 total commits to the Home Assistant orga: +64 commits to home-assistant +2 commits to home-assistant.io +1 commit to home-assistant-polymer ") - [jchasey (@jchasey)](https://github.com/jchasey "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -4742,6 +5481,9 @@ This page contains a list of people who have contributed in one way or another t - [jcrowegitHu8 (@jcrowegitHu8)](https://github.com/jcrowegitHu8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [jcullen86 (@jcullen86)](https://github.com/jcullen86 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [jdegraef (@jdegraef)](https://github.com/jdegraef "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4782,19 +5524,23 @@ This page contains a list of people who have contributed in one way or another t - [Jeena Paradies (@jeena)](https://github.com/jeena "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jef D (@danielsjf)](https://github.com/danielsjf "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Jef D (@danielsjf)](https://github.com/danielsjf "5 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io ") - [Jeff Boothe (@jboothe)](https://github.com/jboothe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jeff Cutsinger (@jeffcutsinger)](https://github.com/jeffcutsinger "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jeff Grieger (@jgrieger1)](https://github.com/jgrieger1 "2 total commits to the Home Assistant orga: 2 commits to appdaemon ") -- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "26 total commits to the Home Assistant orga: -19 commits to home-assistant -7 commits to home-assistant.io +- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "74 total commits to the Home Assistant orga: +49 commits to home-assistant +24 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Jeff Lewis (@Jeff-Lewis)](https://github.com/Jeff-Lewis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4818,6 +5564,9 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to pyharmony ") +- [jeff\-h (@jeff-h)](https://github.com/jeff-h "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [jeffh0821 (@jeffh0821)](https://github.com/jeffh0821 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4828,9 +5577,10 @@ This page contains a list of people who have contributed in one way or another t - [Jelmer Tiete (@JelmerT)](https://github.com/JelmerT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jens (@jensihnow)](https://github.com/jensihnow "6 total commits to the Home Assistant orga: -3 commits to home-assistant -3 commits to home-assistant.io +- [Jens (@jensihnow)](https://github.com/jensihnow "10 total commits to the Home Assistant orga: +5 commits to home-assistant.io +4 commits to home-assistant +1 commit to hassio-addons ") - [Jens (@jhoepken)](https://github.com/jhoepken "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -4841,9 +5591,12 @@ This page contains a list of people who have contributed in one way or another t - [Jens Nistler (@lociii)](https://github.com/lociii "1 total commits to the Home Assistant orga: 1 commit to netdisco ") +- [Jens Vanhooydonck (@JensVanhooydonck)](https://github.com/JensVanhooydonck "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "8 total commits to the Home Assistant orga: -4 commits to home-assistant.io 4 commits to home-assistant +4 commits to home-assistant.io ") - [jensjakob (@jensjakob)](https://github.com/jensjakob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4872,6 +5625,12 @@ This page contains a list of people who have contributed in one way or another t - [Jeremy Bunting (@qbunt)](https://github.com/qbunt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jeremy Cook (@jeremycook61)](https://github.com/jeremycook61 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jeremy Hettenhouser (@borland502)](https://github.com/borland502 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jeremy Klein (@jeremydk)](https://github.com/jeremydk "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to home-assistant @@ -4879,7 +5638,11 @@ This page contains a list of people who have contributed in one way or another t - [Jeremy Roe (@jeremyroe)](https://github.com/jeremyroe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeremy Volkman (@jvolkman)](https://github.com/jvolkman "1 total commits to the Home Assistant orga: +- [Jeremy Schlatter (@jeremyschlatter)](https://github.com/jeremyschlatter "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jeremy Volkman (@jvolkman)](https://github.com/jvolkman "2 total commits to the Home Assistant orga: +1 commit to open-zwave 1 commit to home-assistant ") - [Jeremy Williams (@jwillaz)](https://github.com/jwillaz "6 total commits to the Home Assistant orga: @@ -4905,12 +5668,20 @@ This page contains a list of people who have contributed in one way or another t - [Jerrod Lankford (@Jerrkawz)](https://github.com/Jerrkawz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jerry Chong (@zanglang)](https://github.com/zanglang "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Jerry Workman (@JerryWorkman)](https://github.com/JerryWorkman "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") -- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "13 total commits to the Home Assistant orga: -10 commits to home-assistant -3 commits to home-assistant.io +- [Jess (@castaway)](https://github.com/castaway "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "15 total commits to the Home Assistant orga: +11 commits to home-assistant +4 commits to home-assistant.io ") - [Jesse Newland (@jnewland)](https://github.com/jnewland "17 total commits to the Home Assistant orga: 13 commits to home-assistant @@ -4923,9 +5694,9 @@ This page contains a list of people who have contributed in one way or another t - [Jesse Osiecki (@stratosmacker)](https://github.com/stratosmacker "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Jesse Rizzo (@jesserizzo)](https://github.com/jesserizzo "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io +- [Jesse Rizzo (@jesserizzo)](https://github.com/jesserizzo "11 total commits to the Home Assistant orga: +7 commits to home-assistant +4 commits to home-assistant.io ") - [Jesse Ruiter (@jesseruiter)](https://github.com/jesseruiter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4934,15 +5705,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant ") - [JesseWebDotCom (@JesseWebDotCom)](https://github.com/JesseWebDotCom "16 total commits to the Home Assistant orga: -8 commits to home-assistant.io 8 commits to home-assistant +8 commits to home-assistant.io ") - [jessyjones (@jessyjones)](https://github.com/jessyjones "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "10 total commits to the Home Assistant orga: +7 commits to home-assistant.io +3 commits to home-assistant ") - [jhemzal (@jhemzal)](https://github.com/jhemzal "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -4963,6 +5734,9 @@ This page contains a list of people who have contributed in one way or another t - [Jiri Cincura ↹ (@cincuranet)](https://github.com/cincuranet "13 total commits to the Home Assistant orga: 13 commits to open-zwave ") +- [jlrgraham (@jlrgraham)](https://github.com/jlrgraham "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [jma89 (@jma89)](https://github.com/jma89 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4984,8 +5758,8 @@ This page contains a list of people who have contributed in one way or another t - [Jo Liss (@joliss)](https://github.com/joliss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Joachim Bauch (@fancycode)](https://github.com/fancycode "2 total commits to the Home Assistant orga: -2 commits to dehydrated +- [jo89lin (@jo89lin)](https://github.com/jo89lin "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Joakim af Sandeberg (@jotunacorn)](https://github.com/jotunacorn "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -4994,17 +5768,24 @@ This page contains a list of people who have contributed in one way or another t - [Joakim Lindbom (@JoakimLindbom)](https://github.com/JoakimLindbom "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Joakim Plate (@elupus)](https://github.com/elupus "13 total commits to the Home Assistant orga: -10 commits to home-assistant -3 commits to home-assistant.io -") -- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "243 total commits to the Home Assistant orga: -159 commits to hassbian-scripts -43 commits to home-assistant.io -39 commits to home-assistant -1 commit to developers.home-assistant +- [Joakim Plate (@elupus)](https://github.com/elupus "61 total commits to the Home Assistant orga: +40 commits to home-assistant +9 commits to home-assistant-polymer +9 commits to home-assistant.io +2 commits to developers.home-assistant 1 commit to people ") +- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "384 total commits to the Home Assistant orga: +262 commits to hassbian-scripts +55 commits to home-assistant +48 commits to home-assistant.io +8 commits to home-assistant-polymer +3 commits to developers.home-assistant +3 commits to custom-components-wheels +3 commits to alerts.home-assistant.io +1 commit to people +1 commit to hassio-installer +") - [Joaquín (@joaqtor)](https://github.com/joaqtor "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -5042,12 +5823,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Joe Trabulsy (@webdjoe)](https://github.com/webdjoe "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Joe Trabulsy (@webdjoe)](https://github.com/webdjoe "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io ") -- [joe248 (@joe248)](https://github.com/joe248 "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [joe248 (@joe248)](https://github.com/joe248 "5 total commits to the Home Assistant orga: +4 commits to home-assistant 1 commit to home-assistant.io ") - [Joeboyc2 (@Joeboyc2)](https://github.com/Joeboyc2 "17 total commits to the Home Assistant orga: @@ -5058,11 +5839,20 @@ This page contains a list of people who have contributed in one way or another t - [Joel Asher Friedman (@joelash)](https://github.com/joelash "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Joel Brun (@jobr97)](https://github.com/jobr97 "1 total commits to the Home Assistant orga: +1 commit to hassbian-scripts +") - [Joel Clermont (@joelclermont)](https://github.com/joelclermont "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "45 total commits to the Home Assistant orga: -36 commits to home-assistant +- [Joel Fischer (@joeljfischer)](https://github.com/joeljfischer "1 total commits to the Home Assistant orga: +1 commit to Iconic +") +- [Joel Spiers (@joelspiers15)](https://github.com/joelspiers15 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "46 total commits to the Home Assistant orga: +37 commits to home-assistant 8 commits to home-assistant.io 1 commit to netdisco ") @@ -5085,6 +5875,10 @@ This page contains a list of people who have contributed in one way or another t - [Johan Lindström (@bhaap)](https://github.com/bhaap "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Johan Nenzén (@JohNan)](https://github.com/JohNan "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [Johan Ström (@stromnet)](https://github.com/stromnet "13 total commits to the Home Assistant orga: 13 commits to open-zwave ") @@ -5098,11 +5892,11 @@ This page contains a list of people who have contributed in one way or another t - [Johann Bauer (@bauerj)](https://github.com/bauerj "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Johann Kellerman (@kellerza)](https://github.com/kellerza "201 total commits to the Home Assistant orga: -163 commits to home-assistant -36 commits to home-assistant.io -1 commit to developers.home-assistant +- [Johann Kellerman (@kellerza)](https://github.com/kellerza "213 total commits to the Home Assistant orga: +173 commits to home-assistant +38 commits to home-assistant.io 1 commit to people +1 commit to developers.home-assistant ") - [Johann Schmitz (@ercpe)](https://github.com/ercpe "1 total commits to the Home Assistant orga: 1 commit to appdaemon @@ -5136,8 +5930,12 @@ This page contains a list of people who have contributed in one way or another t - [John Coggeshall (@coogle)](https://github.com/coogle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [John Evans (@GrandadEvans)](https://github.com/GrandadEvans "2 total commits to the Home Assistant orga: +- [John Dyer (@johntdyer)](https://github.com/johntdyer "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [John Evans (@GrandadEvans)](https://github.com/GrandadEvans "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to developers.home-assistant ") - [John K\. Luebs (@jkl1337)](https://github.com/jkl1337 "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -5148,15 +5946,23 @@ This page contains a list of people who have contributed in one way or another t - [John Lindley (@jwl17330536)](https://github.com/jwl17330536 "1 total commits to the Home Assistant orga: 1 commit to appdaemon ") +- [John Luetke (@johnluetke)](https://github.com/johnluetke "10 total commits to the Home Assistant orga: +5 commits to home-assistant.io +5 commits to home-assistant +") - [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [John Mihalic (@mezz64)](https://github.com/mezz64 "57 total commits to the Home Assistant orga: -43 commits to home-assistant +- [John Mihalic (@mezz64)](https://github.com/mezz64 "61 total commits to the Home Assistant orga: +47 commits to home-assistant 12 commits to home-assistant.io 1 commit to hadashboard 1 commit to home-assistant-polymer ") +- [John Raahauge (@AZDane)](https://github.com/AZDane "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [John Shahawy (@JohnShahawy)](https://github.com/JohnShahawy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -5166,22 +5972,31 @@ This page contains a list of people who have contributed in one way or another t - [John Williams (@Jaidan)](https://github.com/Jaidan "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [johnappletree (@johnappletree)](https://github.com/johnappletree "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io -") - [JohnClay (@JohnClay)](https://github.com/JohnClay "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Johnny Bretz (@FindingJohnny)](https://github.com/FindingJohnny "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Johnny Chadda (@joch)](https://github.com/joch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant-polymer ") +- [Johnny Moore (@xt16johnny)](https://github.com/xt16johnny "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [JohnnyCAPSLOCK (@JohnnyCAPSLOCK)](https://github.com/JohnnyCAPSLOCK "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [johnnychicago (@johnnychicago)](https://github.com/johnnychicago "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Jon (@VdkaShaker)](https://github.com/VdkaShaker "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Jon Banafato (@jonafato)](https://github.com/jonafato "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -5195,14 +6010,21 @@ This page contains a list of people who have contributed in one way or another t - [Jon Evans (@craftyjon)](https://github.com/craftyjon "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Jon Evans (@evansj)](https://github.com/evansj "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jon Gerdes (@gerdesj)](https://github.com/gerdesj "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Jon Gilmore (@JonGilmore)](https://github.com/JonGilmore "7 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant.io +") - [Jon Gilmore (@jon102034050)](https://github.com/jon102034050 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jon Griffith (@arretx)](https://github.com/arretx "16 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Jon Griffith (@arretx)](https://github.com/arretx "17 total commits to the Home Assistant orga: +16 commits to home-assistant.io 1 commit to appdaemon ") - [Jon Maddox (@maddox)](https://github.com/maddox "108 total commits to the Home Assistant orga: @@ -5214,12 +6036,17 @@ This page contains a list of people who have contributed in one way or another t - [Jon Shier (@jshier)](https://github.com/jshier "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "1 total commits to the Home Assistant orga: -1 commit to hassio-build +- [Jon Travis (@trav)](https://github.com/trav "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") -- [Jonas Pedersen (@JonasPed)](https://github.com/JonasPed "8 total commits to the Home Assistant orga: -3 commits to home-assistant.io -3 commits to home-assistant +- [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "4 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to hassio-build +1 commit to home-assistant.io +") +- [Jonas Pedersen (@JonasPed)](https://github.com/JonasPed "10 total commits to the Home Assistant orga: +4 commits to home-assistant +4 commits to home-assistant.io 1 commit to appdaemon 1 commit to developers.home-assistant ") @@ -5230,9 +6057,17 @@ This page contains a list of people who have contributed in one way or another t - [Jonatan Castro (@jcastro)](https://github.com/jcastro "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") +- [Jonathan (@jmw6773)](https://github.com/jmw6773 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Jonathan (@jlauwers)](https://github.com/jlauwers "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jonathan Adams (@jonathanadams)](https://github.com/jonathanadams "3 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to developers.home-assistant +1 commit to home-assistant.io +") - [Jonathan Batchelor (@jmb)](https://github.com/jmb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5242,9 +6077,12 @@ This page contains a list of people who have contributed in one way or another t - [Jonathan Herlin (@Jonher937)](https://github.com/Jonher937 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "9 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to home-assistant +- [Jonathan Jefferies (@jjok)](https://github.com/jjok "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "17 total commits to the Home Assistant orga: +11 commits to home-assistant +6 commits to home-assistant.io ") - [Jonathan Martens (@jmartens)](https://github.com/jmartens "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5253,8 +6091,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") -- [Jonathan Weinberg (@jonathanweinberg)](https://github.com/jonathanweinberg "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Jonathan Weinberg (@jonathanweinberg)](https://github.com/jonathanweinberg "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [Jonathan Wukitsch (@insleep)](https://github.com/insleep "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5268,12 +6106,15 @@ This page contains a list of people who have contributed in one way or another t - [jonudewux (@jonudewux)](https://github.com/jonudewux "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") +- [jonwaland (@jonwaland)](https://github.com/jonwaland "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [joopster (@joopert)](https://github.com/joopert "7 total commits to the Home Assistant orga: 6 commits to home-assistant 1 commit to home-assistant.io ") -- [Joost Boomkamp (@increddibelly)](https://github.com/increddibelly "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Joost Boomkamp (@increddibelly)](https://github.com/increddibelly "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Joost D (@jmjdamen)](https://github.com/jmjdamen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5285,20 +6126,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Jordi (@hokus15)](https://github.com/hokus15 "4 total commits to the Home Assistant orga: +- [Jordan Speicher (@uSpike)](https://github.com/uSpike "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") +- [Jordi (@hokus15)](https://github.com/hokus15 "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io +1 commit to alerts.home-assistant.io ") - [Jordy (@jbarrancos)](https://github.com/jbarrancos "43 total commits to the Home Assistant orga: 40 commits to home-assistant 3 commits to home-assistant.io ") -- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "96 total commits to the Home Assistant orga: +- [Jorge Martínez López (@jorgeml)](https://github.com/jorgeml "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "97 total commits to the Home Assistant orga: 81 commits to home-assistant.io 6 commits to home-assistant +3 commits to developers.home-assistant +2 commits to hassio 2 commits to hassio-addons 2 commits to hassio-cli -2 commits to hassio -2 commits to developers.home-assistant 1 commit to hassio-build ") - [jorisc90 (@jorisc90)](https://github.com/jorisc90 "1 total commits to the Home Assistant orga: @@ -5307,9 +6156,6 @@ This page contains a list of people who have contributed in one way or another t - [Josa Gesell (@josa42)](https://github.com/josa42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jose A\. Jiménez (@jcampoy)](https://github.com/jcampoy "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") - [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the Home Assistant orga: 6 commits to home-assistant 3 commits to home-assistant.io @@ -5318,9 +6164,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Josef Schlehofer (@BKPepe)](https://github.com/BKPepe "15 total commits to the Home Assistant orga: +15 commits to home-assistant +") - [Josep del Rio (@joseprio)](https://github.com/joseprio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joseph Amalfitano (@CanDoAnything)](https://github.com/CanDoAnything "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Joseph Carter (@iKarith)](https://github.com/iKarith "9 total commits to the Home Assistant orga: 9 commits to pi-gen ") @@ -5337,21 +6189,29 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Josh (@space-pope)](https://github.com/space-pope "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Josh (@Joshfindit)](https://github.com/Joshfindit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "11 total commits to the Home Assistant orga: -7 commits to home-assistant +- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "17 total commits to the Home Assistant orga: +12 commits to home-assistant 3 commits to homebridge-homeassistant +1 commit to developers.home-assistant +1 commit to home-assistant.io +") +- [Josh Bendavid (@bendavid)](https://github.com/bendavid "2 total commits to the Home Assistant orga: +1 commit to home-assistant 1 commit to home-assistant.io ") - [Josh Cooper (@cooperj)](https://github.com/cooperj "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to hassos ") -- [Josh McCarty (@joshmcrty)](https://github.com/joshmcrty "3 total commits to the Home Assistant orga: +- [Josh McCarty (@joshmcrty)](https://github.com/joshmcrty "9 total commits to the Home Assistant orga: +7 commits to home-assistant-polymer 2 commits to home-assistant.io -1 commit to home-assistant-polymer ") - [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "28 total commits to the Home Assistant orga: 15 commits to home-assistant @@ -5381,6 +6241,9 @@ This page contains a list of people who have contributed in one way or another t - [joshua stein (@jcs)](https://github.com/jcs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [José A\. Jiménez (@jcampoy)](https://github.com/jcampoy "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [jowieweb (@jowieweb)](https://github.com/jowieweb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5409,6 +6272,12 @@ This page contains a list of people who have contributed in one way or another t - [jtscott (@jtscott)](https://github.com/jtscott "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [ju (@delphiki)](https://github.com/delphiki "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Juan (@JuanMTech)](https://github.com/JuanMTech "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Juan Manuel Combetto (@omniwired)](https://github.com/omniwired "1 total commits to the Home Assistant orga: 1 commit to appdaemon ") @@ -5448,11 +6317,11 @@ This page contains a list of people who have contributed in one way or another t - [Julian Knauer (@jaypikay)](https://github.com/jaypikay "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Julian Schiavo (@justJS)](https://github.com/justJS "1 total commits to the Home Assistant orga: +- [Julian Schiavo (@julianschiavo)](https://github.com/julianschiavo "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Julien Brochet (@aerialls)](https://github.com/aerialls "5 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Julien Brochet (@aerialls)](https://github.com/aerialls "10 total commits to the Home Assistant orga: +8 commits to home-assistant 2 commits to home-assistant.io ") - [Julien Danjou (@jd)](https://github.com/jd "1 total commits to the Home Assistant orga: @@ -5467,18 +6336,31 @@ This page contains a list of people who have contributed in one way or another t - [Julien Wajsberg (@julienw)](https://github.com/julienw "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") -- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "39 total commits to the Home Assistant orga: -31 commits to home-assistant +- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "40 total commits to the Home Assistant orga: +32 commits to home-assistant 8 commits to home-assistant.io ") +- [jumpkick (@deftdawg)](https://github.com/deftdawg "18 total commits to the Home Assistant orga: +14 commits to home-assistant +4 commits to home-assistant.io +") - [Junian Triajianto (@junian)](https://github.com/junian "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") - [jurafxp (@jurafxp)](https://github.com/jurafxp "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Justin Bassett (@JBassett)](https://github.com/JBassett "3 total commits to the Home Assistant orga: +- [Jurriaan Pruis (@jurriaan)](https://github.com/jurriaan "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Jussi Vatjus\-Anttila (@jupe)](https://github.com/jupe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Justin Bassett (@JBassett)](https://github.com/JBassett "6 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to home-assistant-polymer +1 commit to developers.home-assistant +1 commit to home-assistant-android 1 commit to home-assistant ") - [Justin Dray (@justin8)](https://github.com/justin8 "9 total commits to the Home Assistant orga: @@ -5507,6 +6389,9 @@ This page contains a list of people who have contributed in one way or another t - [Justin Otherguy (@justinotherguy)](https://github.com/justinotherguy "1 total commits to the Home Assistant orga: 1 commit to hassos ") +- [Justin Vanderhooft (@vanstinator)](https://github.com/vanstinator "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Justin Weberg (@justweb1)](https://github.com/justweb1 "28 total commits to the Home Assistant orga: 13 commits to home-assistant-polymer 7 commits to hassbot @@ -5525,21 +6410,32 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant 1 commit to home-assistant.io ") +- [jvannoyx4 (@jvannoyx4)](https://github.com/jvannoyx4 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jvimont (@jvimont)](https://github.com/jvimont "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [jwater7 (@jwater7)](https://github.com/jwater7 "2 total commits to the Home Assistant orga: +- [JW (@jw-00000)](https://github.com/jw-00000 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [jwater7 (@jwater7)](https://github.com/jwater7 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to home-assistant ") - [jxwolstenholme (@jxwolstenholme)](https://github.com/jxwolstenholme "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io ") +- [jyrki69 (@jyrki69)](https://github.com/jyrki69 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jérémie Klein (@grm)](https://github.com/grm "1 total commits to the Home Assistant orga: 1 commit to appdaemon ") -- [Jérôme W (@RomRider)](https://github.com/RomRider "3 total commits to the Home Assistant orga: +- [Jérôme W (@RomRider)](https://github.com/RomRider "4 total commits to the Home Assistant orga: 2 commits to home-assistant +1 commit to home-assistant-polymer 1 commit to home-assistant.io ") - [Jürgen Haas (@jurgenhaas)](https://github.com/jurgenhaas "1 total commits to the Home Assistant orga: @@ -5562,8 +6458,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") -- [KaiboshOz (@KaiboshOz)](https://github.com/KaiboshOz "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [KaiboshOz (@KaiboshOz)](https://github.com/KaiboshOz "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [kaiomatico (@kaiomatico)](https://github.com/kaiomatico "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5583,7 +6479,14 @@ This page contains a list of people who have contributed in one way or another t - [Kame (@tobiasgraf)](https://github.com/tobiasgraf "14 total commits to the Home Assistant orga: 14 commits to open-zwave ") -- [Kamil Warguła (@quamilek)](https://github.com/quamilek "1 total commits to the Home Assistant orga: +- [Kamil Warguła (@quamilek)](https://github.com/quamilek "25 total commits to the Home Assistant orga: +24 commits to home-assistant-cli +1 commit to home-assistant +") +- [Kanga\-Who (@Kanga-Who)](https://github.com/Kanga-Who "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Kareem Straker (@KptnKMan)](https://github.com/KptnKMan "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Kareem Sultan (@kareem613)](https://github.com/kareem613 "1 total commits to the Home Assistant orga: @@ -5593,9 +6496,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant 1 commit to home-assistant.io ") -- [Karim Geiger (@KarimGeiger)](https://github.com/KarimGeiger "2 total commits to the Home Assistant orga: +- [Karim Geiger (@KarimGeiger)](https://github.com/KarimGeiger "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to home-assistant -1 commit to home-assistant.io ") - [Karim Roukoz (@kkr16)](https://github.com/kkr16 "2 total commits to the Home Assistant orga: 2 commits to home-assistant @@ -5604,8 +6507,8 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant-polymer 2 commits to home-assistant.io ") -- [karlkar (@karlkar)](https://github.com/karlkar "16 total commits to the Home Assistant orga: -11 commits to home-assistant +- [karlkar (@karlkar)](https://github.com/karlkar "18 total commits to the Home Assistant orga: +13 commits to home-assistant 5 commits to home-assistant.io ") - [Karsten Nerdinger (@Piratonym)](https://github.com/Piratonym "2 total commits to the Home Assistant orga: @@ -5615,22 +6518,26 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") -- [kbickar (@kbickar)](https://github.com/kbickar "11 total commits to the Home Assistant orga: -9 commits to home-assistant +- [kbickar (@kbickar)](https://github.com/kbickar "17 total commits to the Home Assistant orga: +12 commits to home-assistant +5 commits to home-assistant.io +") +- [KD4SIR (@scotthibbs)](https://github.com/scotthibbs "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [KD4SIR (@scotthibbs)](https://github.com/scotthibbs "1 total commits to the Home Assistant orga: +- [Kdemontf (@Kdemontf)](https://github.com/Kdemontf "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [kdvlr (@kdvlr)](https://github.com/kdvlr "1 total commits to the Home Assistant orga: +- [kdvlr (@kdvlr)](https://github.com/kdvlr "2 total commits to the Home Assistant orga: 1 commit to home-assistant +1 commit to home-assistant.io ") - [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the Home Assistant orga: 4 commits to home-assistant 3 commits to home-assistant.io ") -- [Kees Schollaart (@keesschollaart81)](https://github.com/keesschollaart81 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Kees Schollaart (@keesschollaart81)](https://github.com/keesschollaart81 "3 total commits to the Home Assistant orga: +3 commits to home-assistant ") - [keesak (@cdkonecny)](https://github.com/cdkonecny "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -5649,9 +6556,11 @@ This page contains a list of people who have contributed in one way or another t - [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Keith Pine (@kpine)](https://github.com/kpine "2 total commits to the Home Assistant orga: +- [Keith Pine (@kpine)](https://github.com/kpine "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to developers.home-assistant 1 commit to open-zwave -1 commit to home-assistant.io +1 commit to home-assistant ") - [Kelly Burke (@klyburke)](https://github.com/klyburke "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -5666,10 +6575,13 @@ This page contains a list of people who have contributed in one way or another t 13 commits to home-assistant.io 2 commits to appdaemon ") -- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "50 total commits to the Home Assistant orga: -45 commits to home-assistant +- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "54 total commits to the Home Assistant orga: +49 commits to home-assistant 5 commits to home-assistant.io ") +- [Kenneth Lavrsen (@KennethLavrsen)](https://github.com/KennethLavrsen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Kenny Millington (@kmdm)](https://github.com/kmdm "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -5687,6 +6599,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Ketil Moland Olsen (@ketilmo)](https://github.com/ketilmo "11 total commits to the Home Assistant orga: +11 commits to home-assistant.io +") +- [kevank (@kevank)](https://github.com/kevank "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -5696,25 +6614,24 @@ This page contains a list of people who have contributed in one way or another t - [Kevin Christensen (@nivekmai)](https://github.com/nivekmai "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Kevin Cooper (@JumpMaster)](https://github.com/JumpMaster "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [Kevin Delaney (@kevindelaney)](https://github.com/kevindelaney "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Kevin Duong (@kevinduong)](https://github.com/kevinduong "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kevin Eifinger (@eifinger)](https://github.com/eifinger "2 total commits to the Home Assistant orga: +- [Kevin Eifinger (@eifinger)](https://github.com/eifinger "10 total commits to the Home Assistant orga: +6 commits to home-assistant +2 commits to home-assistant.io 1 commit to appdaemon -1 commit to home-assistant.io +1 commit to custom-components-wheels ") - [Kevin Fowlks (@kfowlks)](https://github.com/kfowlks "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "41 total commits to the Home Assistant orga: -27 commits to home-assistant -14 commits to home-assistant.io +- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "47 total commits to the Home Assistant orga: +31 commits to home-assistant +16 commits to home-assistant.io ") - [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -5726,6 +6643,17 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant.io 1 commit to home-assistant ") +- [Kevin Köck (@kevinkk525)](https://github.com/kevinkk525 "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Kevin Lee (@kevineriklee)](https://github.com/kevineriklee "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Kevin McCormack (@HarlemSquirrel)](https://github.com/HarlemSquirrel "6 total commits to the Home Assistant orga: +4 commits to home-assistant +2 commits to home-assistant.io +") - [Kevin Raddatz (@kraddatz)](https://github.com/kraddatz "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -5763,13 +6691,17 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant 1 commit to home-assistant.io ") -- [Khole (@KJonline)](https://github.com/KJonline "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io +- [Khole (@KJonline)](https://github.com/KJonline "13 total commits to the Home Assistant orga: +8 commits to home-assistant +5 commits to home-assistant.io ") -- [kimvonmullen (@kimvonmullen)](https://github.com/kimvonmullen "1 total commits to the Home Assistant orga: +- [Kim Frellsen (@kimfrellsen)](https://github.com/kimfrellsen "2 total commits to the Home Assistant orga: +1 commit to home-assistant 1 commit to home-assistant.io ") +- [kimvonmullen (@kimvonmullen)](https://github.com/kimvonmullen "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [KingJ (@KingJ)](https://github.com/KingJ "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5779,6 +6711,9 @@ This page contains a list of people who have contributed in one way or another t - [kireyeu (@kireyeu)](https://github.com/kireyeu "4 total commits to the Home Assistant orga: 4 commits to home-assistant-notebooks ") +- [Kit Klein (@kit-klein)](https://github.com/kit-klein "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [kitcorey (@kitcorey)](https://github.com/kitcorey "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -5789,13 +6724,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "12 total commits to the Home Assistant orga: -5 commits to home-assistant.io 5 commits to home-assistant +5 commits to home-assistant.io 2 commits to home-assistant-polymer ") -- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "473 total commits to the Home Assistant orga: -472 commits to home-assistant.io +- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "553 total commits to the Home Assistant orga: +543 commits to home-assistant.io +3 commits to developers.home-assistant +2 commits to hassio-addons +2 commits to home-assistant 1 commit to people +1 commit to probot-home-assistant +1 commit to alerts.home-assistant.io ") - [Klaudiusz Staniek (@kstaniek)](https://github.com/kstaniek "7 total commits to the Home Assistant orga: 5 commits to home-assistant @@ -5807,14 +6747,15 @@ This page contains a list of people who have contributed in one way or another t - [kllngtme (@kllngtme)](https://github.com/kllngtme "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [kloggy (@kloggy)](https://github.com/kloggy "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [kloggy (@kloggy)](https://github.com/kloggy "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [knottyau75 (@knottyau75)](https://github.com/knottyau75 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Koen Ekelschot (@peckham)](https://github.com/peckham "1 total commits to the Home Assistant orga: +- [Koen Ekelschot (@peckham)](https://github.com/peckham "2 total commits to the Home Assistant orga: 1 commit to home-assistant +1 commit to home-assistant.io ") - [Koen Kanters (@Koenkk)](https://github.com/Koenkk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5852,6 +6793,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to netdisco 1 commit to home-assistant.io ") +- [kreegahbundolo (@kreegahbundolo)](https://github.com/kreegahbundolo "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Kris Molendyke (@krismolendyke)](https://github.com/krismolendyke "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -5876,9 +6821,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [ktnrg45 (@ktnrg45)](https://github.com/ktnrg45 "10 total commits to the Home Assistant orga: -7 commits to home-assistant -3 commits to home-assistant.io +- [ktnrg45 (@ktnrg45)](https://github.com/ktnrg45 "28 total commits to the Home Assistant orga: +22 commits to home-assistant +4 commits to home-assistant.io +1 commit to home-assistant-polymer +1 commit to developers.home-assistant ") - [Kumar Gaurav Pandey (@gaurav1911)](https://github.com/gaurav1911 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5889,8 +6836,11 @@ This page contains a list of people who have contributed in one way or another t - [Kurt McKee (@kurtmckee)](https://github.com/kurtmckee "260 total commits to the Home Assistant orga: 260 commits to feedparser ") -- [Kyle Decot (@kyledecot)](https://github.com/kyledecot "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [kvanhoorn (@kvanhoorn)](https://github.com/kvanhoorn "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Kyle Gill (@gillkyle)](https://github.com/gillkyle "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [Kyle Gordon (@kylegordon)](https://github.com/kylegordon "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5900,9 +6850,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave 1 commit to home-assistant.io ") -- [Kyle Niewiada (@aav7fl)](https://github.com/aav7fl "5 total commits to the Home Assistant orga: +- [Kyle Niewiada (@aav7fl)](https://github.com/aav7fl "6 total commits to the Home Assistant orga: 4 commits to home-assistant -1 commit to home-assistant.io +2 commits to home-assistant.io +") +- [Kyle Pinette (@sowelie)](https://github.com/sowelie "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Kyle R (@qcryptic)](https://github.com/qcryptic "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5913,9 +6866,16 @@ This page contains a list of people who have contributed in one way or another t - [kylerw (@kylerw)](https://github.com/kylerw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [L (@lance36)](https://github.com/lance36 "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [labrunning (@labrunning)](https://github.com/labrunning "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Lado Kumsiashvili (@herrlado)](https://github.com/herrlado "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [lamiskin (@lamiskin)](https://github.com/lamiskin "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 2 commits to home-assistant @@ -5926,9 +6886,6 @@ This page contains a list of people who have contributed in one way or another t - [Lance Moss (@mossyhub)](https://github.com/mossyhub "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [lance36 (@lance36)](https://github.com/lance36 "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [lapy (@lapy)](https://github.com/lapy "5 total commits to the Home Assistant orga: 3 commits to home-assistant 2 commits to home-assistant.io @@ -5973,18 +6930,26 @@ This page contains a list of people who have contributed in one way or another t - [Lazar Obradovic (@lobradov)](https://github.com/lobradov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [lbouriez (@lbouriez)](https://github.com/lbouriez "1 total commits to the Home Assistant orga: +- [lbouriez (@lbouriez)](https://github.com/lbouriez "2 total commits to the Home Assistant orga: +1 commit to hassio-addons 1 commit to home-assistant.io ") - [lcersly (@lcersly)](https://github.com/lcersly "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [lclc98 (@lclc98)](https://github.com/lclc98 "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [leaen (@leaen)](https://github.com/leaen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Leandro (@leofuscaldi)](https://github.com/leofuscaldi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Leandro Loureiro (@lealoureiro)](https://github.com/lealoureiro "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Lechu (@ShadeByLesio)](https://github.com/ShadeByLesio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5997,6 +6962,9 @@ This page contains a list of people who have contributed in one way or another t - [lee\-js (@lee-js)](https://github.com/lee-js "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [legacycode (@legacycode)](https://github.com/legacycode "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [lekobob (@lekobob)](https://github.com/lekobob "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -6009,12 +6977,12 @@ This page contains a list of people who have contributed in one way or another t - [lennartk (@lennart-k)](https://github.com/lennart-k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [LeoCal (@LeoCal)](https://github.com/LeoCal "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [LeoDJ (@LeoDJ)](https://github.com/LeoDJ "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Leon Schuermann (@lschuermann)](https://github.com/lschuermann "3 total commits to the Home Assistant orga: -3 commits to dehydrated -") - [Leon99 (@Leon99)](https://github.com/Leon99 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to appdaemon @@ -6026,8 +6994,8 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 1 commit to home-assistant.io ") -- [Leonardo Merza (@ljmerza)](https://github.com/ljmerza "13 total commits to the Home Assistant orga: -6 commits to home-assistant +- [Leonardo Merza (@ljmerza)](https://github.com/ljmerza "14 total commits to the Home Assistant orga: +7 commits to home-assistant 4 commits to home-assistant.io 2 commits to developers.home-assistant 1 commit to home-assistant-polymer @@ -6035,9 +7003,6 @@ This page contains a list of people who have contributed in one way or another t - [Leonardo Saraiva (@vyper)](https://github.com/vyper "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [leonklingele (@leonklingele)](https://github.com/leonklingele "4 total commits to the Home Assistant orga: -4 commits to dehydrated -") - [Leothlon (@leothlon)](https://github.com/leothlon "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -6058,6 +7023,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant-polymer 1 commit to people ") +- [Lewys Martin (@CountParadox)](https://github.com/CountParadox "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io +") +- [leytpapas (@leytpapas)](https://github.com/leytpapas "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Li\-Wen Yip (@liwenyip)](https://github.com/liwenyip "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6067,10 +7038,17 @@ This page contains a list of people who have contributed in one way or another t - [Liang Sun (@leonsim)](https://github.com/leonsim "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [libots (@libots)](https://github.com/libots "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [lich (@mu4yu3)](https://github.com/mu4yu3 "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io ") +- [lifeisafractal (@lifeisafractal)](https://github.com/lifeisafractal "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [lightbullet (@lightbullet)](https://github.com/lightbullet "10 total commits to the Home Assistant orga: 10 commits to open-zwave ") @@ -6095,15 +7073,24 @@ This page contains a list of people who have contributed in one way or another t - [linvinus (@linvinus)](https://github.com/linvinus "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") +- [Liran BG (@liranbg)](https://github.com/liranbg "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lizaoreo (@lizaoreo)](https://github.com/lizaoreo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [LJU (@LEJOUI)](https://github.com/LEJOUI "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lolouk44 (@lolouk44)](https://github.com/lolouk44 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [longman391 (@longman391)](https://github.com/longman391 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Lopton (@Lopton)](https://github.com/Lopton "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lordneon (@lordneon)](https://github.com/lordneon "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6111,6 +7098,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Lorenzo Milesi (@maxxer)](https://github.com/maxxer "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [lorenzofattori (@lorenzofattori)](https://github.com/lorenzofattori "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6143,6 +7133,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 2 commits to home-assistant ") +- [LuBeDa (@lubeda)](https://github.com/lubeda "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Luc Touraille (@stilllman)](https://github.com/stilllman "5 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to netdisco @@ -6151,20 +7144,26 @@ This page contains a list of people who have contributed in one way or another t - [Luca Adrian Lindhorst (@lal12)](https://github.com/lal12 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "8 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "12 total commits to the Home Assistant orga: +6 commits to home-assistant.io +5 commits to home-assistant 1 commit to home-assistant-polymer ") - [Luca Simonetti @Nohup (@luca-simonetti)](https://github.com/luca-simonetti "1 total commits to the Home Assistant orga: 1 commit to hassio ") +- [Luca Soldi (@LucaSoldi)](https://github.com/LucaSoldi "7 total commits to the Home Assistant orga: +6 commits to home-assistant +1 commit to home-assistant.io +") +- [Luca Zimmermann (@soundstorm)](https://github.com/soundstorm "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Lucas Nussbaum (@lnussbaum)](https://github.com/lnussbaum "26 total commits to the Home Assistant orga: 26 commits to open-zwave ") -- [LucaSoldi (@LucaSoldi)](https://github.com/LucaSoldi "7 total commits to the Home Assistant orga: -6 commits to home-assistant -1 commit to home-assistant.io +- [Luciano Colosio (@unlucio)](https://github.com/unlucio "1 total commits to the Home Assistant orga: +1 commit to hassio-installer ") - [Lucien Guimier (@guimier)](https://github.com/guimier "1 total commits to the Home Assistant orga: 1 commit to libcoap @@ -6185,6 +7184,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to home-assistant ") +- [luismonge1192 (@luismonge1192)](https://github.com/luismonge1192 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Lukas Bachschwell (@s00500)](https://github.com/s00500 "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") @@ -6193,16 +7195,17 @@ This page contains a list of people who have contributed in one way or another t 12 commits to home-assistant.io 2 commits to home-assistant-polymer ") -- [Lukas Hetzenecker (@lukas-hetzenecker)](https://github.com/lukas-hetzenecker "15 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Lukas Ecklmayr (@outrun0506)](https://github.com/outrun0506 "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to home-assistant-polymer +") +- [Lukas Hetzenecker (@lukas-hetzenecker)](https://github.com/lukas-hetzenecker "16 total commits to the Home Assistant orga: +11 commits to home-assistant 5 commits to home-assistant.io ") - [Lukas Porubcan (@Luc3as)](https://github.com/Luc3as "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") -- [Lukas Schauer (@lukas2511)](https://github.com/lukas2511 "256 total commits to the Home Assistant orga: -256 commits to dehydrated -") - [Luke Armstrong (@lukearmstrong)](https://github.com/lukearmstrong "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -6213,12 +7216,18 @@ This page contains a list of people who have contributed in one way or another t - [Luke Karrys (@lukekarrys)](https://github.com/lukekarrys "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Luke Pomfrey (@lpomfrey)](https://github.com/lpomfrey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lukie80 (@lukie80)](https://github.com/lukie80 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [lunar\-consultancy (@lunar-consultancy)](https://github.com/lunar-consultancy "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [lundan (@lundan)](https://github.com/lundan "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [LuPa (@lupa18)](https://github.com/lupa18 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6226,9 +7235,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to home-assistant ") -- [Luuk (@luukd)](https://github.com/luukd "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to home-assistant +- [Luuk (@luukd)](https://github.com/luukd "6 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to home-assistant ") - [Luuk (@Maharball1)](https://github.com/Maharball1 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6241,21 +7250,31 @@ This page contains a list of people who have contributed in one way or another t - [lwad (@lwad)](https://github.com/lwad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [lyghtnox (@lyghtnox)](https://github.com/lyghtnox "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [m4dmin (@m4dmin)](https://github.com/m4dmin "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [m4tek (@m4tek)](https://github.com/m4tek "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Maarten (@mvandek)](https://github.com/mvandek "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Maarten Damen (@maartendamen)](https://github.com/maartendamen "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") - [Maarten Groeneweg (@lazytesting)](https://github.com/lazytesting "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "12 total commits to the Home Assistant orga: -8 commits to home-assistant -3 commits to home-assistant.io +- [Maarten Lakerveld (@mlakerveld)](https://github.com/mlakerveld "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "26 total commits to the Home Assistant orga: +19 commits to home-assistant +6 commits to home-assistant.io 1 commit to home-assistant-polymer ") - [Maciej Sokołowski (@matemaciek)](https://github.com/matemaciek "5 total commits to the Home Assistant orga: @@ -6280,12 +7299,19 @@ This page contains a list of people who have contributed in one way or another t - [Maggi Trymbill (@trymbill)](https://github.com/trymbill "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [MagicalTrev89 (@MagicalTrev89)](https://github.com/MagicalTrev89 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [MagieMalone (@MagieMalone)](https://github.com/MagieMalone "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [magnjo (@magnjo)](https://github.com/magnjo "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Magnus Brange (@brange)](https://github.com/brange "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [Magnus Ihse Bursie (@magicus)](https://github.com/magicus "17 total commits to the Home Assistant orga: 9 commits to home-assistant 4 commits to netdisco @@ -6298,8 +7324,8 @@ This page contains a list of people who have contributed in one way or another t - [Magnus Månsson (@magma1447)](https://github.com/magma1447 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Magnus Øverli (@magnusoverli)](https://github.com/magnusoverli "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Magnus Øverli (@magnusoverli)](https://github.com/magnusoverli "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [MagnusKnutas (@MagnusKnutas)](https://github.com/MagnusKnutas "29 total commits to the Home Assistant orga: 29 commits to home-assistant @@ -6307,30 +7333,36 @@ This page contains a list of people who have contributed in one way or another t - [magreen24 (@magreen24)](https://github.com/magreen24 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mahasri Kalavala (@skalavala)](https://github.com/skalavala "35 total commits to the Home Assistant orga: -32 commits to home-assistant.io +- [Mahasri Kalavala (@skalavala)](https://github.com/skalavala "36 total commits to the Home Assistant orga: +33 commits to home-assistant.io 2 commits to home-assistant 1 commit to people ") - [Mahesh Subramaniya (@msubra)](https://github.com/msubra "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [maheus (@maheus)](https://github.com/maheus "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Maido Käära (@v3rm0n)](https://github.com/v3rm0n "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "9 total commits to the Home Assistant orga: -5 commits to home-assistant -4 commits to home-assistant.io +- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "24 total commits to the Home Assistant orga: +16 commits to home-assistant +8 commits to home-assistant.io ") - [Maikel Wever (@maikelwever)](https://github.com/maikelwever "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [MajestyIV (@MajestyIV)](https://github.com/MajestyIV "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [majstermod (@majstermod)](https://github.com/majstermod "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [majuss (@majuss)](https://github.com/majuss "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [majuss (@majuss)](https://github.com/majuss "9 total commits to the Home Assistant orga: +5 commits to home-assistant +4 commits to home-assistant.io ") - [MaKin211 (@MaKin211)](https://github.com/MaKin211 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6342,27 +7374,40 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 2 commits to home-assistant.io ") -- [Malachi Soord (@inverse)](https://github.com/inverse "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Malachi Soord (@inverse)](https://github.com/inverse "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") -- [Malte Franken (@exxamalte)](https://github.com/exxamalte "50 total commits to the Home Assistant orga: -30 commits to home-assistant -14 commits to home-assistant.io -5 commits to home-assistant-polymer +- [Malte Franken (@exxamalte)](https://github.com/exxamalte "81 total commits to the Home Assistant orga: +55 commits to home-assistant +19 commits to home-assistant.io +6 commits to home-assistant-polymer 1 commit to developers.home-assistant ") - [Manoj (@vmulpuru)](https://github.com/vmulpuru "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Manolis Chalkiadakis (@mxalk)](https://github.com/mxalk "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [manonstreet (@manonstreet)](https://github.com/manonstreet "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Mans Matulewicz (@MansM)](https://github.com/MansM "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Manuel de la Rosa (@manuel-jrs)](https://github.com/manuel-jrs "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Manuel Díez (@manutenfruits)](https://github.com/manutenfruits "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Manuel Zubieta (@iautom8things)](https://github.com/iautom8things "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [mar005 (@mar005)](https://github.com/mar005 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Marat Levit (@mlevit)](https://github.com/mlevit "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -6382,6 +7427,10 @@ This page contains a list of people who have contributed in one way or another t - [Marc Goodner (@robotdad)](https://github.com/robotdad "1 total commits to the Home Assistant orga: 1 commit to scenegen ") +- [Marc Hörsken (@mback2k)](https://github.com/mback2k "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Marc Pabst (@marcpabst)](https://github.com/marcpabst "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer 1 commit to home-assistant @@ -6390,9 +7439,19 @@ This page contains a list of people who have contributed in one way or another t 10 commits to home-assistant.io 2 commits to home-assistant ") +- [Marc Randolph (@mrand)](https://github.com/mrand "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Marcel (@MTRNord)](https://github.com/MTRNord "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Marcel Brückner (@marcelbrueckner)](https://github.com/marcelbrueckner "2 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +1 commit to home-assistant.io +") +- [Marcel Herd (@marcelherd)](https://github.com/marcelherd "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Marcel Holle (@multiholle)](https://github.com/multiholle "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -6470,6 +7529,9 @@ This page contains a list of people who have contributed in one way or another t - [Marcus (@dgraye)](https://github.com/dgraye "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Marcus Fredlund (@mr-awk)](https://github.com/mr-awk "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [Marcus Schmidt (@mar-schmidt)](https://github.com/mar-schmidt "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -6480,14 +7542,23 @@ This page contains a list of people who have contributed in one way or another t - [Marek Lewandowski (@mlewand)](https://github.com/mlewand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Marianne Hval (@mahval)](https://github.com/mahval "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [Marijn Giesen (@marijngiesen)](https://github.com/marijngiesen "7 total commits to the Home Assistant orga: 5 commits to hadashboard 2 commits to home-assistant.io ") -- [Mario Di Raimondo (@diraimondo)](https://github.com/diraimondo "2 total commits to the Home Assistant orga: +- [Marijn Pool (@IcyPalm)](https://github.com/IcyPalm "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") +- [Mario Di Raimondo (@mario-tux)](https://github.com/mario-tux "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Mario Limonciello (@superm1)](https://github.com/superm1 "1 total commits to the Home Assistant orga: +1 commit to hassio-installer +") - [Mario Villavecchia (@lichtteil)](https://github.com/lichtteil "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 2 commits to home-assistant @@ -6495,12 +7566,23 @@ This page contains a list of people who have contributed in one way or another t - [Mario Wenzel (@maweki)](https://github.com/maweki "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Marius (@ciotlosm)](https://github.com/ciotlosm "39 total commits to the Home Assistant orga: +- [Marius (@ciotlosm)](https://github.com/ciotlosm "40 total commits to the Home Assistant orga: 14 commits to home-assistant-polymer 12 commits to home-assistant.io 8 commits to home-assistant 3 commits to developers.home-assistant 2 commits to ui-schema +1 commit to people +") +- [Marius (@Mariusthvdb)](https://github.com/Mariusthvdb "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") +- [Marius Balčytis (@mariusbalcytis)](https://github.com/mariusbalcytis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Marius Flage (@mflage)](https://github.com/mflage "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [Marius Kotlarz (@kotlarz)](https://github.com/kotlarz "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -6520,12 +7602,6 @@ This page contains a list of people who have contributed in one way or another t - [Mark (@scmmmh)](https://github.com/scmmmh "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Mark Coombes (@marthoc)](https://github.com/marthoc "17 total commits to the Home Assistant orga: -8 commits to home-assistant -4 commits to open-zwave -4 commits to home-assistant.io -1 commit to people -") - [Mark Grimes (@mvgrimes)](https://github.com/mvgrimes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -6555,6 +7631,9 @@ This page contains a list of people who have contributed in one way or another t - [Mark Leenaerts (@mleenaerts)](https://github.com/mleenaerts "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Mark LUCAS (@marco10024)](https://github.com/marco10024 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mark Nichols (@zanshin)](https://github.com/zanshin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6576,6 +7655,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 1 commit to home-assistant.io ") +- [markharleman (@markharleman)](https://github.com/markharleman "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") - [Marko Korhonen (@ReekyMarko)](https://github.com/ReekyMarko "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6593,22 +7675,26 @@ This page contains a list of people who have contributed in one way or another t - [Markus Ijäs (@mtijas)](https://github.com/mtijas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Markus Jankowski (@SukramJ)](https://github.com/SukramJ "25 total commits to the Home Assistant orga: -15 commits to home-assistant -6 commits to home-assistant.io +- [Markus Jankowski (@SukramJ)](https://github.com/SukramJ "105 total commits to the Home Assistant orga: +76 commits to home-assistant +24 commits to home-assistant.io +3 commits to developers.home-assistant 2 commits to home-assistant-polymer -2 commits to developers.home-assistant ") -- [Markus Nigbur (@mnigbur)](https://github.com/mnigbur "6 total commits to the Home Assistant orga: +- [Markus Nigbur (@mnigbur)](https://github.com/mnigbur "10 total commits to the Home Assistant orga: +6 commits to home-assistant 3 commits to home-assistant.io -3 commits to home-assistant +1 commit to home-assistant-polymer ") - [Markus Peter (@bimbar)](https://github.com/bimbar "5 total commits to the Home Assistant orga: 3 commits to home-assistant 2 commits to home-assistant.io ") -- [Markus Ressel (@markusressel)](https://github.com/markusressel "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Markus Pöschl (@Poeschl)](https://github.com/Poeschl "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Markus Ressel (@markusressel)](https://github.com/markusressel "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io 3 commits to home-assistant ") - [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the Home Assistant orga: @@ -6617,6 +7703,19 @@ This page contains a list of people who have contributed in one way or another t - [Markus Thiel (@mackelito)](https://github.com/mackelito "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [marthoc (@marthoc)](https://github.com/marthoc "34 total commits to the Home Assistant orga: +23 commits to home-assistant +6 commits to home-assistant.io +4 commits to open-zwave +1 commit to people +") +- [Martijn van Zal (@Martijn02)](https://github.com/Martijn02 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Martin (@crazyfx1)](https://github.com/crazyfx1 "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [Martin (@mrvanes)](https://github.com/mrvanes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -6626,38 +7725,42 @@ This page contains a list of people who have contributed in one way or another t - [Martin Ayotte (@martinayotte)](https://github.com/martinayotte "3 total commits to the Home Assistant orga: 3 commits to python-openzwave ") +- [Martin Banas (@bnsm)](https://github.com/bnsm "2 total commits to the Home Assistant orga: +2 commits to Iconic +") - [Martin Berg (@mbrrg)](https://github.com/mbrrg "12 total commits to the Home Assistant orga: 9 commits to home-assistant 3 commits to home-assistant.io ") -- [Martin Donlon (@wickerwaka)](https://github.com/wickerwaka "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Martin Brooksbank (@shutupflanders)](https://github.com/shutupflanders "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Martin Donlon (@wickerwaka)](https://github.com/wickerwaka "5 total commits to the Home Assistant orga: +3 commits to home-assistant 2 commits to home-assistant.io ") -- [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "7 total commits to the Home Assistant orga: -6 commits to home-assistant.io -1 commit to home-assistant +- [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "11 total commits to the Home Assistant orga: +7 commits to home-assistant.io +4 commits to home-assistant ") - [Martin Elwin (@melwin)](https://github.com/melwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Martin Fuchs (@fucm)](https://github.com/fucm "6 total commits to the Home Assistant orga: -5 commits to home-assistant -1 commit to home-assistant.io +- [Martin Fuchs (@fucm)](https://github.com/fucm "8 total commits to the Home Assistant orga: +6 commits to home-assistant +2 commits to home-assistant.io ") - [Martin Gafner (@mgafner)](https://github.com/mgafner "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Martin Geiseler (@tralafiti)](https://github.com/tralafiti "3 total commits to the Home Assistant orga: -3 commits to dehydrated -") - [Martin Gross (@pc-coholic)](https://github.com/pc-coholic "4 total commits to the Home Assistant orga: 4 commits to home-assistant ") -- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "201 total commits to the Home Assistant orga: -162 commits to home-assistant -33 commits to home-assistant.io +- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "224 total commits to the Home Assistant orga: +180 commits to home-assistant +36 commits to home-assistant.io 5 commits to developers.home-assistant +2 commits to example-custom-config 1 commit to people ") - [Martin J\. Laubach (@mjl)](https://github.com/mjl "1 total commits to the Home Assistant orga: @@ -6671,11 +7774,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant ") - [Martin Rowan (@shortbloke)](https://github.com/shortbloke "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to home-assistant -") -- [Martin Schut (@schutm)](https://github.com/schutm "1 total commits to the Home Assistant orga: -1 commit to dehydrated +3 commits to home-assistant.io ") - [Martin Tremblay (@MartyTremblay)](https://github.com/MartyTremblay "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -6728,6 +7828,9 @@ This page contains a list of people who have contributed in one way or another t - [masukomi (@masukomi)](https://github.com/masukomi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Matej Drobnič (@matejdro)](https://github.com/matejdro "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mateusz Drab (@mateuszdrab)](https://github.com/mateuszdrab "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -6741,18 +7844,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to homebridge-homeassistant 1 commit to home-assistant ") -- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the Home Assistant orga: +- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the Home Assistant orga: +- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mathieu Velten (@MatMaul)](https://github.com/MatMaul "6 total commits to the Home Assistant orga: 5 commits to home-assistant 1 commit to home-assistant.io ") -- [Matouš Bečvář (@MattXcz)](https://github.com/MattXcz "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Matouš Bečvář (@MattXcz)](https://github.com/MattXcz "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [MatsNl (@MatsNl)](https://github.com/MatsNl "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Matt Black (@mafrosis)](https://github.com/mafrosis "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Matt Cahill (@matt-cahill)](https://github.com/matt-cahill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6769,8 +7878,8 @@ This page contains a list of people who have contributed in one way or another t - [Matt Enright (@wickedshimmy)](https://github.com/wickedshimmy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Matt F (@flamingm0e)](https://github.com/flamingm0e "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Matt F (@flamingm0e)](https://github.com/flamingm0e "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Matt Farmer (@m14t)](https://github.com/m14t "1 total commits to the Home Assistant orga: @@ -6785,13 +7894,17 @@ This page contains a list of people who have contributed in one way or another t - [Matt Hamrick (@diminishedprime)](https://github.com/diminishedprime "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Matt Kasa (@mattkasa)](https://github.com/mattkasa "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Matt LeBrun (@mlebrun)](https://github.com/mlebrun "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Matt N\. (@mnoorenberghe)](https://github.com/mnoorenberghe "64 total commits to the Home Assistant orga: +- [Matt N\. (@mnoorenberghe)](https://github.com/mnoorenberghe "65 total commits to the Home Assistant orga: 32 commits to home-assistant-iOS -18 commits to home-assistant.io +19 commits to home-assistant.io 11 commits to home-assistant 2 commits to home-assistant-polymer 1 commit to homebridge-homeassistant @@ -6802,16 +7915,19 @@ This page contains a list of people who have contributed in one way or another t - [Matt Rogers (@rogersmj)](https://github.com/rogersmj "20 total commits to the Home Assistant orga: 20 commits to hadashboard ") -- [Matt Schmitt (@schmittx)](https://github.com/schmittx "95 total commits to the Home Assistant orga: +- [Matt Schmitt (@schmittx)](https://github.com/schmittx "97 total commits to the Home Assistant orga: 52 commits to homebridge-homeassistant -25 commits to home-assistant +27 commits to home-assistant 13 commits to home-assistant.io 3 commits to home-assistant-polymer 2 commits to developers.home-assistant ") -- [Matt Snyder (@oblogic7)](https://github.com/oblogic7 "20 total commits to the Home Assistant orga: -11 commits to home-assistant -9 commits to home-assistant.io +- [Matt Snyder (@oblogic7)](https://github.com/oblogic7 "23 total commits to the Home Assistant orga: +13 commits to home-assistant +10 commits to home-assistant.io +") +- [Matt Swan (@surlymatt)](https://github.com/surlymatt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Matt White (@matt-FFFFFF)](https://github.com/matt-FFFFFF "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6821,8 +7937,8 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant 5 commits to home-assistant.io ") -- [matt2005 (@matt2005)](https://github.com/matt2005 "5 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Matte23 (@Matte23)](https://github.com/Matte23 "4 total commits to the Home Assistant orga: +2 commits to home-assistant 2 commits to home-assistant.io ") - [MatteGary (@MatteGary)](https://github.com/MatteGary "6 total commits to the Home Assistant orga: @@ -6836,18 +7952,27 @@ This page contains a list of people who have contributed in one way or another t - [Matthew Breedlove (@sirmalloc)](https://github.com/sirmalloc "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "5 total commits to the Home Assistant orga: -4 commits to home-assistant.io -1 commit to home-assistant +- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +2 commits to home-assistant +1 commit to home-assistant-polymer ") -- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "39 total commits to the Home Assistant orga: +- [Matthew Dornquast (@dornquast)](https://github.com/dornquast "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "40 total commits to the Home Assistant orga: 29 commits to home-assistant 8 commits to home-assistant.io 2 commits to netdisco +1 commit to people ") - [Matthew Grimes (@cybergrimes)](https://github.com/cybergrimes "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Matthew Hilton (@matt2005)](https://github.com/matt2005 "5 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io +") - [Matthew Miller (@MasterKale)](https://github.com/MasterKale "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") @@ -6871,6 +7996,10 @@ This page contains a list of people who have contributed in one way or another t 16 commits to home-assistant 9 commits to home-assistant.io ") +- [Matthew Turney (@pho3nixf1re)](https://github.com/pho3nixf1re "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Matthew Vincent (@neshmi)](https://github.com/neshmi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -6885,9 +8014,15 @@ This page contains a list of people who have contributed in one way or another t 15 commits to open-zwave 1 commit to home-assistant ") -- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "9 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant-polymer +1 commit to developers.home-assistant +1 commit to home-assistant.io +") +- [Matthias Alphart (@farmio)](https://github.com/farmio "10 total commits to the Home Assistant orga: +5 commits to home-assistant +5 commits to home-assistant.io ") - [Matthias Dötsch (@brainexe)](https://github.com/brainexe "3 total commits to the Home Assistant orga: 2 commits to home-assistant-polymer @@ -6930,14 +8065,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Mauricio Bonani (@bonanitech)](https://github.com/bonanitech "16 total commits to the Home Assistant orga: -16 commits to home-assistant.io +- [Mauricio Bonani (@bonanitech)](https://github.com/bonanitech "10 total commits to the Home Assistant orga: +8 commits to home-assistant.io +2 commits to home-assistant-polymer ") - [Mauricio Vidal (@MrMauro)](https://github.com/MrMauro "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Max (@max-te)](https://github.com/max-te "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Max (@max-te)](https://github.com/max-te "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io ") - [Max Laverse (@maxlaverse)](https://github.com/maxlaverse "9 total commits to the Home Assistant orga: 6 commits to home-assistant @@ -6955,19 +8092,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Max Rosin (@ekeih)](https://github.com/ekeih "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Max Rosin (@ekeih)](https://github.com/ekeih "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") -- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "15 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "17 total commits to the Home Assistant orga: +17 commits to home-assistant.io ") -- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "111 total commits to the Home Assistant orga: -98 commits to home-assistant-cli +- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "145 total commits to the Home Assistant orga: +131 commits to home-assistant-cli 8 commits to home-assistant.io 3 commits to developers.home-assistant 1 commit to people +1 commit to hassio-cli 1 commit to home-assistant ") +- [Max Savard (@TravelinMax)](https://github.com/TravelinMax "3 total commits to the Home Assistant orga: +3 commits to hassio-addons +") +- [Max Thirouin (@MoOx)](https://github.com/MoOx "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Max von Webel (@343max)](https://github.com/343max "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6988,20 +8132,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Maximilian Mitchell (@maxisme)](https://github.com/maxisme "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [Maximilien Cuony (@the-glu)](https://github.com/the-glu "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [mbo18 (@mbo18)](https://github.com/mbo18 "3 total commits to the Home Assistant orga: +- [Maël Kimmerlin (@maelk)](https://github.com/maelk "1 total commits to the Home Assistant orga: 1 commit to hassos +") +- [mbo18 (@mbo18)](https://github.com/mbo18 "7 total commits to the Home Assistant orga: +2 commits to hassos +2 commits to home-assistant +2 commits to home-assistant.io 1 commit to hassio -1 commit to home-assistant.io ") - [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the Home Assistant orga: 1 commit to home-assistant-iOS ") +- [mcc05 (@mcc05)](https://github.com/mcc05 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [mcfrojd (@mcfrojd)](https://github.com/mcfrojd "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -7025,8 +8173,8 @@ This page contains a list of people who have contributed in one way or another t - [Megachip (@Megachip)](https://github.com/Megachip "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [MeIchthys (@meichthys)](https://github.com/meichthys "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [MeIchthys (@meichthys)](https://github.com/meichthys "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io ") - [meijerwynand (@meijerwynand)](https://github.com/meijerwynand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7034,6 +8182,9 @@ This page contains a list of people who have contributed in one way or another t - [Mel Riffe (@melriffe)](https://github.com/melriffe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Melvin (@MBlokhuijzen)](https://github.com/MBlokhuijzen "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Menno Blom (@b10m)](https://github.com/b10m "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to home-assistant @@ -7048,12 +8199,19 @@ This page contains a list of people who have contributed in one way or another t - [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [mgiako (@mgiako)](https://github.com/mgiako "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [MGWGIT (@MGWGIT)](https://github.com/MGWGIT "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [mh\-daedalus (@mh-daedalus)](https://github.com/mh-daedalus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Micah Neal (@noxlux)](https://github.com/noxlux "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Micha LaQua (@milaq)](https://github.com/milaq "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io @@ -7084,11 +8242,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant ") - [Michael Dubno (@dubnom)](https://github.com/dubnom "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to home-assistant +3 commits to home-assistant.io ") -- [Michael Fester (@michaelfester)](https://github.com/michaelfester "6 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Michael Fester (@michaelfester)](https://github.com/michaelfester "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io 2 commits to home-assistant ") - [Michael Friis (@friism)](https://github.com/friism "1 total commits to the Home Assistant orga: @@ -7103,10 +8261,6 @@ This page contains a list of people who have contributed in one way or another t - [Michael Gilbert (@Zyell)](https://github.com/Zyell "8 total commits to the Home Assistant orga: 8 commits to home-assistant ") -- [Michael Heinemann (@heinemml)](https://github.com/heinemml "6 total commits to the Home Assistant orga: -4 commits to home-assistant -2 commits to home-assistant.io -") - [Michael Hertig (@hertg)](https://github.com/hertg "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -7114,6 +8268,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Michael Kane (@thisIsMikeKane)](https://github.com/thisIsMikeKane "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michael Kowalchuk (@mkowalchuk)](https://github.com/mkowalchuk "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -7126,9 +8283,16 @@ This page contains a list of people who have contributed in one way or another t - [Michael Luggen (@l00mi)](https://github.com/l00mi "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Michael Lunzer (@michaellunzer)](https://github.com/michaellunzer "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michael Meinel (@led02)](https://github.com/led02 "1 total commits to the Home Assistant orga: 1 commit to pyharmony ") +- [Michael Nosthoff (@heinemml)](https://github.com/heinemml "6 total commits to the Home Assistant orga: +4 commits to home-assistant +2 commits to home-assistant.io +") - [Michael Pereira (@MichaelPereira)](https://github.com/MichaelPereira "2 total commits to the Home Assistant orga: 2 commits to gu-who ") @@ -7150,8 +8314,12 @@ This page contains a list of people who have contributed in one way or another t - [Michael Requeny (@requenym)](https://github.com/requenym "17 total commits to the Home Assistant orga: 17 commits to home-assistant.io ") -- [Michael Scherer (@schmic)](https://github.com/schmic "3 total commits to the Home Assistant orga: +- [Michael Scherer (@schmic)](https://github.com/schmic "5 total commits to the Home Assistant orga: 3 commits to home-assistant-polymer +2 commits to home-assistant +") +- [Michael Schoonmaker (@Schoonology)](https://github.com/Schoonology "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Michael Schulze (@michsch)](https://github.com/michsch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7162,6 +8330,9 @@ This page contains a list of people who have contributed in one way or another t - [Michael Stovenour (@mstovenour)](https://github.com/mstovenour "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Michael Varrieur (@mvarrieur)](https://github.com/mvarrieur "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michael Wei (@no2chem)](https://github.com/no2chem "5 total commits to the Home Assistant orga: 3 commits to home-assistant 2 commits to home-assistant.io @@ -7172,33 +8343,48 @@ This page contains a list of people who have contributed in one way or another t - [Michael Woods (@michaelwoods)](https://github.com/michaelwoods "1 total commits to the Home Assistant orga: 1 commit to home-assistant-cli ") -- [michaeldavie (@michaeldavie)](https://github.com/michaeldavie "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [michaeldavie (@michaeldavie)](https://github.com/michaeldavie "22 total commits to the Home Assistant orga: +12 commits to home-assistant +10 commits to home-assistant.io ") - [MichaelSprague (@MichaelSprague)](https://github.com/MichaelSprague "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michal (@Dinth)](https://github.com/Dinth "2 total commits to the Home Assistant orga: +- [Michal (@Dinth)](https://github.com/Dinth "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to open-zwave -1 commit to home-assistant.io ") -- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "70 total commits to the Home Assistant orga: -37 commits to home-assistant +- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "71 total commits to the Home Assistant orga: +38 commits to home-assistant 28 commits to home-assistant.io 3 commits to home-assistant-polymer 1 commit to netdisco 1 commit to people ") +- [Michał Mrozek (@Michsior14)](https://github.com/Michsior14 "30 total commits to the Home Assistant orga: +29 commits to home-assistant +1 commit to home-assistant.io +") +- [Michał Węgrzynek (@mwegrzynek)](https://github.com/mwegrzynek "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [Michel Settembrino (@Michel-Settembrino)](https://github.com/Michel-Settembrino "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Michi Lehenauer (@michiil)](https://github.com/michiil "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Mick Dekkers (@mickdekkers)](https://github.com/mickdekkers "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mick Vleeshouwer (@iMicknl)](https://github.com/iMicknl "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Mickaël Cornière (@bnounours)](https://github.com/bnounours "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mickaël Schoentgen (@BoboTiG)](https://github.com/BoboTiG "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -7209,6 +8395,9 @@ This page contains a list of people who have contributed in one way or another t - [migromao (@migromao)](https://github.com/migromao "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Miguel (@mdps)](https://github.com/mdps "3 total commits to the Home Assistant orga: +3 commits to appdaemon +") - [Miguel Gil Martínez (@miguelgilmartinez)](https://github.com/miguelgilmartinez "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7219,10 +8408,13 @@ This page contains a list of people who have contributed in one way or another t - [mihalski (@mihalski)](https://github.com/mihalski "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Mikael Svensson (@Nossnevs)](https://github.com/Nossnevs "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Mika Hiltunen (@saaste)](https://github.com/saaste "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mikael Svensson (@Nossnevs)](https://github.com/Nossnevs "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [Mikayla Hutchinson (@mhutch)](https://github.com/mhutch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to open-zwave @@ -7234,6 +8426,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Mike (@mike391)](https://github.com/mike391 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mike (@mikenolet)](https://github.com/mikenolet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7255,12 +8450,13 @@ This page contains a list of people who have contributed in one way or another t - [Mike Kormendy (@mkormendy)](https://github.com/mkormendy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mike Megally (@cmsimike)](https://github.com/cmsimike "17 total commits to the Home Assistant orga: -11 commits to home-assistant +- [Mike Megally (@cmsimike)](https://github.com/cmsimike "18 total commits to the Home Assistant orga: +12 commits to home-assistant 6 commits to home-assistant.io ") -- [Mike Miller (@mikeage)](https://github.com/mikeage "3 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Mike Miller (@mikeage)](https://github.com/mikeage "5 total commits to the Home Assistant orga: +4 commits to home-assistant +1 commit to home-assistant.io ") - [Mike Nicholson (@mikenicholson)](https://github.com/mikenicholson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7295,6 +8491,9 @@ This page contains a list of people who have contributed in one way or another t - [Milas Bowman (@milas)](https://github.com/milas "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [milothomas (@milothomas)](https://github.com/milothomas "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Miloš Bunčić (@psyhomb)](https://github.com/psyhomb "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -7309,6 +8508,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [ming\.z (@zvving)](https://github.com/zvving "3 total commits to the Home Assistant orga: +3 commits to Iconic +") - [miniconfig (@miniconfig)](https://github.com/miniconfig "27 total commits to the Home Assistant orga: 20 commits to home-assistant 7 commits to home-assistant.io @@ -7319,9 +8521,12 @@ This page contains a list of people who have contributed in one way or another t - [Minims (@Minims)](https://github.com/Minims "3 total commits to the Home Assistant orga: 3 commits to homebridge-homeassistant ") -- [Miroslav Ždrale (@mzdrale)](https://github.com/mzdrale "2 total commits to the Home Assistant orga: +- [Miroslav Ždrale (@mzdrale)](https://github.com/mzdrale "8 total commits to the Home Assistant orga: +4 commits to home-assistant.io +4 commits to home-assistant +") +- [miroslawkrol (@miroslawkrol)](https://github.com/miroslawkrol "1 total commits to the Home Assistant orga: 1 commit to home-assistant -1 commit to home-assistant.io ") - [Mischa Gruber (@GruberMischa)](https://github.com/GruberMischa "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -7329,8 +8534,8 @@ This page contains a list of people who have contributed in one way or another t - [MissingDLL (@MissingDLL)](https://github.com/MissingDLL "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mister Wil (@MisterWil)](https://github.com/MisterWil "21 total commits to the Home Assistant orga: -15 commits to home-assistant +- [Mister Wil (@MisterWil)](https://github.com/MisterWil "23 total commits to the Home Assistant orga: +17 commits to home-assistant 6 commits to home-assistant.io ") - [misterbenj34 (@misterbenj34)](https://github.com/misterbenj34 "2 total commits to the Home Assistant orga: @@ -7365,9 +8570,9 @@ This page contains a list of people who have contributed in one way or another t - [mje\-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [mjj4791 (@mjj4791)](https://github.com/mjj4791 "23 total commits to the Home Assistant orga: -15 commits to home-assistant.io -8 commits to home-assistant +- [MJJ (@mjj4791)](https://github.com/mjj4791 "25 total commits to the Home Assistant orga: +16 commits to home-assistant.io +9 commits to home-assistant ") - [mkfink (@mkfink)](https://github.com/mkfink "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -7400,15 +8605,16 @@ This page contains a list of people who have contributed in one way or another t - [mojotaker (@mojotaker)](https://github.com/mojotaker "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Mokilok (@Jake-Mok-Nelson)](https://github.com/Jake-Mok-Nelson "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Moksh Mridul (@mokshmridul)](https://github.com/mokshmridul "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Momotica (@Momotica)](https://github.com/Momotica "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") +- [monte\-monte (@monte-monte)](https://github.com/monte-monte "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [mooninite (@mooninite)](https://github.com/mooninite "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -7425,8 +8631,9 @@ This page contains a list of people who have contributed in one way or another t - [MORITA Hajime (@omo)](https://github.com/omo "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Moritz Fey (@Mofeywalker)](https://github.com/Mofeywalker "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Moritz Fey (@Mofeywalker)](https://github.com/Mofeywalker "6 total commits to the Home Assistant orga: +5 commits to home-assistant +1 commit to hassio-addons ") - [Moritz Sternemann (@moritzsternemann)](https://github.com/moritzsternemann "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -7439,12 +8646,19 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant 2 commits to home-assistant.io ") +- [Morten Trab (@MTrab)](https://github.com/MTrab "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") - [mortenmathiasen (@mortenmathiasen)](https://github.com/mortenmathiasen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Morvan LEPANNETIER (@armaesiea)](https://github.com/armaesiea "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [Moshe Levi (@moshe010)](https://github.com/moshe010 "1 total commits to the Home Assistant orga: +1 commit to hassos +") - [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") @@ -7455,9 +8669,12 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 3 commits to home-assistant ") -- [Mr\. Snyds (@mrsnyds)](https://github.com/mrsnyds "1 total commits to the Home Assistant orga: +- [MPopti0n (@MPopti0n)](https://github.com/MPopti0n "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mr\. Snyds (@mrsnyds)](https://github.com/mrsnyds "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [mreiling (@mreiling)](https://github.com/mreiling "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -7502,19 +8719,15 @@ This page contains a list of people who have contributed in one way or another t - [mvillarejo (@mvillarejo)](https://github.com/mvillarejo "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [mvn23 (@mvn23)](https://github.com/mvn23 "34 total commits to the Home Assistant orga: -23 commits to home-assistant -10 commits to home-assistant.io +- [mvn23 (@mvn23)](https://github.com/mvn23 "46 total commits to the Home Assistant orga: +31 commits to home-assistant +14 commits to home-assistant.io 1 commit to appdaemon ") - [mweimerskirch (@mweimerskirch)](https://github.com/mweimerskirch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant ") -- [mwsluis (@mwsluis)](https://github.com/mwsluis "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io -") - [Myles (@MylesIsCool)](https://github.com/MylesIsCool "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -7522,8 +8735,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to appdaemon 1 commit to home-assistant ") -- [Myrddyn (@Myrddyn1)](https://github.com/Myrddyn1 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Mårten Seiplax (@seiplax)](https://github.com/seiplax "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the Home Assistant orga: @@ -7555,8 +8767,8 @@ This page contains a list of people who have contributed in one way or another t - [narfight (@narfight)](https://github.com/narfight "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") -- [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "5 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "6 total commits to the Home Assistant orga: +3 commits to home-assistant 2 commits to home-assistant.io 1 commit to home-assistant-polymer ") @@ -7564,8 +8776,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") -- [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "25 total commits to the Home Assistant orga: -17 commits to home-assistant +- [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "26 total commits to the Home Assistant orga: +18 commits to home-assistant 8 commits to home-assistant.io ") - [Nate Kleven (@nkleven)](https://github.com/nkleven "1 total commits to the Home Assistant orga: @@ -7600,10 +8812,8 @@ This page contains a list of people who have contributed in one way or another t - [Nathan Long (@nathanl)](https://github.com/nathanl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nathan Neulinger (@nneul)](https://github.com/nneul "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") -- [Nathan W (@itsamenathan)](https://github.com/itsamenathan "1 total commits to the Home Assistant orga: +- [Nathan W (@itsamenathan)](https://github.com/itsamenathan "3 total commits to the Home Assistant orga: +2 commits to hassio-addons 1 commit to home-assistant.io ") - [nau\-mll (@nau-mll)](https://github.com/nau-mll "1 total commits to the Home Assistant orga: @@ -7637,8 +8847,14 @@ This page contains a list of people who have contributed in one way or another t - [neonbunny (@neonbunny)](https://github.com/neonbunny "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Ness (@Xx-Ness-xX)](https://github.com/Xx-Ness-xX "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Nephiel (@Nephiel)](https://github.com/Nephiel "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Ness (@Xx-Ness-xX)](https://github.com/Xx-Ness-xX "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [newbee112 (@newbee112)](https://github.com/newbee112 "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [nhendin (@nhendin)](https://github.com/nhendin "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -7659,9 +8875,6 @@ This page contains a list of people who have contributed in one way or another t - [Nicholas Hawkes (@hawkesnc)](https://github.com/hawkesnc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nicholas Sideras (@nsideras)](https://github.com/nsideras "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [Nicholas Sielicki (@sielicki)](https://github.com/sielicki "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -7672,6 +8885,9 @@ This page contains a list of people who have contributed in one way or another t - [Nick Chamberlin (@NickChamberlin)](https://github.com/NickChamberlin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nick Daria (@nickdaria)](https://github.com/nickdaria "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Nick Hammond (@nickhammond)](https://github.com/nickhammond "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7686,9 +8902,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") -- [Nick Touran (@partofthething)](https://github.com/partofthething "41 total commits to the Home Assistant orga: +- [Nick Touran (@partofthething)](https://github.com/partofthething "42 total commits to the Home Assistant orga: 27 commits to home-assistant -14 commits to home-assistant.io +15 commits to home-assistant.io ") - [Nick Waring (@nickwaring)](https://github.com/nickwaring "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -7701,12 +8917,15 @@ This page contains a list of people who have contributed in one way or another t - [Nick Zelei (@nickzelei)](https://github.com/nickzelei "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nickidw (@nickidw)](https://github.com/nickidw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nicko van Someren (@nickovs)](https://github.com/nickovs "9 total commits to the Home Assistant orga: 7 commits to home-assistant 2 commits to home-assistant.io ") -- [nickrout (@nickrout)](https://github.com/nickrout "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [nickrout (@nickrout)](https://github.com/nickrout "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Niclas (@nicmar)](https://github.com/nicmar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7746,13 +8965,13 @@ This page contains a list of people who have contributed in one way or another t - [Niels Keurentjes (@curry684)](https://github.com/curry684 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Niels Laukens (@nielslaukens)](https://github.com/nielslaukens "3 total commits to the Home Assistant orga: -3 commits to dehydrated -") -- [nielstron (@nielstron)](https://github.com/nielstron "23 total commits to the Home Assistant orga: -17 commits to home-assistant +- [Niels Mündler (@nielstron)](https://github.com/nielstron "33 total commits to the Home Assistant orga: +23 commits to home-assistant +7 commits to home-assistant.io 3 commits to netdisco -3 commits to home-assistant.io +") +- [nierob (@nierob)](https://github.com/nierob "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [Nigel Rook (@NigelRook)](https://github.com/NigelRook "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -7761,6 +8980,9 @@ This page contains a list of people who have contributed in one way or another t - [Nik Klever (@nklever)](https://github.com/nklever "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Nikita Chernozipunnikov (@thatguynikita)](https://github.com/thatguynikita "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Niklas (@niklaswa)](https://github.com/niklaswa "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to home-assistant @@ -7782,8 +9004,8 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to home-assistant ") -- [Nikola (@niksy111)](https://github.com/niksy111 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Nikola (@niksy111)](https://github.com/niksy111 "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [nikolas (@nikolas)](https://github.com/nikolas "1 total commits to the Home Assistant orga: 1 commit to feedparser @@ -7796,9 +9018,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "13 total commits to the Home Assistant orga: -9 commits to home-assistant -2 commits to home-assistant-polymer +- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "20 total commits to the Home Assistant orga: +15 commits to home-assistant +3 commits to home-assistant-polymer 2 commits to home-assistant.io ") - [Nils Kristian Brekke (@Brekkjern)](https://github.com/Brekkjern "1 total commits to the Home Assistant orga: @@ -7828,6 +9050,9 @@ This page contains a list of people who have contributed in one way or another t - [nollbit (@nollbit)](https://github.com/nollbit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [noodlemctwoodle (@noodlemctwoodle)](https://github.com/noodlemctwoodle "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [nordeep (@nordeep)](https://github.com/nordeep "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -7852,8 +9077,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant-assets 1 commit to home-assistant.io ") -- [noxhirsch (@noxhirsch)](https://github.com/noxhirsch "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [noxhirsch (@noxhirsch)](https://github.com/noxhirsch "12 total commits to the Home Assistant orga: +11 commits to home-assistant.io 1 commit to home-assistant ") - [nragon (@nragon)](https://github.com/nragon "1 total commits to the Home Assistant orga: @@ -7879,17 +9104,17 @@ This page contains a list of people who have contributed in one way or another t - [NWiBGRsK (@NWiBGRsK)](https://github.com/NWiBGRsK "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [o1oo11oo (@o1oo11oo)](https://github.com/o1oo11oo "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [oa\- (@oa-)](https://github.com/oa- "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [obgm (@obgm)](https://github.com/obgm "480 total commits to the Home Assistant orga: 480 commits to libcoap ") -- [Odianosen Ejale (@Odianosen25)](https://github.com/Odianosen25 "96 total commits to the Home Assistant orga: -96 commits to appdaemon +- [ochlocracy (@ochlocracy)](https://github.com/ochlocracy "13 total commits to the Home Assistant orga: +13 commits to home-assistant +") +- [Odianosen Ejale (@Odianosen25)](https://github.com/Odianosen25 "395 total commits to the Home Assistant orga: +395 commits to appdaemon ") - [Odin Hørthe Omdal (@odinho)](https://github.com/odinho "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -7898,6 +9123,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Ofek Ashery (@ofekashery)](https://github.com/ofekashery "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [officiallybob (@officiallybob)](https://github.com/officiallybob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7914,11 +9142,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Olaf Conradi (@oohlaf)](https://github.com/oohlaf "1 total commits to the Home Assistant orga: +- [Okke Garling (@ogarling)](https://github.com/ogarling "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Olaf Peters (@olf)](https://github.com/olf "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Olaf Conradi (@oohlaf)](https://github.com/oohlaf "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Olaf van Zandwijk (@olafz)](https://github.com/olafz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7934,6 +9162,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Oleg Kurapov (@2sheds)](https://github.com/2sheds "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [Oleksandr Omelchuk (@sashao)](https://github.com/sashao "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [OleksandrBerchenko (@OleksandrBerchenko)](https://github.com/OleksandrBerchenko "7 total commits to the Home Assistant orga: 6 commits to home-assistant 1 commit to home-assistant.io @@ -7952,14 +9187,17 @@ This page contains a list of people who have contributed in one way or another t - [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "32 total commits to the Home Assistant orga: -22 commits to home-assistant +- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "34 total commits to the Home Assistant orga: +24 commits to home-assistant 9 commits to home-assistant.io 1 commit to netdisco ") - [Oliver Dunk (@oliverdunk)](https://github.com/oliverdunk "77 total commits to the Home Assistant orga: 77 commits to 1password-teams-open-source ") +- [Oliver Großkloß (@Progaros)](https://github.com/Progaros "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the Home Assistant orga: 10 commits to home-assistant ") @@ -7970,6 +9208,9 @@ This page contains a list of people who have contributed in one way or another t - [oliverhg1 (@oliverhg1)](https://github.com/oliverhg1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [OliverRepo (@OliverRepo)](https://github.com/OliverRepo "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [oliverscu (@oliverscu)](https://github.com/oliverscu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7979,8 +9220,8 @@ This page contains a list of people who have contributed in one way or another t - [Olivier Guerriat (@olivierguerriat)](https://github.com/olivierguerriat "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Olivér Falvai (@ofalvai)](https://github.com/ofalvai "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Olivér Falvai (@ofalvai)](https://github.com/ofalvai "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Omar Usman (@omarusman)](https://github.com/omarusman "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -7992,20 +9233,22 @@ This page contains a list of people who have contributed in one way or another t - [Omer Efrat (@efratomer)](https://github.com/efratomer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [On Freund (@OnFreund)](https://github.com/OnFreund "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [On Freund (@OnFreund)](https://github.com/OnFreund "13 total commits to the Home Assistant orga: +8 commits to home-assistant +4 commits to home-assistant.io +1 commit to home-assistant-polymer ") -- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "9 total commits to the Home Assistant orga: -9 commits to home-assistant.io -") -- [Ondřej Nový (@onovy)](https://github.com/onovy "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "21 total commits to the Home Assistant orga: +12 commits to home-assistant.io +9 commits to home-assistant ") - [Ong Vairoj (@ejel)](https://github.com/ejel "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io ") +- [onlymejosh (@onlymejosh)](https://github.com/onlymejosh "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [onsmam (@onsmam)](https://github.com/onsmam "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -8018,19 +9261,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Oscar Tin Lai (@soraxas)](https://github.com/soraxas "5 total commits to the Home Assistant orga: +- [orb9 (@orb9)](https://github.com/orb9 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [orrpan (@orrpan)](https://github.com/orrpan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Orson (@orson1282)](https://github.com/orson1282 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Oscar Calvo (@ocalvo)](https://github.com/ocalvo "1 total commits to the Home Assistant orga: +1 commit to hassos +") +- [Oscar Tin Lai (@soraxas)](https://github.com/soraxas "6 total commits to the Home Assistant orga: +3 commits to home-assistant 3 commits to home-assistant.io -2 commits to home-assistant ") - [osirisinferi (@osirisinferi)](https://github.com/osirisinferi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [ottersen (@ottersen)](https://github.com/ottersen "11 total commits to the Home Assistant orga: +- [ottersen (@ottersen)](https://github.com/ottersen "14 total commits to the Home Assistant orga: 11 commits to home-assistant.io +2 commits to home-assistant-polymer +1 commit to home-assistant ") -- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "155 total commits to the Home Assistant orga: -117 commits to home-assistant -26 commits to home-assistant.io +- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "189 total commits to the Home Assistant orga: +149 commits to home-assistant +28 commits to home-assistant.io 5 commits to home-assistant-polymer 3 commits to hass-release 2 commits to developers.home-assistant @@ -8046,6 +9303,10 @@ This page contains a list of people who have contributed in one way or another t - [oznu (@oznu)](https://github.com/oznu "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") +- [P0L0 (@p0l0)](https://github.com/p0l0 "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Pablo Mellado (@mellado)](https://github.com/mellado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8056,25 +9317,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [panosmz (@panosmz)](https://github.com/panosmz "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [pander8828 (@pander8828)](https://github.com/pander8828 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [panosmz (@panosmz)](https://github.com/panosmz "3 total commits to the Home Assistant orga: +2 commits to home-assistant 1 commit to home-assistant.io ") - [Paolo Bonzini (@bonzini)](https://github.com/bonzini "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Paolo Tuninetto (@tulindo)](https://github.com/tulindo "5 total commits to the Home Assistant orga: +5 commits to home-assistant +") - [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the Home Assistant orga: 62 commits to home-assistant.io ") - [partytimeexcellent (@partytimeexcellent)](https://github.com/partytimeexcellent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [pascal (@passie)](https://github.com/passie "6 total commits to the Home Assistant orga: -3 commits to home-assistant -2 commits to home-assistant.io -1 commit to home-assistant-polymer -") - [Pascal (@p4sI)](https://github.com/p4sI "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8089,36 +9351,49 @@ This page contains a list of people who have contributed in one way or another t - [Pascal Hahn (@pascalhahn)](https://github.com/pascalhahn "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Pascal Jungblut (@pascalj)](https://github.com/pascalj "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Pascal Roeleven (@pascallj)](https://github.com/pascallj "7 total commits to the Home Assistant orga: +4 commits to home-assistant +3 commits to home-assistant.io ") -- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "4372 total commits to the Home Assistant orga: -1537 commits to hassio -747 commits to hassos -554 commits to home-assistant -492 commits to hassio-build -415 commits to hassio-addons -352 commits to home-assistant.io -76 commits to hassio-homeassistant -32 commits to hassio-base -32 commits to developers.home-assistant -29 commits to hassio-version -23 commits to hassio-cli +- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "5923 total commits to the Home Assistant orga: +1777 commits to hassio +883 commits to home-assistant +843 commits to hassos +499 commits to hassio-build +490 commits to hassio-addons +378 commits to home-assistant.io +272 commits to hassio-version +181 commits to hassio-homeassistant +89 commits to hassio-wheels +87 commits to hassio-base +49 commits to hassio-builder +48 commits to ci-azure +44 commits to developers.home-assistant +38 commits to custom-components-wheels +35 commits to ada +31 commits to hassio-opencv +27 commits to hassio-cli 22 commits to hassio-auth +20 commits to hassio-installer +18 commits to hassio-addons-development +18 commits to python-openzwave 17 commits to hassio-addons-example -17 commits to python-openzwave +13 commits to hassio-tensorflow 11 commits to actions -7 commits to hassio-addons-development -3 commits to home-assistant-polymer +8 commits to home-assistant-polymer +8 commits to hassio-dns +6 commits to hassos-cli +3 commits to architecture 3 commits to open-zwave -1 commit to home-assistant-js-websocket +2 commits to hassos-pki 1 commit to netdisco +1 commit to home-assistant-js-websocket 1 commit to people ") - [pascalsaul (@pascalsaul)](https://github.com/pascalsaul "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Pat (@patfreeman)](https://github.com/patfreeman "2 total commits to the Home Assistant orga: +- [Pat Freeman (@patfreeman)](https://github.com/patfreeman "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Pat Thoyts (@patthoyts)](https://github.com/patthoyts "2 total commits to the Home Assistant orga: @@ -8136,8 +9411,11 @@ This page contains a list of people who have contributed in one way or another t - [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [Patrick Clery (@patrickclery)](https://github.com/patrickclery "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "7 total commits to the Home Assistant orga: +6 commits to home-assistant.io 1 commit to home-assistant ") - [Patrick Georgi (@pgeorgi)](https://github.com/pgeorgi "1 total commits to the Home Assistant orga: @@ -8150,6 +9428,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [Patrick Kishino (@pkishino)](https://github.com/pkishino "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Patrick T\.C (@ptc)](https://github.com/ptc "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io @@ -8157,9 +9438,11 @@ This page contains a list of people who have contributed in one way or another t - [Patrick White (@pw)](https://github.com/pw "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Patrik (@ggravlingen)](https://github.com/ggravlingen "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Patrik (@ggravlingen)](https://github.com/ggravlingen "14 total commits to the Home Assistant orga: +10 commits to home-assistant +2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to alerts.home-assistant.io ") - [Patrik Ekström (@patrik3k)](https://github.com/patrik3k "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -8170,11 +9453,8 @@ This page contains a list of people who have contributed in one way or another t - [Patryk Gałczyński (@evemorgen)](https://github.com/evemorgen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [pattyland (@pattyland)](https://github.com/pattyland "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io -") -- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "11 total commits to the Home Assistant orga: -8 commits to home-assistant +- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "17 total commits to the Home Assistant orga: +14 commits to home-assistant 3 commits to home-assistant.io ") - [Paul Archer (@geek65535)](https://github.com/geek65535 "1 total commits to the Home Assistant orga: @@ -8187,8 +9467,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Paul Bottein (@piitaya)](https://github.com/piitaya "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Paul Bottein (@piitaya)](https://github.com/piitaya "5 total commits to the Home Assistant orga: +4 commits to home-assistant +1 commit to home-assistant.io ") - [Paul Davis (@paulbdavis)](https://github.com/paulbdavis "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -8196,6 +9477,9 @@ This page contains a list of people who have contributed in one way or another t - [Paul Hendry (@pshendry)](https://github.com/pshendry "1 total commits to the Home Assistant orga: 1 commit to warrant ") +- [Paul Hobbs (@SolidElectronics)](https://github.com/SolidElectronics "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Paul Jimenez (@pjz)](https://github.com/pjz "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -8215,6 +9499,10 @@ This page contains a list of people who have contributed in one way or another t - [Paul Krischer (@SqyD)](https://github.com/SqyD "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Paul Madden (@maddenp)](https://github.com/maddenp "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") - [Paul Nicholls (@pauln)](https://github.com/pauln "2 total commits to the Home Assistant orga: 2 commits to netdisco ") @@ -8224,6 +9512,12 @@ This page contains a list of people who have contributed in one way or another t - [Paul Rabahy (@PRabahy)](https://github.com/PRabahy "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Paul Romkes (@Romkabouter)](https://github.com/Romkabouter "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [Paul Sinclair (@sinclairpaul)](https://github.com/sinclairpaul "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [Paul Sokolovsky (@pfalcon)](https://github.com/pfalcon "6 total commits to the Home Assistant orga: 3 commits to netdisco 3 commits to home-assistant @@ -8234,8 +9528,9 @@ This page contains a list of people who have contributed in one way or another t - [Paul Swartz (@paulswartz)](https://github.com/paulswartz "2 total commits to the Home Assistant orga: 2 commits to feedparser ") -- [Paul Tarjan (@ptarjan)](https://github.com/ptarjan "2 total commits to the Home Assistant orga: +- [Paul Tarjan (@ptarjan)](https://github.com/ptarjan "4 total commits to the Home Assistant orga: 2 commits to home-assistant +2 commits to home-assistant.io ") - [pavanagrawal123 (@pavanagrawal123)](https://github.com/pavanagrawal123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8250,29 +9545,44 @@ This page contains a list of people who have contributed in one way or another t - [Pavol Babinčák (@scrool)](https://github.com/scrool "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Pawel (@pszafer)](https://github.com/pszafer "12 total commits to the Home Assistant orga: -7 commits to home-assistant -5 commits to home-assistant.io +- [Pavol Holes (@pavolholes)](https://github.com/pavolholes "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Pawel (@pszafer)](https://github.com/pszafer "21 total commits to the Home Assistant orga: +12 commits to home-assistant +9 commits to home-assistant.io ") - [Pawel Winogrodzki (@PawelWMS)](https://github.com/PawelWMS "12 total commits to the Home Assistant orga: 12 commits to libcoap ") +- [Paweł Kobylak (@noose)](https://github.com/noose "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [Paweł Krupa (@paulfantom)](https://github.com/paulfantom "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Paxy (@Paxy)](https://github.com/Paxy "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "17 total commits to the Home Assistant orga: -14 commits to home-assistant +- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "19 total commits to the Home Assistant orga: +16 commits to home-assistant 3 commits to home-assistant.io ") +- [pcragone (@pcragone)](https://github.com/pcragone "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [pdanilew (@pdanilew)](https://github.com/pdanilew "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [PDarkTemplar (@PDarkTemplar)](https://github.com/PDarkTemplar "9 total commits to the Home Assistant orga: 9 commits to open-zwave ") +- [pdeelen (@pdeelen)](https://github.com/pdeelen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [PDekker (@PDekker)](https://github.com/PDekker "2 total commits to the Home Assistant orga: +2 commits to home-assistant-polymer +") - [Pedro Navarro (@pedronavf)](https://github.com/pedronavf "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -8282,30 +9592,32 @@ This page contains a list of people who have contributed in one way or another t - [PeeJay (@pejotigrek)](https://github.com/pejotigrek "1 total commits to the Home Assistant orga: 1 commit to home-assistant-assets ") -- [Penny Wood (@Swamp-Ig)](https://github.com/Swamp-Ig "16 total commits to the Home Assistant orga: -13 commits to home-assistant -2 commits to home-assistant.io -1 commit to people -") - [pepeEL (@pepeEL)](https://github.com/pepeEL "18 total commits to the Home Assistant orga: 16 commits to open-zwave 2 commits to home-assistant ") -- [Per Osbäck (@perosb)](https://github.com/perosb "24 total commits to the Home Assistant orga: -22 commits to home-assistant -2 commits to home-assistant.io +- [Per Osbäck (@perosb)](https://github.com/perosb "26 total commits to the Home Assistant orga: +23 commits to home-assistant +3 commits to home-assistant.io ") -- [Per Sandström (@persandstrom)](https://github.com/persandstrom "133 total commits to the Home Assistant orga: -103 commits to home-assistant -18 commits to home-assistant.io +- [Per Sandström (@persandstrom)](https://github.com/persandstrom "135 total commits to the Home Assistant orga: +104 commits to home-assistant +19 commits to home-assistant.io 12 commits to home-assistant-polymer ") +- [Per\-Øyvind Bruun (@peroyvind)](https://github.com/peroyvind "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [pereiraru (@pereiraru)](https://github.com/pereiraru "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [perfalk (@perfalk)](https://github.com/perfalk "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Pertti Roitto (@roitto)](https://github.com/roitto "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Petar Petrov (@MindFreeze)](https://github.com/MindFreeze "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -8327,8 +9639,11 @@ This page contains a list of people who have contributed in one way or another t - [Peter (@AnderssonPeter)](https://github.com/AnderssonPeter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Peter Dave Hello (@PeterDaveHello)](https://github.com/PeterDaveHello "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Peter Armstrong (@peteretep)](https://github.com/peteretep "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Peter Clarke (@peteclarkez)](https://github.com/peteclarkez "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Peter Epley (@epleypa)](https://github.com/epleypa "9 total commits to the Home Assistant orga: 7 commits to home-assistant.io @@ -8340,12 +9655,9 @@ This page contains a list of people who have contributed in one way or another t - [Peter Kyrkos (@KmanOz)](https://github.com/KmanOz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "10 total commits to the Home Assistant orga: -5 commits to home-assistant.io -5 commits to home-assistant -") -- [Peter Ragone (@pcragone)](https://github.com/pcragone "1 total commits to the Home Assistant orga: -1 commit to open-zwave +- [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "14 total commits to the Home Assistant orga: +8 commits to home-assistant.io +6 commits to home-assistant ") - [Peter Tisovčík (@mienkofax)](https://github.com/mienkofax "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -8356,23 +9668,23 @@ This page contains a list of people who have contributed in one way or another t - [Peter Zsak (@wroadd)](https://github.com/wroadd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [petewill (@petewill)](https://github.com/petewill "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [petkov (@petkov)](https://github.com/petkov "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Petr (@petrkle)](https://github.com/petrkle "2 total commits to the Home Assistant orga: -2 commits to dehydrated -") - [Petr Kotek (@petrkotek)](https://github.com/petrkotek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "11 total commits to the Home Assistant orga: -6 commits to home-assistant -5 commits to home-assistant.io +- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "14 total commits to the Home Assistant orga: +8 commits to home-assistant +6 commits to home-assistant.io ") -- [Petro31 (@Petro31)](https://github.com/Petro31 "6 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Petro31 (@Petro31)](https://github.com/Petro31 "11 total commits to the Home Assistant orga: +5 commits to home-assistant.io +4 commits to home-assistant 2 commits to home-assistant-polymer -1 commit to home-assistant.io ") - [pezinek (@pezinek)](https://github.com/pezinek "9 total commits to the Home Assistant orga: 8 commits to home-assistant @@ -8387,35 +9699,38 @@ This page contains a list of people who have contributed in one way or another t - [phfix (@phfix)](https://github.com/phfix "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Phi Dong (@pdong)](https://github.com/pdong "3 total commits to the Home Assistant orga: +- [Phi Dong (@pdong)](https://github.com/pdong "12 total commits to the Home Assistant orga: +8 commits to home-assistant-polymer 3 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Phil (@pnbruckner)](https://github.com/pnbruckner "49 total commits to the Home Assistant orga: +35 commits to home-assistant +14 commits to home-assistant.io ") - [Phil (@godloth)](https://github.com/godloth "10 total commits to the Home Assistant orga: 10 commits to home-assistant.io ") -- [Phil (@pnbruckner)](https://github.com/pnbruckner "10 total commits to the Home Assistant orga: -9 commits to home-assistant -1 commit to home-assistant.io -") -- [Phil Cole (@filcole)](https://github.com/filcole "15 total commits to the Home Assistant orga: -10 commits to home-assistant.io -5 commits to home-assistant +- [Phil Cole (@filcole)](https://github.com/filcole "19 total commits to the Home Assistant orga: +12 commits to home-assistant.io +7 commits to home-assistant ") - [Phil Elson (@pelson)](https://github.com/pelson "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") -- [Phil Frost (@bitglue)](https://github.com/bitglue "14 total commits to the Home Assistant orga: +- [Phil Frost (@bitglue)](https://github.com/bitglue "15 total commits to the Home Assistant orga: 12 commits to home-assistant 2 commits to home-assistant.io +1 commit to people ") -- [Phil Haack (@Haacked)](https://github.com/Haacked "3 total commits to the Home Assistant orga: +- [Phil Haack (@haacked)](https://github.com/haacked "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Phil Hansen (@Hansen8601)](https://github.com/Hansen8601 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "36 total commits to the Home Assistant orga: -21 commits to home-assistant.io +- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "37 total commits to the Home Assistant orga: +22 commits to home-assistant.io 11 commits to home-assistant 4 commits to open-zwave ") @@ -8452,13 +9767,17 @@ This page contains a list of people who have contributed in one way or another t 56 commits to home-assistant 9 commits to home-assistant.io ") -- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "22 total commits to the Home Assistant orga: -14 commits to home-assistant -8 commits to home-assistant.io +- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "27 total commits to the Home Assistant orga: +16 commits to home-assistant +11 commits to home-assistant.io ") - [Philip Søeberg (@philipsoeberg)](https://github.com/philipsoeberg "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Philipp Danner (@dannerph)](https://github.com/dannerph "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "40 total commits to the Home Assistant orga: 27 commits to home-assistant 11 commits to home-assistant.io @@ -8472,14 +9791,19 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") +- [Philippe Delodder (@phdelodder)](https://github.com/phdelodder "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [philipperequile (@philipperequile)](https://github.com/philipperequile "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Phill Price (@phillprice)](https://github.com/phillprice "12 total commits to the Home Assistant orga: -12 commits to home-assistant.io +- [Phill Price (@phillprice)](https://github.com/phillprice "14 total commits to the Home Assistant orga: +13 commits to home-assistant.io +1 commit to developers.home-assistant ") -- [phispi (@phispi)](https://github.com/phispi "1 total commits to the Home Assistant orga: +- [phispi (@phispi)](https://github.com/phispi "3 total commits to the Home Assistant orga: +2 commits to home-assistant 1 commit to home-assistant.io ") - [phithor (@phithor)](https://github.com/phithor "2 total commits to the Home Assistant orga: @@ -8499,16 +9823,20 @@ This page contains a list of people who have contributed in one way or another t - [Pier\-Luc Charbonneau (@plcharbonneau)](https://github.com/plcharbonneau "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Pierre (@BaQs)](https://github.com/BaQs "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Pierre (@BaQs)](https://github.com/BaQs "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io ") - [Pierre Gronlier (@ticapix)](https://github.com/ticapix "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Pierre Ståhl (@postlund)](https://github.com/postlund "52 total commits to the Home Assistant orga: -35 commits to home-assistant -11 commits to home-assistant.io +- [Pierre Sicot (@psicot)](https://github.com/psicot "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [Pierre Ståhl (@postlund)](https://github.com/postlund "54 total commits to the Home Assistant orga: +36 commits to home-assistant +12 commits to home-assistant.io 4 commits to netdisco 2 commits to home-assistant-polymer ") @@ -8530,9 +9858,18 @@ This page contains a list of people who have contributed in one way or another t - [Piotr Dobrowolski (@Informatic)](https://github.com/Informatic "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") +- [Piotr Kubiak (@piotr-kubiak)](https://github.com/piotr-kubiak "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Piotr Miazga (@polishdeveloper)](https://github.com/polishdeveloper "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Piotr Witek (@piowit)](https://github.com/piowit "1 total commits to the Home Assistant orga: +1 commit to hassos +") +- [Piotr Żuralski (@piotr-zuralski)](https://github.com/piotr-zuralski "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [Pipiche (@pipiche38)](https://github.com/pipiche38 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -8548,6 +9885,10 @@ This page contains a list of people who have contributed in one way or another t - [pkonnekermetametrics (@pkonnekermetametrics)](https://github.com/pkonnekermetametrics "5 total commits to the Home Assistant orga: 5 commits to warrant ") +- [plafü (@plafue)](https://github.com/plafue "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [PlanetJ (@PlanetJ)](https://github.com/PlanetJ "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -8566,12 +9907,23 @@ This page contains a list of people who have contributed in one way or another t - [PollieKrismis (@PollieKrismis)](https://github.com/PollieKrismis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [PoofyTeddy (@poofyteddy)](https://github.com/poofyteddy "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [pp81381 (@pp81381)](https://github.com/pp81381 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [pplucky (@pplucky)](https://github.com/pplucky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Pratyush Mohapatra (@Ativerc)](https://github.com/Ativerc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [presslab\-us (@presslab-us)](https://github.com/presslab-us "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [priiduonu (@priiduonu)](https://github.com/priiduonu "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -8604,6 +9956,9 @@ This page contains a list of people who have contributed in one way or another t - [Purplecarrot (@purplecarrot)](https://github.com/purplecarrot "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [pvmil (@pvmil)](https://github.com/pvmil "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [pyitphyoaung (@pyitphyoaung)](https://github.com/pyitphyoaung "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -8617,8 +9972,8 @@ This page contains a list of people who have contributed in one way or another t - [qinghuangchan (@qinghuangchan)](https://github.com/qinghuangchan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [qqgg231 (@qqgg231)](https://github.com/qqgg231 "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [qqgg231 (@qqgg231)](https://github.com/qqgg231 "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [qrionic labs (@qrioniclabs)](https://github.com/qrioniclabs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8626,8 +9981,15 @@ This page contains a list of people who have contributed in one way or another t - [quaec (@quaec)](https://github.com/quaec "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Quatroking (@Quatroking)](https://github.com/Quatroking "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Quatroking (@Quatroking)](https://github.com/Quatroking "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Quentame (@Quentame)](https://github.com/Quentame "57 total commits to the Home Assistant orga: +55 commits to home-assistant +2 commits to home-assistant.io +") +- [Quentin Favrie (@tseho)](https://github.com/tseho "3 total commits to the Home Assistant orga: +3 commits to appdaemon ") - [Quentin Stafford\-Fraser (@quentinsf)](https://github.com/quentinsf "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -8636,9 +9998,9 @@ This page contains a list of people who have contributed in one way or another t - [Questler (@Questler)](https://github.com/Questler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [quthla (@quthla)](https://github.com/quthla "17 total commits to the Home Assistant orga: +- [quthla (@quthla)](https://github.com/quthla "21 total commits to the Home Assistant orga: +10 commits to home-assistant 6 commits to home-assistant-polymer -6 commits to home-assistant 4 commits to home-assistant-iOS 1 commit to home-assistant.io ") @@ -8649,8 +10011,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [R Huish (@genestealer)](https://github.com/genestealer "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [R Huish (@genestealer)](https://github.com/genestealer "28 total commits to the Home Assistant orga: +28 commits to home-assistant.io ") - [r4nd0mbr1ck (@r4nd0mbr1ck)](https://github.com/r4nd0mbr1ck "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -8660,16 +10022,25 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Raa'Shaun H\. (@CardcaptorRLH85)](https://github.com/CardcaptorRLH85 "1 total commits to the Home Assistant orga: +1 commit to hassio-installer +") - [Radim (@rds76)](https://github.com/rds76 "2 total commits to the Home Assistant orga: 2 commits to appdaemon ") -- [radinsky (@radinsky)](https://github.com/radinsky "1 total commits to the Home Assistant orga: +- [radinsky (@radinsky)](https://github.com/radinsky "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Rafael Alencar (@rafaeldca)](https://github.com/rafaeldca "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [rafale77 (@rafale77)](https://github.com/rafale77 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to home-assistant ") +- [rahul\_5409 (@RahulRavishankar)](https://github.com/RahulRavishankar "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Raiford (@raiford)](https://github.com/raiford "2 total commits to the Home Assistant orga: 1 commit to hassio-addons 1 commit to home-assistant.io @@ -8677,12 +10048,24 @@ This page contains a list of people who have contributed in one way or another t - [rainlake (@rainlake)](https://github.com/rainlake "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [ral (@leitonp)](https://github.com/leitonp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ralph (@bberg115)](https://github.com/bberg115 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ralph Hopman (@rhopman)](https://github.com/rhopman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Raman Gupta (@raman325)](https://github.com/raman325 "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to home-assistant +") +- [Rami Mosleh (@engrbm87)](https://github.com/engrbm87 "19 total commits to the Home Assistant orga: +8 commits to appdaemon +7 commits to home-assistant +4 commits to home-assistant.io +") - [Randall Mason (@ClashTheBunny)](https://github.com/ClashTheBunny "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8691,8 +10074,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 2 commits to home-assistant.io ") -- [Raoul Teeuwen (@raoulteeuwen)](https://github.com/raoulteeuwen "1 total commits to the Home Assistant orga: +- [Raoul Teeuwen (@raoulteeuwen)](https://github.com/raoulteeuwen "2 total commits to the Home Assistant orga: 1 commit to home-assistant +1 commit to home-assistant.io ") - [Rashmi Yadav (@raysrashmi)](https://github.com/raysrashmi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8714,9 +10098,6 @@ This page contains a list of people who have contributed in one way or another t - [Ray (@raymck)](https://github.com/raymck "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Ray Goat (@raygoat)](https://github.com/raygoat "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io -") - [ray0711 (@ray0711)](https://github.com/ray0711 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -8729,6 +10110,9 @@ This page contains a list of people who have contributed in one way or another t - [Raymond Ng (@RaymondNg2)](https://github.com/RaymondNg2 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Razafintsialonina Ny Andrianina Mamy (@nyandrianinamamy)](https://github.com/nyandrianinamamy "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [rbflurry (@rbflurry)](https://github.com/rbflurry "20 total commits to the Home Assistant orga: 16 commits to home-assistant.io 4 commits to home-assistant @@ -8745,6 +10129,9 @@ This page contains a list of people who have contributed in one way or another t - [rdkayman (@rdkayman)](https://github.com/rdkayman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [realthk (@realthk)](https://github.com/realthk "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Rebecca Cran (@bcran)](https://github.com/bcran "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8760,12 +10147,19 @@ This page contains a list of people who have contributed in one way or another t - [reef\-actor (@reef-actor)](https://github.com/reef-actor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Reinder Reinders (@reinder83)](https://github.com/reinder83 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Reinhard Tartler (@siretart)](https://github.com/siretart "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [remc0 (@remc0)](https://github.com/remc0 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Renaud Martinet (@karouf)](https://github.com/karouf "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Rendili (@Rendili)](https://github.com/Rendili "6 total commits to the Home Assistant orga: 5 commits to home-assistant 1 commit to home-assistant.io @@ -8774,8 +10168,8 @@ This page contains a list of people who have contributed in one way or another t 18 commits to home-assistant 8 commits to home-assistant.io ") -- [Rene Tode (@ReneTode)](https://github.com/ReneTode "57 total commits to the Home Assistant orga: -54 commits to appdaemon +- [Rene Tode (@ReneTode)](https://github.com/ReneTode "62 total commits to the Home Assistant orga: +59 commits to appdaemon 3 commits to home-assistant.io ") - [René (@rretsiem)](https://github.com/rretsiem "1 total commits to the Home Assistant orga: @@ -8828,12 +10222,16 @@ This page contains a list of people who have contributed in one way or another t - [Richard Evans (@rmevans9)](https://github.com/rmevans9 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Richard Lucas (@lucasweb78)](https://github.com/lucasweb78 "9 total commits to the Home Assistant orga: -9 commits to home-assistant +- [Richard Jones (@RJ)](https://github.com/RJ "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") -- [Richard Mitchell (@mitchellrj)](https://github.com/mitchellrj "7 total commits to the Home Assistant orga: -5 commits to home-assistant -2 commits to home-assistant.io +- [Richard Lucas (@lucasweb78)](https://github.com/lucasweb78 "10 total commits to the Home Assistant orga: +9 commits to home-assistant +1 commit to people +") +- [Richard Mitchell (@mitchellrj)](https://github.com/mitchellrj "20 total commits to the Home Assistant orga: +17 commits to home-assistant +3 commits to home-assistant.io ") - [Richard Niemand (@rniemand)](https://github.com/rniemand "1 total commits to the Home Assistant orga: 1 commit to example-custom-config @@ -8845,17 +10243,23 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") +- [RichardUUU (@RichardUUU)](https://github.com/RichardUUU "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [richo (@richo)](https://github.com/richo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Rick (@rcuddy)](https://github.com/rcuddy "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Rick Fletcher (@rfletcher)](https://github.com/rfletcher "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Rick Sharp (@ricksharp)](https://github.com/ricksharp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Rick van Hattem (@WoLpH)](https://github.com/WoLpH "5 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Rick van Hattem (@WoLpH)](https://github.com/WoLpH "6 total commits to the Home Assistant orga: +3 commits to home-assistant 1 commit to scenegen 1 commit to feedparser 1 commit to home-assistant.io @@ -8878,9 +10282,15 @@ This page contains a list of people who have contributed in one way or another t - [rnizametdinov (@rnizametdinov)](https://github.com/rnizametdinov "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") +- [Rob (@robvanuden)](https://github.com/robvanuden "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") +- [Rob Chandhok (@robchandhok)](https://github.com/robchandhok "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Rob Connolly (@webworxshop)](https://github.com/webworxshop "4 total commits to the Home Assistant orga: 2 commits to home-assistant 2 commits to home-assistant.io @@ -8895,51 +10305,51 @@ This page contains a list of people who have contributed in one way or another t - [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") -- [Robbert Müller (@mjrider)](https://github.com/mjrider "10 total commits to the Home Assistant orga: -6 commits to hassio-cli +- [Robbert Müller (@mjrider)](https://github.com/mjrider "15 total commits to the Home Assistant orga: +9 commits to hassio-cli +2 commits to home-assistant 2 commits to home-assistant.io +1 commit to hassio-addons 1 commit to people -1 commit to home-assistant ") - [Robbie Page (@rorpage)](https://github.com/rorpage "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") -- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1810 total commits to the Home Assistant orga: -787 commits to home-assistant-iOS -302 commits to home-assistant -278 commits to home-assistant.io -139 commits to ios-certificates +- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "2483 total commits to the Home Assistant orga: +1256 commits to home-assistant-iOS +332 commits to home-assistant +293 commits to home-assistant.io +163 commits to ios-certificates 93 commits to homebridge-homeassistant -30 commits to people +90 commits to companion.home-assistant +44 commits to people 24 commits to cla-bot 23 commits to Home-Assistant-iOS-Push +21 commits to home-assistant-polymer +18 commits to Iconic +17 commits to mobile-apps-fcm-push 15 commits to hubot-home-assistant -15 commits to home-assistant-polymer -10 commits to home-assistant-dyndns -8 commits to Analytics-Receiver +14 commits to developers.home-assistant +12 commits to home-assistant-assets 8 commits to codeowners-mention -7 commits to dehydrated 7 commits to netdisco 6 commits to organization-internal -6 commits to mobile-apps-fcm-push -4 commits to home-assistant-assets -3 commits to home-assistant-cli -3 commits to home-assistant-js-websocket +4 commits to home-assistant-js-websocket 3 commits to home-assistant-js -3 commits to LabelBot +3 commits to hassbot +3 commits to home-assistant-cli 3 commits to scenegen +3 commits to LabelBot 3 commits to organization 3 commits to hadashboard -3 commits to hassbot 3 commits to appdaemon -3 commits to home-assistant-Android -3 commits to developers.home-assistant +3 commits to .github +3 commits to home-assistant-android 3 commits to open-zwave -2 commits to home-assistant-notebooks 2 commits to micropython-home-assistant -2 commits to lambda-home-assistant-github 2 commits to fabric-home-assistant -2 commits to .github +2 commits to home-assistant-notebooks +2 commits to lambda-home-assistant-github 1 commit to hass-release 1 commit to gu-who ") @@ -8947,11 +10357,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") -- [Robert (@metbril)](https://github.com/metbril "10 total commits to the Home Assistant orga: -10 commits to home-assistant.io -") -- [Robert (@rbrtio)](https://github.com/rbrtio "2 total commits to the Home Assistant orga: -2 commits to open-zwave +- [Robert (@metbril)](https://github.com/metbril "12 total commits to the Home Assistant orga: +12 commits to home-assistant.io ") - [Robert Accettura (@raccettura)](https://github.com/raccettura "2 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -8960,8 +10367,9 @@ This page contains a list of people who have contributed in one way or another t - [Robert Beal (@robertbeal)](https://github.com/robertbeal "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Robert Dunmire III (@slackr31337)](https://github.com/slackr31337 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Robert Dunmire III (@slackr31337)](https://github.com/slackr31337 "6 total commits to the Home Assistant orga: +5 commits to home-assistant +1 commit to home-assistant.io ") - [Robert Kiss (@kepten)](https://github.com/kepten "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -8970,8 +10378,8 @@ This page contains a list of people who have contributed in one way or another t - [Robert Kowalski (@robertkowalski)](https://github.com/robertkowalski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "5 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "8 total commits to the Home Assistant orga: +4 commits to appdaemon 1 commit to home-assistant-polymer 1 commit to hassos 1 commit to home-assistant @@ -8984,35 +10392,50 @@ This page contains a list of people who have contributed in one way or another t 1 commit to appdaemon 1 commit to home-assistant ") -- [Robert Svensson (@Kane610)](https://github.com/Kane610 "120 total commits to the Home Assistant orga: -81 commits to home-assistant -32 commits to home-assistant.io +- [Robert Svensson (@Kane610)](https://github.com/Kane610 "236 total commits to the Home Assistant orga: +186 commits to home-assistant +43 commits to home-assistant.io 4 commits to developers.home-assistant 1 commit to netdisco 1 commit to home-assistant-polymer 1 commit to people ") +- [Robert Van Gorkom (@vangorra)](https://github.com/vangorra "13 total commits to the Home Assistant orga: +10 commits to home-assistant +3 commits to home-assistant.io +") - [Roberto Tyley (@rtyley)](https://github.com/rtyley "207 total commits to the Home Assistant orga: 207 commits to gu-who ") - [robhuls (@robhuls)](https://github.com/robhuls "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Robin (@robmarkcole)](https://github.com/robmarkcole "77 total commits to the Home Assistant orga: -49 commits to home-assistant.io -20 commits to home-assistant -2 commits to home-assistant-notebooks +- [Robin (@robmarkcole)](https://github.com/robmarkcole "80 total commits to the Home Assistant orga: +50 commits to home-assistant.io +22 commits to home-assistant 2 commits to home-assistant-assets +2 commits to home-assistant-notebooks 2 commits to people 1 commit to hassos 1 commit to data.home-assistant ") +- [Robin (@Derkades)](https://github.com/Derkades "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Robin (@kloknibor)](https://github.com/kloknibor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Robin Clarke (@robin13)](https://github.com/robin13 "1 total commits to the Home Assistant orga: +- [Robin Clarke (@robin13)](https://github.com/robin13 "2 total commits to the Home Assistant orga: +1 commit to hassio-addons 1 commit to home-assistant ") +- [Robin Harmsen (@reharmsen)](https://github.com/reharmsen "9 total commits to the Home Assistant orga: +2 commits to hassio-homeassistant +2 commits to hassio-base +2 commits to hassos +2 commits to hassio-addons +1 commit to hassio-builder +") - [Robin Laurén (@llauren)](https://github.com/llauren "2 total commits to the Home Assistant orga: 1 commit to appdaemon 1 commit to home-assistant.io @@ -9023,23 +10446,45 @@ This page contains a list of people who have contributed in one way or another t - [Robin Migalski (@RobinMglsk)](https://github.com/RobinMglsk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [roblandry (@roblandry)](https://github.com/roblandry "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Robin Pronk (@rfpronk)](https://github.com/rfpronk "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") +- [Robin Wohlers\-Reichel (@squishykid)](https://github.com/squishykid "6 total commits to the Home Assistant orga: +5 commits to home-assistant +1 commit to home-assistant.io +") +- [roblandry (@roblandry)](https://github.com/roblandry "3 total commits to the Home Assistant orga: +3 commits to home-assistant ") - [robybob64 (@robybob64)](https://github.com/robybob64 "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [Rocik (@Rocik)](https://github.com/Rocik "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Roddie Hasan (@eiddor)](https://github.com/eiddor "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io 3 commits to open-zwave ") +- [Rodrigo Pérez (@rodripf)](https://github.com/rodripf "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") +- [Roeland Van Lembergen (@clayhill)](https://github.com/clayhill "2 total commits to the Home Assistant orga: +2 commits to appdaemon +") +- [Roelof Schuiling (@rschuiling)](https://github.com/rschuiling "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Roger Gammans (@rgammans)](https://github.com/rgammans "1 total commits to the Home Assistant orga: 1 commit to feedparser ") -- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "113 total commits to the Home Assistant orga: -78 commits to home-assistant -33 commits to home-assistant.io +- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "121 total commits to the Home Assistant orga: +83 commits to home-assistant +35 commits to home-assistant.io 2 commits to people +1 commit to developers.home-assistant ") - [Roi Dayan (@roidayan)](https://github.com/roidayan "7 total commits to the Home Assistant orga: 6 commits to home-assistant @@ -9049,11 +10494,19 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to homebridge-homeassistant ") +- [Roland Beck (@Data-Monkey)](https://github.com/Data-Monkey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Rolf K (@abstrakct)](https://github.com/abstrakct "6 total commits to the Home Assistant orga: +3 commits to home-assistant +3 commits to home-assistant.io +") - [Rolf Schäuble (@rschaeuble)](https://github.com/rschaeuble "6 total commits to the Home Assistant orga: 6 commits to appdaemon ") -- [rolfberkenbosch (@rolfberkenbosch)](https://github.com/rolfberkenbosch "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [rolfberkenbosch (@rolfberkenbosch)](https://github.com/rolfberkenbosch "9 total commits to the Home Assistant orga: +8 commits to home-assistant +1 commit to home-assistant.io ") - [rollbrettler (@rollbrettler)](https://github.com/rollbrettler "2 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -9069,16 +10522,17 @@ This page contains a list of people who have contributed in one way or another t - [Roman (@Roemer)](https://github.com/Roemer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "5 total commits to the Home Assistant orga: +- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "7 total commits to the Home Assistant orga: 3 commits to home-assistant.io +2 commits to hassio-homeassistant 2 commits to home-assistant ") - [Ron Miller (@brainyron)](https://github.com/brainyron "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "2 total commits to the Home Assistant orga: +- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant.io ") - [Ron Šmeral (@rsmeral)](https://github.com/rsmeral "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -9092,18 +10546,25 @@ This page contains a list of people who have contributed in one way or another t - [Ronnie Garcia (@ronniegarcia)](https://github.com/ronniegarcia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ronny Eia (@eiaro)](https://github.com/eiaro "4 total commits to the Home Assistant orga: +4 commits to home-assistant +") - [roqeer (@roqeer)](https://github.com/roqeer "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") -- [Ross Dargan (@rossdargan)](https://github.com/rossdargan "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Ross Cullen (@rosscullen)](https://github.com/rosscullen "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Ross Dargan (@rossdargan)](https://github.com/rossdargan "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to home-assistant +") +- [Ross Patterson (@rpatterson)](https://github.com/rpatterson "7 total commits to the Home Assistant orga: +7 commits to scenegen ") - [Ross Schulman (@rschulman)](https://github.com/rschulman "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") -- [rosscullen (@rosscullen)](https://github.com/rosscullen "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io -") - [Roustem Karimov (@roustem)](https://github.com/roustem "26 total commits to the Home Assistant orga: 26 commits to 1password-teams-open-source ") @@ -9123,8 +10584,8 @@ This page contains a list of people who have contributed in one way or another t - [rpr69 (@rpr69)](https://github.com/rpr69 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [rrubin0 (@rrubin0)](https://github.com/rrubin0 "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [rrubin0 (@rrubin0)](https://github.com/rrubin0 "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [Ruben (@rubenvandeven)](https://github.com/rubenvandeven "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -9152,14 +10613,11 @@ This page contains a list of people who have contributed in one way or another t - [Rudi Middel (@mrBussy)](https://github.com/mrBussy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [rudis (@rudis)](https://github.com/rudis "37 total commits to the Home Assistant orga: -37 commits to dehydrated -") - [Rudolf Offereins (@Sholofly)](https://github.com/Sholofly "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Rufik (@rufik)](https://github.com/rufik "1 total commits to the Home Assistant orga: -1 commit to home-assistant-cli +- [Rufik (@rufik)](https://github.com/rufik "2 total commits to the Home Assistant orga: +2 commits to home-assistant-cli ") - [runningman84 (@runningman84)](https://github.com/runningman84 "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -9171,8 +10629,8 @@ This page contains a list of people who have contributed in one way or another t - [runraid (@runraid)](https://github.com/runraid "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [ruohan\.chen (@crhan)](https://github.com/crhan "5 total commits to the Home Assistant orga: -3 commits to home-assistant +- [ruohan\.chen (@crhan)](https://github.com/crhan "6 total commits to the Home Assistant orga: +4 commits to home-assistant 2 commits to home-assistant.io ") - [Ruslan Sayfutdinov (@KapJI)](https://github.com/KapJI "2 total commits to the Home Assistant orga: @@ -9200,15 +10658,15 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 3 commits to home-assistant ") -- [Ryan Bray (@rbray89)](https://github.com/rbray89 "26 total commits to the Home Assistant orga: -22 commits to hassos +- [Ryan Bray (@rbray89)](https://github.com/rbray89 "28 total commits to the Home Assistant orga: +24 commits to hassos 2 commits to home-assistant.io 1 commit to hassio-build 1 commit to people ") -- [Ryan Claussen (@rtclauss)](https://github.com/rtclauss "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [Ryan Claussen (@rtclauss)](https://github.com/rtclauss "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to home-assistant ") - [Ryan Daigle (@rwdaigle)](https://github.com/rwdaigle "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -9217,6 +10675,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 2 commits to home-assistant.io ") +- [Ryan Ewen (@RyanEwen)](https://github.com/RyanEwen "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Ryan Gibbons (@rtgibbons)](https://github.com/rtgibbons "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9229,6 +10690,9 @@ This page contains a list of people who have contributed in one way or another t - [Ryan Jarvis (@Cabalist)](https://github.com/Cabalist "1 total commits to the Home Assistant orga: 1 commit to hassbian-scripts ") +- [Ryan Johnson (@ryanjohnsontv)](https://github.com/ryanjohnsontv "1 total commits to the Home Assistant orga: +1 commit to home-assistant-assets +") - [Ryan Kladar (@Kladar)](https://github.com/Kladar "1 total commits to the Home Assistant orga: 1 commit to hassos ") @@ -9238,9 +10702,6 @@ This page contains a list of people who have contributed in one way or another t 14 commits to home-assistant-polymer 1 commit to home-assistant-notebooks ") -- [Ryan Kuhl (@rkk09c)](https://github.com/rkk09c "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source -") - [Ryan McLean (@ryanm101)](https://github.com/ryanm101 "99 total commits to the Home Assistant orga: 77 commits to hassio-cli 16 commits to home-assistant @@ -9298,8 +10759,9 @@ This page contains a list of people who have contributed in one way or another t - [sagilo (@sagilo)](https://github.com/sagilo "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [saintman23 (@saintman23)](https://github.com/saintman23 "10 total commits to the Home Assistant orga: +- [saintman23 (@saintman23)](https://github.com/saintman23 "11 total commits to the Home Assistant orga: 10 commits to open-zwave +1 commit to home-assistant.io ") - [Salman Shah (@salman-bhai)](https://github.com/salman-bhai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9345,6 +10807,10 @@ This page contains a list of people who have contributed in one way or another t - [Samuel Maggs (@samuelmaggs)](https://github.com/samuelmaggs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Samuel Progin (@Arduous)](https://github.com/Arduous "3 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +1 commit to home-assistant.io +") - [samuelsson86 (@samuelsson86)](https://github.com/samuelsson86 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9362,13 +10828,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [sander76 (@sander76)](https://github.com/sander76 "48 total commits to the Home Assistant orga: -44 commits to home-assistant +- [sander76 (@sander76)](https://github.com/sander76 "51 total commits to the Home Assistant orga: +47 commits to home-assistant 4 commits to home-assistant.io ") - [Sangwon Kim (@pueue)](https://github.com/pueue "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Santobert (@Santobert)](https://github.com/Santobert "48 total commits to the Home Assistant orga: +37 commits to home-assistant +11 commits to home-assistant.io +") - [sapph42 (@sapph42)](https://github.com/sapph42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9378,11 +10848,17 @@ This page contains a list of people who have contributed in one way or another t - [sarakha63 (@sarakha63)](https://github.com/sarakha63 "130 total commits to the Home Assistant orga: 130 commits to open-zwave ") +- [SaturnusDJ (@SaturnusDJ)](https://github.com/SaturnusDJ "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Saumya Balodi (@saumya1906)](https://github.com/saumya1906 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Saurabh Sharma (@saurabhsharma001)](https://github.com/saurabhsharma001 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Saurabh Sharma (@saurabhsharma001)](https://github.com/saurabhsharma001 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Save me (@Cyr-ius)](https://github.com/Cyr-ius "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [Sbaa1 (@Sbaa1)](https://github.com/Sbaa1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9393,8 +10869,9 @@ This page contains a list of people who have contributed in one way or another t - [scaarup (@scaarup)](https://github.com/scaarup "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [scheric (@scheric)](https://github.com/scheric "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [scheric (@scheric)](https://github.com/scheric "9 total commits to the Home Assistant orga: +6 commits to home-assistant.io +3 commits to home-assistant ") - [schferbe (@schferbe)](https://github.com/schferbe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9421,6 +10898,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to home-assistant.io ") +- [Scott (@SonicMagna)](https://github.com/SonicMagna "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Scott Albertson (@salbertson)](https://github.com/salbertson "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -9503,8 +10983,18 @@ This page contains a list of people who have contributed in one way or another t - [seanodell (@seanodell)](https://github.com/seanodell "1 total commits to the Home Assistant orga: 1 commit to hassos ") -- [seanvictory (@seanvictory)](https://github.com/seanvictory "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [SeanPM5 (@SeanPM5)](https://github.com/SeanPM5 "79 total commits to the Home Assistant orga: +42 commits to companion.home-assistant +22 commits to home-assistant.io +11 commits to home-assistant-polymer +2 commits to developers.home-assistant +2 commits to alerts.home-assistant.io +") +- [seanvictory (@seanvictory)](https://github.com/seanvictory "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") +- [Seb Ruiz (@sebr)](https://github.com/sebr "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer ") - [Sebastiaan (@sebastiaanwezenberg)](https://github.com/sebastiaanwezenberg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9520,13 +11010,19 @@ This page contains a list of people who have contributed in one way or another t - [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the Home Assistant orga: 3 commits to libcoap ") -- [Sebastian Muszynski (@syssi)](https://github.com/syssi "192 total commits to the Home Assistant orga: -127 commits to home-assistant -59 commits to home-assistant.io +- [Sebastian Kügler (@sebasje)](https://github.com/sebasje "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Sebastian Muszynski (@syssi)](https://github.com/syssi "204 total commits to the Home Assistant orga: +136 commits to home-assistant +62 commits to home-assistant.io 3 commits to netdisco 2 commits to home-assistant-polymer 1 commit to people ") +- [Sebastian Ovide (@sebastianovide)](https://github.com/sebastianovide "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sebastian von Minckwitz (@teodoc)](https://github.com/teodoc "3 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer 1 commit to home-assistant @@ -9550,10 +11046,16 @@ This page contains a list of people who have contributed in one way or another t - [Sergei Vishnikin (@armicron)](https://github.com/armicron "33 total commits to the Home Assistant orga: 33 commits to warrant ") +- [Sergej (@Sergej-Popov)](https://github.com/Sergej-Popov "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sergey Isachenko (@zabuldon)](https://github.com/zabuldon "11 total commits to the Home Assistant orga: 9 commits to home-assistant 2 commits to home-assistant.io ") +- [Sergey Lanzman (@sergeylanzman)](https://github.com/sergeylanzman "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sergey Rymsha (@rymsha)](https://github.com/rymsha "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -9561,6 +11063,13 @@ This page contains a list of people who have contributed in one way or another t - [Serghei Iakovlev (@sergeyklay)](https://github.com/sergeyklay "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Sergio Conde Gómez (@skgsergio)](https://github.com/skgsergio "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") +- [Sergio Mayoral Martínez (@sermayoral)](https://github.com/sermayoral "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Sergio Oller (@zeehio)](https://github.com/zeehio "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -9578,8 +11087,9 @@ This page contains a list of people who have contributed in one way or another t - [Sev (@collse)](https://github.com/collse "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Seweryn Zeman (@cadavre)](https://github.com/cadavre "1 total commits to the Home Assistant orga: +- [Seweryn Zeman (@cadavre)](https://github.com/cadavre "2 total commits to the Home Assistant orga: 1 commit to netdisco +1 commit to home-assistant ") - [sfam (@sfam)](https://github.com/sfam "65 total commits to the Home Assistant orga: 58 commits to home-assistant @@ -9587,6 +11097,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to netdisco 1 commit to home-assistant-polymer ") +- [sfjes (@sfjes)](https://github.com/sfjes "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Shahen Hovhannisyan (@shahen94)](https://github.com/shahen94 "1 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +") - [shanbs (@shanbs)](https://github.com/shanbs "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io @@ -9600,6 +11116,10 @@ This page contains a list of people who have contributed in one way or another t - [Shantanu Tushar (@shaan7)](https://github.com/shaan7 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Sharif Nassar (@mrwacky42)](https://github.com/mrwacky42 "2 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to home-assistant.io +") - [sharukins (@sharukins)](https://github.com/sharukins "3 total commits to the Home Assistant orga: 3 commits to hassio-build ") @@ -9609,23 +11129,24 @@ This page contains a list of people who have contributed in one way or another t - [Shawna (@cherrykoda)](https://github.com/cherrykoda "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [shbatm (@shbatm)](https://github.com/shbatm "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +- [shbatm (@shbatm)](https://github.com/shbatm "5 total commits to the Home Assistant orga: +2 commits to home-assistant-polymer +2 commits to home-assistant +1 commit to home-assistant.io ") - [Shiny (@Br3nda)](https://github.com/Br3nda "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to developers.home-assistant ") +- [Shiwigy (@Shiwigy)](https://github.com/Shiwigy "2 total commits to the Home Assistant orga: +2 commits to hassio-addons +") - [shker (@serhtt)](https://github.com/serhtt "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [shootsoft (@shootsoft)](https://github.com/shootsoft "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source -") -- [shred86 (@shred86)](https://github.com/shred86 "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [shred86 (@shred86)](https://github.com/shred86 "10 total commits to the Home Assistant orga: +7 commits to home-assistant +3 commits to home-assistant.io ") - [shuaiger (@shuaiger)](https://github.com/shuaiger "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -9633,19 +11154,31 @@ This page contains a list of people who have contributed in one way or another t - [Shubham mittal (@upgoingstar)](https://github.com/upgoingstar "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [siberx (@siberx)](https://github.com/siberx "1 total commits to the Home Assistant orga: +- [Shulyaka (@Shulyaka)](https://github.com/Shulyaka "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to home-assistant ") -- [Sidney (@autinerd)](https://github.com/autinerd "1 total commits to the Home Assistant orga: +- [siberx (@siberx)](https://github.com/siberx "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [siebert (@siebert)](https://github.com/siebert "3 total commits to the Home Assistant orga: 3 commits to home-assistant ") +- [signaleleven (@signaleleven)](https://github.com/signaleleven "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Siim Talvik (@simpss)](https://github.com/simpss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [SiliconAvatar (@SiliconAvatar)](https://github.com/SiliconAvatar "1 total commits to the Home Assistant orga: +- [silfa718 (@silfa718)](https://github.com/silfa718 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [SiliconAvatar (@SiliconAvatar)](https://github.com/SiliconAvatar "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to hassio-addons +1 commit to home-assistant +") +- [silsha fux (@silsha)](https://github.com/silsha "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [silversword411 (@silversword411)](https://github.com/silversword411 "1 total commits to the Home Assistant orga: @@ -9660,10 +11193,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Simon (@Deadolus)](https://github.com/Deadolus "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Simon (@chatainsim)](https://github.com/chatainsim "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Simon Elsbrock (@else)](https://github.com/else "2 total commits to the Home Assistant orga: +- [Simon Elsbrock (@elsbrock)](https://github.com/elsbrock "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Simon Hellbe (@hellbe)](https://github.com/hellbe "1 total commits to the Home Assistant orga: @@ -9671,8 +11207,8 @@ This page contains a list of people who have contributed in one way or another t ") - [Simon Holzmayer (@sholzmayer)](https://github.com/sholzmayer "6 total commits to the Home Assistant orga: 3 commits to hassos -1 commit to home-assistant-polymer 1 commit to hassio +1 commit to home-assistant-polymer 1 commit to developers.home-assistant ") - [Simon Hörrle (@CM000n)](https://github.com/CM000n "1 total commits to the Home Assistant orga: @@ -9681,8 +11217,8 @@ This page contains a list of people who have contributed in one way or another t - [Simon L\. B\. Nielsen (@simonlbn)](https://github.com/simonlbn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Simon Nørager Sørensen (@simse)](https://github.com/simse "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Simon Nørager Sørensen (@simse)](https://github.com/simse "5 total commits to the Home Assistant orga: +4 commits to home-assistant 1 commit to home-assistant.io ") - [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the Home Assistant orga: @@ -9693,11 +11229,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to appdaemon 1 commit to home-assistant ") -- [Simone (@simonewebdesign)](https://github.com/simonewebdesign "1 total commits to the Home Assistant orga: +- [Simon Wüllhorst (@descilla)](https://github.com/descilla "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Simone Carletti (@weppos)](https://github.com/weppos "1 total commits to the Home Assistant orga: -1 commit to dehydrated +- [Simone (@simonewebdesign)](https://github.com/simonewebdesign "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [simonk83 (@simonk83)](https://github.com/simonk83 "11 total commits to the Home Assistant orga: 11 commits to open-zwave @@ -9705,8 +11241,8 @@ This page contains a list of people who have contributed in one way or another t - [simonmcmahon4 (@simonmcmahon4)](https://github.com/simonmcmahon4 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [SimonThoustrup (@SimonThoustrup)](https://github.com/SimonThoustrup "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [SimonThoustrup (@SimonThoustrup)](https://github.com/SimonThoustrup "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Sindre Hansen (@sindrehan)](https://github.com/sindrehan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9725,6 +11261,9 @@ This page contains a list of people who have contributed in one way or another t - [skanab (@skanab)](https://github.com/skanab "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [skycryer (@skycryer)](https://github.com/skycryer "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Slava (@vaceslav)](https://github.com/vaceslav "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") @@ -9749,12 +11288,18 @@ This page contains a list of people who have contributed in one way or another t - [snagytx (@snagytx)](https://github.com/snagytx "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [sndcr (@sndcr)](https://github.com/sndcr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [SneakSnackSnake (@SneakSnackSnake)](https://github.com/SneakSnackSnake "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [snizzleorg (@snizzleorg)](https://github.com/snizzleorg "5 total commits to the Home Assistant orga: 5 commits to hadashboard ") -- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "10 total commits to the Home Assistant orga: -5 commits to home-assistant.io -5 commits to home-assistant +- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "17 total commits to the Home Assistant orga: +10 commits to home-assistant.io +7 commits to home-assistant ") - [so3n (@so3n)](https://github.com/so3n "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -9762,7 +11307,7 @@ This page contains a list of people who have contributed in one way or another t - [SofianeG (@sofianegargouri)](https://github.com/sofianegargouri "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [SolomonSklash (@SolomonSklash)](https://github.com/SolomonSklash "1 total commits to the Home Assistant orga: +- [Solomon Sklash (@SolomonSklash)](https://github.com/SolomonSklash "1 total commits to the Home Assistant orga: 1 commit to data.home-assistant ") - [Sorin Sbarnea (@ssbarnea)](https://github.com/ssbarnea "1 total commits to the Home Assistant orga: @@ -9800,6 +11345,11 @@ This page contains a list of people who have contributed in one way or another t - [spinside (@spinside)](https://github.com/spinside "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [springstan (@springstan)](https://github.com/springstan "30 total commits to the Home Assistant orga: +19 commits to home-assistant-polymer +10 commits to home-assistant +1 commit to home-assistant.io +") - [SpudGunMan (@SpudGunMan)](https://github.com/SpudGunMan "14 total commits to the Home Assistant orga: 14 commits to open-zwave ") @@ -9811,14 +11361,21 @@ This page contains a list of people who have contributed in one way or another t - [squirtbrnr (@squirtbrnr)](https://github.com/squirtbrnr "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Sriram Vaidyanathan (@vaidyasr)](https://github.com/vaidyasr "7 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [srg74 (@srg74)](https://github.com/srg74 "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") +- [Sriram Vaidyanathan (@vaidyasr)](https://github.com/vaidyasr "9 total commits to the Home Assistant orga: +5 commits to home-assistant +4 commits to home-assistant.io ") - [srirams (@srirams)](https://github.com/srirams "3 total commits to the Home Assistant orga: 2 commits to home-assistant 1 commit to home-assistant.io ") +- [ssenart (@ssenart)](https://github.com/ssenart "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [St\. John Johnson (@stjohnjohnson)](https://github.com/stjohnjohnson "9 total commits to the Home Assistant orga: 5 commits to home-assistant 4 commits to home-assistant.io @@ -9833,15 +11390,18 @@ This page contains a list of people who have contributed in one way or another t - [staraxis (@staraxis)](https://github.com/staraxis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [starkillerOG (@starkillerOG)](https://github.com/starkillerOG "22 total commits to the Home Assistant orga: -15 commits to home-assistant -4 commits to home-assistant.io +- [starkillerOG (@starkillerOG)](https://github.com/starkillerOG "25 total commits to the Home Assistant orga: +17 commits to home-assistant +5 commits to home-assistant.io 2 commits to home-assistant-polymer 1 commit to developers.home-assistant ") - [Stavros Korokithakis (@skorokithakis)](https://github.com/skorokithakis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [stboch (@stboch)](https://github.com/stboch "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Steaff (@steffenslavetinsky)](https://github.com/steffenslavetinsky "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -9849,12 +11409,19 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [steckenpferd (@steckenpferd)](https://github.com/steckenpferd "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [steckenpferd (@steckenpferd)](https://github.com/steckenpferd "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [stedy6 (@stedy6)](https://github.com/stedy6 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Stefan (@stefanroelofs)](https://github.com/stefanroelofs "4 total commits to the Home Assistant orga: +4 commits to hassio-addons +") +- [Stefan Agner (@agners)](https://github.com/agners "2 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to hassio-installer +") - [Stefan Burke (@stefnb)](https://github.com/stefnb "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -9865,9 +11432,6 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant 4 commits to home-assistant.io ") -- [Stefan Tatschner (@rumpelsepp)](https://github.com/rumpelsepp "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [stefanlod (@stefanlod)](https://github.com/stefanlod "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9891,7 +11455,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Stephan Grobler (@stephanfx)](https://github.com/stephanfx "1 total commits to the Home Assistant orga: +- [Stephan Beier (@stbkde)](https://github.com/stbkde "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Stephan Grobler (@stephangrobler)](https://github.com/stephangrobler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [stephanerosi (@stephanerosi)](https://github.com/stephanerosi "11 total commits to the Home Assistant orga: @@ -9901,8 +11468,17 @@ This page contains a list of people who have contributed in one way or another t - [stephanfevrier (@stephanfevrier)](https://github.com/stephanfevrier "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Stephen Beechen (@sabeechen)](https://github.com/sabeechen "1 total commits to the Home Assistant orga: -1 commit to hassio +- [stephanmiehe (@stephanmiehe)](https://github.com/stephanmiehe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [StephanVinkenborg (@StephanVinkenborg)](https://github.com/StephanVinkenborg "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Stephen Benjamin (@stbenjam)](https://github.com/stbenjam "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Stephen Coogan (@coogie)](https://github.com/coogie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Stephen Edgar (@ntwb)](https://github.com/ntwb "3 total commits to the Home Assistant orga: 1 commit to fabric-home-assistant @@ -9926,6 +11502,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [StephenWetzel (@StephenWetzel)](https://github.com/StephenWetzel "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Steve (@kabongsteve)](https://github.com/kabongsteve "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -9938,6 +11518,9 @@ This page contains a list of people who have contributed in one way or another t - [Steve Edson (@SteveEdson)](https://github.com/SteveEdson "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Steve M (@shmick)](https://github.com/shmick "2 total commits to the Home Assistant orga: +2 commits to home-assistant +") - [Steve Pomeroy (@xxv)](https://github.com/xxv "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -9957,6 +11540,10 @@ This page contains a list of people who have contributed in one way or another t - [Steve9F (@Steve9F)](https://github.com/Steve9F "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [SteveDinn (@SteveDinn)](https://github.com/SteveDinn "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Steven Adams (@navstev0)](https://github.com/navstev0 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -9968,14 +11555,24 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") -- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "64 total commits to the Home Assistant orga: -58 commits to home-assistant +- [Steven D\. Lander (@stevendlander)](https://github.com/stevendlander "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") +- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "75 total commits to the Home Assistant orga: +68 commits to home-assistant +4 commits to home-assistant.io 3 commits to netdisco -3 commits to home-assistant.io +") +- [Steven Rollason (@gadgetchnnel)](https://github.com/gadgetchnnel "5 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io ") - [Steven Webb (@cy1701)](https://github.com/cy1701 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [stevenp (@stevenp)](https://github.com/stevenp "3 total commits to the Home Assistant orga: +3 commits to Iconic +") - [Stijn Tintel (@stintel)](https://github.com/stintel "3 total commits to the Home Assistant orga: 2 commits to open-zwave 1 commit to home-assistant @@ -10032,13 +11629,26 @@ This page contains a list of people who have contributed in one way or another t - [sustah (@sustah)](https://github.com/sustah "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [svedese (@svedese)](https://github.com/svedese "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [sveip (@sveip)](https://github.com/sveip "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Sven (@svendroid)](https://github.com/svendroid "4 total commits to the Home Assistant orga: +4 commits to home-assistant-polymer +") - [Sven\-Hendrik Haase (@svenstaro)](https://github.com/svenstaro "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to home-assistant ") +- [Swamp\-Ig (@Swamp-Ig)](https://github.com/Swamp-Ig "53 total commits to the Home Assistant orga: +39 commits to home-assistant +10 commits to home-assistant.io +2 commits to home-assistant-polymer +1 commit to people +1 commit to developers.home-assistant +") - [swanwila (@swanwila)](https://github.com/swanwila "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") @@ -10051,8 +11661,12 @@ This page contains a list of people who have contributed in one way or another t - [sylvaincherrier (@sylvaincherrier)](https://github.com/sylvaincherrier "3 total commits to the Home Assistant orga: 3 commits to python-openzwave ") -- [System Tester (@systemtester)](https://github.com/systemtester "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Sylvia van Os (@TheLastProject)](https://github.com/TheLastProject "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") +- [System Tester (@systemtester)](https://github.com/systemtester "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Sytone (@sytone)](https://github.com/sytone "12 total commits to the Home Assistant orga: 6 commits to home-assistant.io @@ -10067,11 +11681,20 @@ This page contains a list of people who have contributed in one way or another t - [Sébastien GALLET (@bibi21000)](https://github.com/bibi21000 "1024 total commits to the Home Assistant orga: 1024 commits to python-openzwave ") +- [Sébastien RAMAGE (@doudz)](https://github.com/doudz "19 total commits to the Home Assistant orga: +15 commits to home-assistant +4 commits to home-assistant.io +") +- [Sören (@pattyland)](https://github.com/pattyland "16 total commits to the Home Assistant orga: +13 commits to home-assistant.io +2 commits to home-assistant +1 commit to example-custom-config +") - [Sören Beye (@Hypfer)](https://github.com/Hypfer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Sören Oldag (@soldag)](https://github.com/soldag "18 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Sören Oldag (@soldag)](https://github.com/soldag "19 total commits to the Home Assistant orga: +11 commits to home-assistant 8 commits to home-assistant.io ") - [Søren Dam Pedersen (@Pengman)](https://github.com/Pengman "1 total commits to the Home Assistant orga: @@ -10109,6 +11732,9 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to home-assistant ") +- [Taylor Silva (@taylorsilva)](https://github.com/taylorsilva "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Taylor Vierrether (@viertaxa)](https://github.com/viertaxa "5 total commits to the Home Assistant orga: 3 commits to open-zwave 2 commits to home-assistant.io @@ -10117,6 +11743,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [tbrock47 (@tbrock47)](https://github.com/tbrock47 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [tchentchen (@tchentchen)](https://github.com/tchentchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10150,9 +11779,9 @@ This page contains a list of people who have contributed in one way or another t - [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "78 total commits to the Home Assistant orga: -56 commits to home-assistant -14 commits to home-assistant.io +- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "94 total commits to the Home Assistant orga: +71 commits to home-assistant +15 commits to home-assistant.io 5 commits to netdisco 2 commits to home-assistant-cli 1 commit to people @@ -10166,7 +11795,15 @@ This page contains a list of people who have contributed in one way or another t - [Teis Angel Clausen (@AngelFreak)](https://github.com/AngelFreak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [teliov (@teliov)](https://github.com/teliov "1 total commits to the Home Assistant orga: +- [Tejpal Sahota (@GrandNewbien)](https://github.com/GrandNewbien "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [teliov (@teliov)](https://github.com/teliov "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") +- [temeteke (@temeteke)](https://github.com/temeteke "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Tentoe (@Tentoe)](https://github.com/Tentoe "1 total commits to the Home Assistant orga: @@ -10179,9 +11816,19 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") +- [Tertius (@Tertiush)](https://github.com/Tertiush "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [terual (@terual)](https://github.com/terual "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Test GITHub account (@YogoGit)](https://github.com/YogoGit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tetienne (@tetienne)](https://github.com/tetienne "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [tfitts (@tfitts)](https://github.com/tfitts "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10194,15 +11841,37 @@ This page contains a list of people who have contributed in one way or another t - [tguerena (@tguerena)](https://github.com/tguerena "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [thaohtp (@thaohtp)](https://github.com/thaohtp "4 total commits to the Home Assistant orga: +4 commits to home-assistant +") - [Tharsan Bhuvanendran (@thizzle)](https://github.com/thizzle "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [ThaSiouL (@ThaSiouL)](https://github.com/ThaSiouL "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [ThaStealth (@ThaStealth)](https://github.com/ThaStealth "6 total commits to the Home Assistant orga: +3 commits to home-assistant +3 commits to home-assistant.io +") +- [THATDONFC (@THATDONFC)](https://github.com/THATDONFC "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [The Gitter Badger (@gitter-badger)](https://github.com/gitter-badger "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [The Louie (@the-louie)](https://github.com/the-louie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [The PapaMaan (@thepapamaan)](https://github.com/thepapamaan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [The Witty Coder (@wittycoder)](https://github.com/wittycoder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [thealexproctor (@thealexproctor)](https://github.com/thealexproctor "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Theb\-1 (@Theb-1)](https://github.com/Theb-1 "5 total commits to the Home Assistant orga: 5 commits to home-assistant ") @@ -10210,10 +11879,6 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [thecynic (@thecynic)](https://github.com/thecynic "5 total commits to the Home Assistant orga: -4 commits to home-assistant -1 commit to home-assistant.io -") - [TheFrogDaddy (@TheFrogDaddy)](https://github.com/TheFrogDaddy "1 total commits to the Home Assistant orga: 1 commit to appdaemon ") @@ -10255,11 +11920,14 @@ This page contains a list of people who have contributed in one way or another t 13 commits to home-assistant.io 1 commit to home-assistant-polymer ") -- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "14 total commits to the Home Assistant orga: +- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "15 total commits to the Home Assistant orga: 7 commits to home-assistant -6 commits to home-assistant.io +7 commits to home-assistant.io 1 commit to hassio-addons ") +- [Thierry Bellocchi (@tbeloc)](https://github.com/tbeloc "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [thinkelastic (@thinkelastic)](https://github.com/thinkelastic "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -10269,10 +11937,14 @@ This page contains a list of people who have contributed in one way or another t - [Thom Stricklin (@thomshouse)](https://github.com/thomshouse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "18 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "19 total commits to the Home Assistant orga: +11 commits to home-assistant 8 commits to home-assistant.io ") +- [Thomas (@HexF)](https://github.com/HexF "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io +1 commit to home-assistant +") - [Thomas (@a-tom-s)](https://github.com/a-tom-s "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10282,15 +11954,19 @@ This page contains a list of people who have contributed in one way or another t - [Thomas Aunvik (@ThomasAunvik)](https://github.com/ThomasAunvik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "6 total commits to the Home Assistant orga: +- [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "7 total commits to the Home Assistant orga: 4 commits to home-assistant 2 commits to home-assistant.io +1 commit to appdaemon ") - [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Thomas Hervé (@therve)](https://github.com/therve "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Thomas Germain (@thomasgermain)](https://github.com/thomasgermain "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") +- [Thomas Hervé (@therve)](https://github.com/therve "3 total commits to the Home Assistant orga: +3 commits to home-assistant ") - [Thomas Klingbeil (@thomasklingbeil)](https://github.com/thomasklingbeil "1 total commits to the Home Assistant orga: 1 commit to home-assistant @@ -10298,10 +11974,14 @@ This page contains a list of people who have contributed in one way or another t - [Thomas Krüger (@thomaskr)](https://github.com/thomaskr "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "58 total commits to the Home Assistant orga: -35 commits to home-assistant-polymer -15 commits to home-assistant.io -7 commits to home-assistant +- [Thomas Le Gentil (@kifeo)](https://github.com/kifeo "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "92 total commits to the Home Assistant orga: +54 commits to home-assistant-polymer +24 commits to home-assistant.io +13 commits to home-assistant 1 commit to people ") - [Thomas Passer Jensen (@tomatpasser)](https://github.com/tomatpasser "2 total commits to the Home Assistant orga: @@ -10350,9 +12030,9 @@ This page contains a list of people who have contributed in one way or another t - [Thorsten Alteholz (@alteholz)](https://github.com/alteholz "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [thoscut (@thoscut)](https://github.com/thoscut "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [thoscut (@thoscut)](https://github.com/thoscut "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to home-assistant ") - [thrawnarn (@thrawnarn)](https://github.com/thrawnarn "10 total commits to the Home Assistant orga: 5 commits to home-assistant @@ -10368,9 +12048,20 @@ This page contains a list of people who have contributed in one way or another t - [thunfischbrot (@thunfischbrot)](https://github.com/thunfischbrot "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tiagofreire\-pt (@tiagofreire-pt)](https://github.com/tiagofreire-pt "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io +") +- [Ties de Kock (@ties)](https://github.com/ties "5 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io +") - [tigattack (@tigattack)](https://github.com/tigattack "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tiit Rätsep (@ratsept)](https://github.com/ratsept "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [tijuca (@tijuca)](https://github.com/tijuca "106 total commits to the Home Assistant orga: 106 commits to libcoap ") @@ -10387,12 +12078,18 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to home-assistant ") +- [Tim (@tmyoungjr)](https://github.com/tmyoungjr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tim Bailey (@TimBailey-pnk)](https://github.com/TimBailey-pnk "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Tim Clephas (@Timple)](https://github.com/Timple "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Tim Gates (@timgates42)](https://github.com/timgates42 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Tim Gerla (@tgerla)](https://github.com/tgerla "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -10405,17 +12102,21 @@ This page contains a list of people who have contributed in one way or another t - [Tim Hordern (@mence)](https://github.com/mence "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tim Lyakhovetskiy (@tlyakhov)](https://github.com/tlyakhov "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Tim Lyakhovetskiy (@tlyakhov)](https://github.com/tlyakhov "4 total commits to the Home Assistant orga: +3 commits to home-assistant 1 commit to home-assistant.io ") -- [Tim McCormick (@timmccor)](https://github.com/timmccor "2 total commits to the Home Assistant orga: +- [Tim McCormick (@timmccor)](https://github.com/timmccor "6 total commits to the Home Assistant orga: +4 commits to home-assistant 2 commits to open-zwave ") - [Tim Soderstrom (@m00dawg)](https://github.com/m00dawg "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Tim Stanley (@timstanley1985)](https://github.com/timstanley1985 "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [Tim van Cann (@timvancann)](https://github.com/timvancann "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -10426,16 +12127,21 @@ This page contains a list of people who have contributed in one way or another t - [Tim Wilde (@twilde)](https://github.com/twilde "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [timfosse (@timfosse)](https://github.com/timfosse "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [timkoers (@timkoers)](https://github.com/timkoers "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") - [Timm Schäuble (@tymm)](https://github.com/tymm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Timmo (@timmo001)](https://github.com/timmo001 "17 total commits to the Home Assistant orga: -6 commits to home-assistant-polymer -5 commits to home-assistant.io +- [Timmo (@timmo001)](https://github.com/timmo001 "31 total commits to the Home Assistant orga: +14 commits to home-assistant-polymer +8 commits to home-assistant.io 5 commits to home-assistant +2 commits to home-assistant-android +1 commit to hassio 1 commit to data.home-assistant ") - [Timo (@timotk)](https://github.com/timotk "1 total commits to the Home Assistant orga: @@ -10448,9 +12154,6 @@ This page contains a list of people who have contributed in one way or another t - [Timothy Macdonald (@tsmacdonald)](https://github.com/tsmacdonald "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [timstanley1985 (@timstanley1985)](https://github.com/timstanley1985 "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io -") - [TimV (@vroomfonde1)](https://github.com/vroomfonde1 "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -10467,8 +12170,10 @@ This page contains a list of people who have contributed in one way or another t - [tktino (@tktino)](https://github.com/tktino "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [tleegaard (@tleegaard)](https://github.com/tleegaard "1 total commits to the Home Assistant orga: +- [tleegaard (@tleegaard)](https://github.com/tleegaard "4 total commits to the Home Assistant orga: +2 commits to home-assistant 1 commit to home-assistant-polymer +1 commit to home-assistant.io ") - [tlpeter (@tlpeter)](https://github.com/tlpeter "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -10489,6 +12194,10 @@ This page contains a list of people who have contributed in one way or another t - [Tobias Bieniek (@Turbo87)](https://github.com/Turbo87 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Tobias Efinger (@tefinger)](https://github.com/tefinger "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to home-assistant +") - [Tobias Hoff (@ToSa27)](https://github.com/ToSa27 "5 total commits to the Home Assistant orga: 2 commits to open-zwave 1 commit to hassio-addons @@ -10501,12 +12210,17 @@ This page contains a list of people who have contributed in one way or another t - [Tobias Nordahl Kristensen (@exetico)](https://github.com/exetico "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "75 total commits to the Home Assistant orga: -35 commits to home-assistant -30 commits to home-assistant.io -8 commits to people +- [Tobias Perschon (@tofuSCHNITZEL)](https://github.com/tofuSCHNITZEL "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") +- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "156 total commits to the Home Assistant orga: +98 commits to home-assistant +42 commits to home-assistant.io +9 commits to people +4 commits to developers.home-assistant +2 commits to data.home-assistant 1 commit to appdaemon -1 commit to data.home-assistant ") - [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "6 total commits to the Home Assistant orga: 4 commits to home-assistant @@ -10532,12 +12246,20 @@ This page contains a list of people who have contributed in one way or another t - [toddeye (@toddeye)](https://github.com/toddeye "20 total commits to the Home Assistant orga: 20 commits to home-assistant ") +- [Tom (@CoMPaTech)](https://github.com/CoMPaTech "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") - [Tom Barbette (@tbarbette)](https://github.com/tbarbette "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tom Behets (@betz)](https://github.com/betz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tom Brien (@TomBrien)](https://github.com/TomBrien "139 total commits to the Home Assistant orga: +137 commits to companion.home-assistant +2 commits to home-assistant.io +") - [Tom Chapin (@tomchapin)](https://github.com/tomchapin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10550,12 +12272,12 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant-polymer 2 commits to netdisco ") -- [Tom Harris (@teharris1)](https://github.com/teharris1 "31 total commits to the Home Assistant orga: -21 commits to home-assistant -10 commits to home-assistant.io +- [Tom Harris (@teharris1)](https://github.com/teharris1 "35 total commits to the Home Assistant orga: +24 commits to home-assistant +11 commits to home-assistant.io ") -- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Tom Howe (@tomh05)](https://github.com/tomh05 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10569,10 +12291,10 @@ This page contains a list of people who have contributed in one way or another t - [Tom L (@Qu3uk)](https://github.com/Qu3uk "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "15 total commits to the Home Assistant orga: +- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "17 total commits to the Home Assistant orga: 6 commits to home-assistant +6 commits to home-assistant.io 4 commits to home-assistant-polymer -4 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Tom Monck JR (@tmonck)](https://github.com/tmonck "1 total commits to the Home Assistant orga: @@ -10581,8 +12303,16 @@ This page contains a list of people who have contributed in one way or another t - [Tom Most (@twm)](https://github.com/twm "9 total commits to the Home Assistant orga: 9 commits to feedparser ") -- [Tom Raithel (@tomraithel)](https://github.com/tomraithel "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +- [Tom Raithel (@tomraithel)](https://github.com/tomraithel "5 total commits to the Home Assistant orga: +4 commits to home-assistant-polymer +1 commit to home-assistant.io +") +- [Tom Robinson (@tlrobinson)](https://github.com/tlrobinson "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") +- [Tom Schneider (@vigonotion)](https://github.com/vigonotion "2 total commits to the Home Assistant orga: +1 commit to custom-components-wheels +1 commit to home-assistant ") - [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the Home Assistant orga: 1 commit to netdisco @@ -10594,17 +12324,38 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant 1 commit to home-assistant.io ") +- [Tomas Kislan (@tkislan)](https://github.com/tkislan "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") +- [Tomasz (@Misiu)](https://github.com/Misiu "6 total commits to the Home Assistant orga: +5 commits to home-assistant +1 commit to home-assistant.io +") - [Tomasz Mlynski (@dvz)](https://github.com/dvz "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [tomaszduda23 (@tomaszduda23)](https://github.com/tomaszduda23 "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [tombbo (@tombbo)](https://github.com/tombbo "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [Tomek985 (@Tomek985)](https://github.com/Tomek985 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tomi Blinnikka (@docBliny)](https://github.com/docBliny "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Tomer Figenblat (@TomerFi)](https://github.com/TomerFi "6 total commits to the Home Assistant orga: +3 commits to home-assistant +2 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Tomi Blinnikka (@docBliny)](https://github.com/docBliny "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Tomi Lehto (@tomilehto)](https://github.com/tomilehto "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io ") - [Tomi Salmi (@tomppasalmi)](https://github.com/tomppasalmi "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer @@ -10613,8 +12364,12 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 1 commit to home-assistant.io ") -- [tomlut (@tomlut)](https://github.com/tomlut "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [tomlut (@tomlut)](https://github.com/tomlut "14 total commits to the Home Assistant orga: +14 commits to home-assistant.io +") +- [Tommaso Marchionni (@tommasomarchionni)](https://github.com/tommasomarchionni "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io ") - [Tommi Pääkkö (@Glenf)](https://github.com/Glenf "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -10630,12 +12385,26 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 4 commits to home-assistant-polymer ") +- [Tommy Larsson (@larssont)](https://github.com/larssont "3 total commits to the Home Assistant orga: +2 commits to home-assistant +1 commit to home-assistant.io +") +- [Tommy Long (@tommyjlong)](https://github.com/tommyjlong "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [tonire1702 (@tonire1702)](https://github.com/tonire1702 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tontze (@Tontze)](https://github.com/Tontze "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") +- [Tony Apuzzo (@TonyApuzzo)](https://github.com/TonyApuzzo "2 total commits to the Home Assistant orga: +2 commits to hassos +") +- [Tony Brobston (@TonyBrobston)](https://github.com/TonyBrobston "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [tony chang (@idealisms)](https://github.com/idealisms "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10652,15 +12421,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [TonyApuzzo (@TonyApuzzo)](https://github.com/TonyApuzzo "1 total commits to the Home Assistant orga: -1 commit to hassos -") -- [Toon Willems (@nudded)](https://github.com/nudded "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Toon Willems (@nudded)](https://github.com/nudded "4 total commits to the Home Assistant orga: +4 commits to home-assistant ") - [TopdRob (@TopdRob)](https://github.com/TopdRob "7 total commits to the Home Assistant orga: 7 commits to home-assistant ") +- [Tor Arne Vestbø (@torarnv)](https://github.com/torarnv "3 total commits to the Home Assistant orga: +1 commit to home-assistant-polymer +1 commit to developers.home-assistant +1 commit to home-assistant +") - [Tor Magnus (@tcastberg)](https://github.com/tcastberg "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -10716,8 +12487,8 @@ This page contains a list of people who have contributed in one way or another t - [Trey Sheldon (@tsheldon)](https://github.com/tsheldon "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [trilleplay (@trilleplay)](https://github.com/trilleplay "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source +- [trilu2000 (@trilu2000)](https://github.com/trilu2000 "1 total commits to the Home Assistant orga: +1 commit to home-assistant ") - [tringler (@tringler)](https://github.com/tringler "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -10727,6 +12498,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant 1 commit to home-assistant.io ") +- [tristanatfarkas (@trilleplay)](https://github.com/trilleplay "1 total commits to the Home Assistant orga: +1 commit to 1password-teams-open-source +") +- [Troels Agergaard Jacobsen (@tkjacobsen)](https://github.com/tkjacobsen "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the Home Assistant orga: 5 commits to home-assistant ") @@ -10736,28 +12513,53 @@ This page contains a list of people who have contributed in one way or another t - [Trung Lê (@joneslee85)](https://github.com/joneslee85 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "24 total commits to the Home Assistant orga: -13 commits to home-assistant -11 commits to home-assistant.io -") -- [tubalainen (@tubalainen)](https://github.com/tubalainen "2 total commits to the Home Assistant orga: +- [Trygve Vea (@kvisle)](https://github.com/kvisle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "43 total commits to the Home Assistant orga: +28 commits to home-assistant +14 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [tubalainen (@tubalainen)](https://github.com/tubalainen "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [tube0013 (@tube0013)](https://github.com/tube0013 "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [tumik (@tumik)](https://github.com/tumik "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") -- [Tuncay (@Tuncay-Ayhan)](https://github.com/Tuncay-Ayhan "1 total commits to the Home Assistant orga: +- [Tuncay (@Tuncay-Ayhan)](https://github.com/Tuncay-Ayhan "3 total commits to the Home Assistant orga: +1 commit to hassbian-scripts +1 commit to hassio-addons +1 commit to home-assistant.io +") +- [Tungsteno74 (@Tungsteno74)](https://github.com/Tungsteno74 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [tuxuser (@tuxuser)](https://github.com/tuxuser "1 total commits to the Home Assistant orga: 1 commit to netdisco ") +- [Twan Coenraad (@tcoenraad)](https://github.com/tcoenraad "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [twendt (@twendt)](https://github.com/twendt "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Twit123 (@Twit123)](https://github.com/Twit123 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [txNgineer (@txNgineer)](https://github.com/txNgineer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [TychoWerner (@TychoWerner)](https://github.com/TychoWerner "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [tyjtyj (@tyjtyj)](https://github.com/tyjtyj "3 total commits to the Home Assistant orga: +3 commits to home-assistant +") - [Tyler (@TFenby)](https://github.com/TFenby "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -10768,10 +12570,13 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") -- [Tyler Page (@iamtpage)](https://github.com/iamtpage "8 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Tyler Page (@iamtpage)](https://github.com/iamtpage "13 total commits to the Home Assistant orga: +10 commits to home-assistant 3 commits to home-assistant.io ") +- [Tyler Shaw\! (@tylershaw)](https://github.com/tylershaw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tyler Straub (@tylerstraub)](https://github.com/tylerstraub "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10790,11 +12595,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant-polymer ") +- [UgaitzEtxebarria (@UgaitzEtxebarria)](https://github.com/UgaitzEtxebarria "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Ugo Viti (@ugoviti)](https://github.com/ugoviti "24 total commits to the Home Assistant orga: 24 commits to open-zwave ") -- [UiGuy (@jjanderson)](https://github.com/jjanderson "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [UiGuy (@jjanderson)](https://github.com/jjanderson "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Uli (@uehler)](https://github.com/uehler "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -10808,6 +12617,13 @@ This page contains a list of people who have contributed in one way or another t - [Umer Salman (@umer936)](https://github.com/umer936 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Underknowledge (@Underknowledge)](https://github.com/Underknowledge "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [unixko (@unixko)](https://github.com/unixko "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to home-assistant +") - [UnrealKazu (@UnrealKazu)](https://github.com/UnrealKazu "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to home-assistant-polymer @@ -10830,9 +12646,6 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant 3 commits to home-assistant.io ") -- [Valentin Hilbig (@hilbix)](https://github.com/hilbix "1 total commits to the Home Assistant orga: -1 commit to dehydrated -") - [Valentin Petkov (@skyval)](https://github.com/skyval "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10861,12 +12674,12 @@ This page contains a list of people who have contributed in one way or another t - [Vaz Allen (@vaz)](https://github.com/vaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [VdkaShaker (@VdkaShaker)](https://github.com/VdkaShaker "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [VDRainer (@VDRainer)](https://github.com/VDRainer "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to home-assistant ") -- [VDRainer (@VDRainer)](https://github.com/VDRainer "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to home-assistant +- [Veldkornet (@Veldkornet)](https://github.com/Veldkornet "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Velik123 (@Velik123)](https://github.com/Velik123 "1 total commits to the Home Assistant orga: 1 commit to pyharmony @@ -10877,17 +12690,17 @@ This page contains a list of people who have contributed in one way or another t - [vexofp (@vexofp)](https://github.com/vexofp "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") -- [Victor Cerutti (@victorcerutti)](https://github.com/victorcerutti "10 total commits to the Home Assistant orga: +- [Victor Cerutti (@victorcerutti)](https://github.com/victorcerutti "11 total commits to the Home Assistant orga: 5 commits to home-assistant.io 3 commits to home-assistant-polymer -2 commits to home-assistant +3 commits to home-assistant ") - [Victor Jalencas (@victor)](https://github.com/victor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Victor Vostrikov (@gorynychzmey)](https://github.com/gorynychzmey "8 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Victor Vostrikov (@gorynychzmey)](https://github.com/gorynychzmey "10 total commits to the Home Assistant orga: +5 commits to home-assistant +4 commits to home-assistant.io 1 commit to home-assistant-polymer ") - [Vidar Tyldum (@tyldum)](https://github.com/tyldum "1 total commits to the Home Assistant orga: @@ -10907,20 +12720,27 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 1 commit to home-assistant.io ") -- [Ville Skyttä (@scop)](https://github.com/scop "173 total commits to the Home Assistant orga: -119 commits to home-assistant -21 commits to home-assistant.io +- [Viktor45 (@Viktor45)](https://github.com/Viktor45 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Ville Skyttä (@scop)](https://github.com/scop "282 total commits to the Home Assistant orga: +213 commits to home-assistant +30 commits to home-assistant.io 13 commits to netdisco -6 commits to hassio-addons +7 commits to hassio-addons +5 commits to home-assistant-polymer 4 commits to developers.home-assistant 3 commits to hassio-cli -2 commits to home-assistant-polymer -2 commits to hassio-build 2 commits to hassio +2 commits to hassio-build +1 commit to architecture 1 commit to people +1 commit to ci-azure ") -- [Villhellm (@Villhellm)](https://github.com/Villhellm "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Villhellm (@Villhellm)](https://github.com/Villhellm "12 total commits to the Home Assistant orga: +9 commits to home-assistant.io +2 commits to home-assistant +1 commit to developers.home-assistant ") - [Vincent Etter (@Wookai)](https://github.com/Wookai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10931,6 +12751,9 @@ This page contains a list of people who have contributed in one way or another t - [Vincent KHERBACHE (@vincent-k)](https://github.com/vincent-k "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") +- [Vincent Masselis (@VincentMasselis)](https://github.com/VincentMasselis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Vincent Miceli (@vincemic)](https://github.com/vincemic "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") @@ -10957,6 +12780,9 @@ This page contains a list of people who have contributed in one way or another t - [viswa\-swami (@viswa-swami)](https://github.com/viswa-swami "9 total commits to the Home Assistant orga: 9 commits to home-assistant ") +- [Vitaly Bogdanov (@vsbogd)](https://github.com/vsbogd "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Vittorio Monaco (@vittoriom)](https://github.com/vittoriom "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -10977,8 +12803,11 @@ This page contains a list of people who have contributed in one way or another t - [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the Home Assistant orga: 3 commits to libcoap ") -- [vMeph (@vMeph)](https://github.com/vMeph "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [vMeph (@vMeph)](https://github.com/vMeph "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io +") +- [vocweb (@vocweb)](https://github.com/vocweb "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Volker Thiel (@riker09)](https://github.com/riker09 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11003,6 +12832,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [warcanoid (@warcanoid)](https://github.com/warcanoid "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Warren Konkel (@wkonkel)](https://github.com/wkonkel "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -11033,6 +12865,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [wietseschmitt (@wietseschmitt)](https://github.com/wietseschmitt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [wiggitamoo (@wiggitamoo)](https://github.com/wiggitamoo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Wilco Land (@Wilco89)](https://github.com/Wilco89 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -11045,6 +12883,9 @@ This page contains a list of people who have contributed in one way or another t - [Will Boyce (@wrboyce)](https://github.com/wrboyce "2 total commits to the Home Assistant orga: 2 commits to home-assistant ") +- [Will Hargrave (@will-h)](https://github.com/will-h "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "21 total commits to the Home Assistant orga: 19 commits to home-assistant.io 1 commit to fabric-home-assistant @@ -11057,6 +12898,9 @@ This page contains a list of people who have contributed in one way or another t - [Will Marler (@wmarler)](https://github.com/wmarler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Will Pimblett (@wjdp)](https://github.com/wjdp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Will W (@tiktok7)](https://github.com/tiktok7 "6 total commits to the Home Assistant orga: 4 commits to home-assistant 2 commits to home-assistant.io @@ -11068,6 +12912,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 3 commits to home-assistant ") +- [willgreenberg (@willgreenberg)](https://github.com/willgreenberg "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [William Comartin (@wcomartin)](https://github.com/wcomartin "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -11076,21 +12923,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio 1 commit to home-assistant.io ") -- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "141 total commits to the Home Assistant orga: -96 commits to home-assistant +- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "152 total commits to the Home Assistant orga: +107 commits to home-assistant 40 commits to home-assistant.io 2 commits to netdisco 2 commits to developers.home-assistant 1 commit to home-assistant-polymer ") +- [William Sutton (@zombielinux)](https://github.com/zombielinux "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [williamlehman (@williamlehman)](https://github.com/williamlehman "1 total commits to the Home Assistant orga: 1 commit to home-assistant-polymer ") -- [Wim Haanstra (@depl0y)](https://github.com/depl0y "6 total commits to the Home Assistant orga: -3 commits to home-assistant -3 commits to home-assistant.io +- [Wim Haanstra (@depl0y)](https://github.com/depl0y "8 total commits to the Home Assistant orga: +4 commits to home-assistant +4 commits to home-assistant.io ") -- [wmn79 (@wmn79)](https://github.com/wmn79 "1 total commits to the Home Assistant orga: +- [wmn79 (@wmn79)](https://github.com/wmn79 "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io 1 commit to open-zwave ") - [WofWca (@WofWca)](https://github.com/WofWca "11 total commits to the Home Assistant orga: @@ -11105,6 +12957,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to home-assistant ") +- [Wojciech Mamak (@atomic7777)](https://github.com/atomic7777 "1 total commits to the Home Assistant orga: +1 commit to home-assistant +") - [Wojtek (@wiuwiu)](https://github.com/wiuwiu "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -11119,8 +12974,8 @@ This page contains a list of people who have contributed in one way or another t - [Wolfgang Beer (@wolfgangB33r)](https://github.com/wolfgangB33r "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "7 total commits to the Home Assistant orga: -6 commits to home-assistant +- [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "8 total commits to the Home Assistant orga: +7 commits to home-assistant 1 commit to home-assistant.io ") - [Wopalecki (@Wopalecki)](https://github.com/Wopalecki "1 total commits to the Home Assistant orga: @@ -11153,10 +13008,14 @@ This page contains a list of people who have contributed in one way or another t - [xdite (@xdite)](https://github.com/xdite "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [XECDesign (@XECDesign)](https://github.com/XECDesign "175 total commits to the Home Assistant orga: -175 commits to pi-gen +- [XECDesign (@XECDesign)](https://github.com/XECDesign "179 total commits to the Home Assistant orga: +179 commits to pi-gen ") -- [xelprep (@xelprep)](https://github.com/xelprep "2 total commits to the Home Assistant orga: +- [xelprep (@xelprep)](https://github.com/xelprep "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") +- [xifle (@xifle)](https://github.com/xifle "9 total commits to the Home Assistant orga: +7 commits to home-assistant 2 commits to home-assistant.io ") - [Xinzhao Xu (@iawia002)](https://github.com/iawia002 "1 total commits to the Home Assistant orga: @@ -11176,13 +13035,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") -- [Xus Badia (@XusBadia)](https://github.com/XusBadia "2 total commits to the Home Assistant orga: +- [Xus Badia (@XusBadia)](https://github.com/XusBadia "3 total commits to the Home Assistant orga: +1 commit to home-assistant-assets 1 commit to home-assistant-iOS 1 commit to home-assistant-polymer ") - [yankees9920 (@wagnerbenh)](https://github.com/wagnerbenh "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Yann Jajkiewicz (@yjajkiew)](https://github.com/yjajkiew "2 total commits to the Home Assistant orga: +1 commit to home-assistant +1 commit to home-assistant.io +") - [Yannic\-HAW (@Yannic-HAW)](https://github.com/Yannic-HAW "2 total commits to the Home Assistant orga: 1 commit to home-assistant 1 commit to home-assistant.io @@ -11191,8 +13055,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Yannick POLLART (@ypollart)](https://github.com/ypollart "8 total commits to the Home Assistant orga: -4 commits to home-assistant.io 4 commits to home-assistant +4 commits to home-assistant.io ") - [Yannick Simard (@TheRaven)](https://github.com/TheRaven "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -11203,8 +13067,8 @@ This page contains a list of people who have contributed in one way or another t - [Yaron de Leeuw (@jarondl)](https://github.com/jarondl "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Yaroslav (@Yarikx)](https://github.com/Yarikx "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Yaroslav (@Yarikx)](https://github.com/Yarikx "2 total commits to the Home Assistant orga: +2 commits to home-assistant ") - [yasin (@yasinS)](https://github.com/yasinS "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -11232,12 +13096,15 @@ This page contains a list of people who have contributed in one way or another t - [yingzong (@yingzong)](https://github.com/yingzong "1 total commits to the Home Assistant orga: 1 commit to warrant ") +- [Yllelder Bamir (@Yllelder)](https://github.com/Yllelder "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Yof (@yoflippo)](https://github.com/yoflippo "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [yosilevy (@yosilevy)](https://github.com/yosilevy "49 total commits to the Home Assistant orga: -42 commits to home-assistant-polymer -3 commits to home-assistant.io +- [Yosi Levy (@yosilevy)](https://github.com/yosilevy "56 total commits to the Home Assistant orga: +48 commits to home-assistant-polymer +4 commits to home-assistant.io 3 commits to home-assistant 1 commit to people ") @@ -11253,8 +13120,10 @@ This page contains a list of people who have contributed in one way or another t - [Z (@zanerv)](https://github.com/zanerv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [z0p (@z0mbieprocess)](https://github.com/z0mbieprocess "1 total commits to the Home Assistant orga: +- [z0p (@z0mbieprocess)](https://github.com/z0mbieprocess "3 total commits to the Home Assistant orga: 1 commit to open-zwave +1 commit to home-assistant +1 commit to home-assistant.io ") - [Zac (@zacs)](https://github.com/zacs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11263,17 +13132,25 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant 2 commits to home-assistant.io ") -- [Zach (@snowzach)](https://github.com/snowzach "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Zach (@snowzach)](https://github.com/snowzach "8 total commits to the Home Assistant orga: +6 commits to home-assistant +2 commits to home-assistant.io ") - [Zachary Priddy (@zpriddy)](https://github.com/zpriddy "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "123 total commits to the Home Assistant orga: +- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "124 total commits to the Home Assistant orga: 93 commits to home-assistant-polymer 29 commits to home-assistant.io +1 commit to people 1 commit to developers.home-assistant ") +- [Zack Lalanne (@zlalanne)](https://github.com/zlalanne "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") +- [Zack R (@OspreyPrey)](https://github.com/OspreyPrey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [zackbcom (@zackbcom)](https://github.com/zackbcom "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to home-assistant.io @@ -11288,6 +13165,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant 1 commit to home-assistant.io ") +- [Zapfmeister (@Zapfmeister)](https://github.com/Zapfmeister "4 total commits to the Home Assistant orga: +4 commits to hassio-addons +") - [Zeb Palmer (@zebpalmer)](https://github.com/zebpalmer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -11304,9 +13184,9 @@ This page contains a list of people who have contributed in one way or another t - [ZERBIB Mickael (@Hellorheaven)](https://github.com/Hellorheaven "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [zewelor (@zewelor)](https://github.com/zewelor "21 total commits to the Home Assistant orga: -15 commits to home-assistant -6 commits to home-assistant.io +- [zewelor (@zewelor)](https://github.com/zewelor "48 total commits to the Home Assistant orga: +40 commits to home-assistant +8 commits to home-assistant.io ") - [zgmnkv (@zgmnkv)](https://github.com/zgmnkv "4 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -11314,7 +13194,7 @@ This page contains a list of people who have contributed in one way or another t - [Zhao (@zhaokoh)](https://github.com/zhaokoh "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") -- [Zhao Lu (@zlu)](https://github.com/zlu "4 total commits to the Home Assistant orga: +- [Zhao Lü (@zlu)](https://github.com/zlu "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Zhong Jianxin (@azuwis)](https://github.com/azuwis "1 total commits to the Home Assistant orga: @@ -11324,8 +13204,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to home-assistant ") -- [zhumuht (@zhumuht)](https://github.com/zhumuht "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [zhumuht (@zhumuht)](https://github.com/zhumuht "6 total commits to the Home Assistant orga: +4 commits to home-assistant +2 commits to home-assistant.io ") - [Zio Tibia (@ziotibia81)](https://github.com/ziotibia81 "14 total commits to the Home Assistant orga: 7 commits to home-assistant.io @@ -11337,6 +13218,10 @@ This page contains a list of people who have contributed in one way or another t - [Zippit (@zippit)](https://github.com/zippit "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [ZiroNL (@ZiroNL)](https://github.com/ZiroNL "4 total commits to the Home Assistant orga: +3 commits to home-assistant +1 commit to home-assistant.io +") - [zmrowicki@hotmail\.com (@zmrow)](https://github.com/zmrow "1 total commits to the Home Assistant orga: 1 commit to home-assistant ") @@ -11346,6 +13231,9 @@ This page contains a list of people who have contributed in one way or another t - [Zorks (@Zorks)](https://github.com/Zorks "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Zotz (@datdamnzotz)](https://github.com/datdamnzotz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Zoé Bőle (@zoe1337)](https://github.com/zoe1337 "4 total commits to the Home Assistant orga: 3 commits to home-assistant 1 commit to home-assistant.io @@ -11367,10 +13255,14 @@ This page contains a list of people who have contributed in one way or another t - [Šimon Let (@curusarn)](https://github.com/curusarn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Дубовик Максим (@lufton)](https://github.com/lufton "4 total commits to the Home Assistant orga: +2 commits to home-assistant +2 commits to home-assistant.io +") - [Елизаров Роман Русланович (@fantomnotabene)](https://github.com/fantomnotabene "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") This page is irregularly updated using the [`hass-release` tool](https://github.com/home-assistant/hass-release). If you think that you are missing, please let us know. -This page was last updated Sunday, April 07 2019, 04:19:58 UTC. +This page was last updated Sunday, November 17 2019, 13:17:30 UTC. diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 8e9e072f396..196062407f7 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -35,7 +35,7 @@ Follow this guide if you want to get started with Home Assistant easily or if yo We will need a few things to get started with installing Home Assistant. The Raspberry Pi 3 Model B+ is a good, affordable starting point for your home automation journey. Links below lead to Amazon US. If you're not in the US, you should be able to find these items in web stores in your country. -- [Raspberry Pi 3 Model B+](https://amzn.to/2IAyNl0) + [Power Supply](https://www.raspberrypi.org/help/faqs/#powerReqs) (at least 2.5A) +- [Raspberry Pi 4 Model B (2GB)](https://amzn.to/2XULT2z) + [Power Supply](https://www.raspberrypi.org/help/faqs/#powerReqs) (at least 2.5A) - [Micro SD Card](https://amzn.to/2X0Z2di). Ideally get one that is [Application Class 2](https://www.sdcard.org/developers/overview/application/index.html) as they handle small I/O much more consistently than cards not optimized to host applications. A 32 GB or bigger card is recommended. - SD Card reader. This is already part of most laptops, but you can purchase a [standalone USB adapter](https://amzn.to/2WWxntY) if you don't have one. The brand doesn't matter, just pick the cheapest. - Ethernet cable. Home Assistant can work with Wi-Fi, but an Ethernet connection would be more reliable. diff --git a/source/hassio/installation.markdown b/source/hassio/installation.markdown index e068a530c59..d11d99f570c 100644 --- a/source/hassio/installation.markdown +++ b/source/hassio/installation.markdown @@ -8,11 +8,7 @@ The following will take you through the steps required to install Hass.io. 1. Download the appropriate install option: - As an image for your device: - - - [Raspberry Pi Zero][pi1] (not recommended for more than testing) - - [Raspberry Pi Zero W][pi0-w] (not recommended for more than testing) - - [Raspberry Pi 1 Model B][pi1] (not recommended for more than testing) - - [Raspberry Pi 2 Model B][pi2] + - [Raspberry Pi 3 Model B and B+ 32bit][pi3-32] (recommended) - [Raspberry Pi 3 Model B and B+ 64bit][pi3-64] - [(RC) Raspberry Pi 4 Model B 32bit][pi4-32] (recommended) @@ -85,12 +81,12 @@ hassio ha update --version=0.XX.X ## Run the beta version on Hass.io -If you would like to test next release before anyone else, you can install the beta version released every two weeks: +If you would like to test next release before anyone else, you can install the beta version released every three weeks: 1. Backup your installation, using the snapshot functionality Hass.io offers. -2. Check the RC release notes for breaking changes on [Home Assistant release notes](https://rc--home-assistant-docs.netlify.com/latest-release-notes/). Be sure to check all release notes between the version you are running and the one you are upgrading to. Use the search function in your browser (`CTRL + f`) and search for **Breaking Changes**. -3. Select _System_ from the _Hass.io_ menu, then select _Join Beta Channel_ under _Hass.io supervisor_, then select _Reload_. -4. Select _Dashboard_ from the _Hass.io_ menu, and then select _Update_. +2. Check the [Home Assistant RC release notes](https://rc.home-assistant.io/latest-release-notes/) for breaking changes. Be sure to check all release notes between the version you are running and the one you are upgrading to. Use the search function in your browser (`CTRL + f`) and search for **Breaking Changes**. +3. Select _System_ tab from the _Hass.io_ menu, then select _Join Beta Channel_ under _Hass.io supervisor_, then select _Reload_. +4. Select _Dashboard_ tab from the _Hass.io_ menu, and then select _Update_. ## Alternative: install on a generic Linux host @@ -160,6 +156,7 @@ sudo -i apt-get install software-properties-common apt-get update apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat +systemctl disable ModemManager curl -fsSL get.docker.com | sh ``` @@ -182,10 +179,19 @@ curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/mast - `raspberrypi2` - `raspberrypi3` - `raspberrypi3-64` + - `raspberrypi4` + - `raspberrypi4-64` - `odroid-c2` - `odroid-cu2` - `odroid-xu` - `orangepi-prime` + - `tinker` + - `qemuarm` + - `qemuarm-64` + - `qemux86` + - `qemux86-64` + +See the [hassio-installer](https://github.com/home-assistant/hassio-installer) Github page for an up-to-date listing of supported machine types.
When you use this installation method, the core SSH add-on may not function correctly. If that happens, use the community SSH add-on. Some of the documentation might not work for your installation either. diff --git a/source/images/blog/2019-11-state-of-the-union/ada.png b/source/images/blog/2019-11-state-of-the-union/ada.png new file mode 100644 index 00000000000..cae954b98fa Binary files /dev/null and b/source/images/blog/2019-11-state-of-the-union/ada.png differ diff --git a/source/images/blog/2019-11-state-of-the-union/almond.png b/source/images/blog/2019-11-state-of-the-union/almond.png new file mode 100644 index 00000000000..105831a01c3 Binary files /dev/null and b/source/images/blog/2019-11-state-of-the-union/almond.png differ diff --git a/source/images/blog/2019-11-state-of-the-union/octoverse.png b/source/images/blog/2019-11-state-of-the-union/octoverse.png new file mode 100644 index 00000000000..f934e826fb2 Binary files /dev/null and b/source/images/blog/2019-11-state-of-the-union/octoverse.png differ diff --git a/source/images/blog/2019-11-state-of-the-union/social.jpeg b/source/images/blog/2019-11-state-of-the-union/social.jpeg new file mode 100644 index 00000000000..807c02b7703 Binary files /dev/null and b/source/images/blog/2019-11-state-of-the-union/social.jpeg differ diff --git a/source/images/blog/2019-12-home-assistant-for-everyone/social.png b/source/images/blog/2019-12-home-assistant-for-everyone/social.png new file mode 100644 index 00000000000..d0522f77aa8 Binary files /dev/null and b/source/images/blog/2019-12-home-assistant-for-everyone/social.png differ diff --git a/source/images/blog/2019-12-sonos-shutting-down-snips/post-history-screenshot.png b/source/images/blog/2019-12-sonos-shutting-down-snips/post-history-screenshot.png new file mode 100644 index 00000000000..2a133fb7f07 Binary files /dev/null and b/source/images/blog/2019-12-sonos-shutting-down-snips/post-history-screenshot.png differ diff --git a/source/images/blog/2019-12-sonos-shutting-down-snips/snips-post-1.png b/source/images/blog/2019-12-sonos-shutting-down-snips/snips-post-1.png new file mode 100644 index 00000000000..9af0b7ab945 Binary files /dev/null and b/source/images/blog/2019-12-sonos-shutting-down-snips/snips-post-1.png differ diff --git a/source/images/blog/2019-12-sonos-shutting-down-snips/social.png b/source/images/blog/2019-12-sonos-shutting-down-snips/social.png new file mode 100644 index 00000000000..36cb978f11f Binary files /dev/null and b/source/images/blog/2019-12-sonos-shutting-down-snips/social.png differ diff --git a/source/images/frontpage/sotu2019-paulus.jpeg b/source/images/frontpage/sotu2019-paulus.jpeg new file mode 100644 index 00000000000..98f79444b62 Binary files /dev/null and b/source/images/frontpage/sotu2019-paulus.jpeg differ diff --git a/source/images/integrations/geonetnz_volcano/map.png b/source/images/integrations/geonetnz_volcano/map.png new file mode 100644 index 00000000000..b27733b30b9 Binary files /dev/null and b/source/images/integrations/geonetnz_volcano/map.png differ diff --git a/source/images/integrations/geonetnz_volcano/sensor.png b/source/images/integrations/geonetnz_volcano/sensor.png new file mode 100644 index 00000000000..1182a96600a Binary files /dev/null and b/source/images/integrations/geonetnz_volcano/sensor.png differ diff --git a/source/images/supported_brands/global-cache.png b/source/images/supported_brands/global-cache.png new file mode 100644 index 00000000000..a711e672ed3 Binary files /dev/null and b/source/images/supported_brands/global-cache.png differ diff --git a/source/images/supported_brands/hisense.png b/source/images/supported_brands/hisense.png new file mode 100755 index 00000000000..9c52e3a59fb Binary files /dev/null and b/source/images/supported_brands/hisense.png differ diff --git a/source/images/supported_brands/orange-pi.png b/source/images/supported_brands/orange-pi.png new file mode 100644 index 00000000000..ffc73e84a2f Binary files /dev/null and b/source/images/supported_brands/orange-pi.png differ diff --git a/source/images/supported_brands/proxmoxve.png b/source/images/supported_brands/proxmoxve.png new file mode 100644 index 00000000000..0d08aec1b21 Binary files /dev/null and b/source/images/supported_brands/proxmoxve.png differ diff --git a/source/images/supported_brands/starline.png b/source/images/supported_brands/starline.png new file mode 100644 index 00000000000..1cc29749e16 Binary files /dev/null and b/source/images/supported_brands/starline.png differ diff --git a/source/images/supported_brands/versasense.png b/source/images/supported_brands/versasense.png new file mode 100644 index 00000000000..e51daeba944 Binary files /dev/null and b/source/images/supported_brands/versasense.png differ diff --git a/source/index.html b/source/index.html index 4c8c60bdb78..fa148a7431e 100644 --- a/source/index.html +++ b/source/index.html @@ -14,13 +14,12 @@ description: Open source home automation that puts local control and privacy fir