mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
518dbd7b89
@ -143,11 +143,11 @@ social:
|
|||||||
# Home Assistant release details
|
# Home Assistant release details
|
||||||
current_major_version: 0
|
current_major_version: 0
|
||||||
current_minor_version: 51
|
current_minor_version: 51
|
||||||
current_patch_version: 0
|
current_patch_version: 2
|
||||||
date_released: 2017-08-12
|
date_released: 2017-08-14
|
||||||
|
|
||||||
# Either # or the anchor link to latest release notes in the blog post.
|
# Either # or the anchor link to latest release notes in the blog post.
|
||||||
# Must be prefixed with a # and have double quotes around it.
|
# Must be prefixed with a # and have double quotes around it.
|
||||||
# Major release:
|
# Major release:
|
||||||
patch_version_notes: "#"
|
patch_version_notes: "#release-0512--august-14"
|
||||||
# Minor release (Example #release-0431---april-25):
|
# Minor release (Example #release-0431---april-25):
|
||||||
|
@ -15,7 +15,7 @@ featured: true
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"token": "sdfj-2131023-dslfjsd-12321",
|
"token": "sdfj-2131023-dslfjsd-12321",
|
||||||
"domains": ["my-first-accound.duckdns.org", "my-second-account.duckdns.org"]
|
"domains": ["my-first-account.duckdns.org", "my-second-account.duckdns.org"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ ha_category: Alarm
|
|||||||
ha_release: 0.11
|
ha_release: 0.11
|
||||||
---
|
---
|
||||||
|
|
||||||
The `alarmdotcom` platform is consuming the information provided by a [Alarm.com](https://www.alarm.com/).
|
The `alarmdotcom` platform is consuming the information provided by [Alarm.com](https://www.alarm.com/).
|
||||||
|
|
||||||
To enable this, add the following lines to your `configuration.yaml`:
|
To enable this, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
|
@ -39,11 +39,11 @@ Configuration variables:
|
|||||||
- **report_server_codes** list (*Optional*): List of codes for the different states.
|
- **report_server_codes** list (*Optional*): List of codes for the different states.
|
||||||
|
|
||||||
Note that this basic configuration will only enable you to read the armed/armed away/disarmed status of your alarm and will **not** update the status if the alarm is triggered. This is because of how Egardia built their system. The alarm triggers normally go through their servers.
|
Note that this basic configuration will only enable you to read the armed/armed away/disarmed status of your alarm and will **not** update the status if the alarm is triggered. This is because of how Egardia built their system. The alarm triggers normally go through their servers.
|
||||||
You can change this however, using the following procedure. This is an more advanced configuration.
|
You can change this, however, using the following procedure. This is a more advanced configuration.
|
||||||
|
|
||||||
1. Login into your alarm system's control panel. You will need to access http://[ip of your control panel]. You know this already, since you need it in the basic configuration from above. Login to the control panel with your Egardia/Woonveilig username and password
|
1. Log in into your alarm system's control panel. You will need to access http://[ip of your control panel]. You know this already since you need it in the basic configuration from above. Log in to the control panel with your Egardia/Woonveilig username and password.
|
||||||
2. Once logged in, go to *System Settings*, *Report* and change the Server Address for your primary server to the IP or hostname of your Home Assistant machine. Also, update the port number 85 or to anything you like. The provided software that you will set up in the next steps runs on port 85 by default. **Make sure to change the settings of the primary server otherwise the messages will not come through. Note that this will limit (or fully stop) the number of alarm messages you will get through Egardia's / Woonveilig services.** Maybe, that is just what you want. Make sure to save your settings by selecting 'OK'.
|
2. Once logged in, go to *System Settings*, *Report* and change the Server Address for your primary server to the IP or hostname of your Home Assistant machine. Also, update the port number 85 or to anything you like. The provided software that you will set up in the next steps runs on port 85 by default. **Make sure to change the settings of the primary server otherwise the messages will not come through. Note that this will limit (or fully stop) the number of alarm messages you will get through Egardia's / Woonveilig services.** Maybe, that is just what you want. Make sure to save your settings by selecting 'OK'.
|
||||||
3. On your Home Assistant machine run `$ sudo python3 egardiaserver.py`. This will receive status codes from your alarm control panel and display them. You will need the codes to include in your configuration.yaml. Make sure to change the status of your alarm to all states (disarm, arm, armhome) as well as trigger the alarm in all ways possible to get 100% coverage. **Before triggering the alarm it might be good to temporarily disable the siren (can be done in Panel Settings).**
|
3. On your Home Assistant machine run `$ sudo python3 egardiaserver.py`. This will receive status codes from your alarm control panel and display them. You will need the codes to include in your configuration.yaml. Make sure to change the status of your alarm to all states (disarm, arm, armhome) as well as trigger the alarm in all ways possible to get 100% coverage. **Before triggering the alarm it might be good to disable the siren temporarily (can be done in Panel Settings).**
|
||||||
4. Once you have the codes, update your `configuration.yaml`:
|
4. Once you have the codes, update your `configuration.yaml`:
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
@ -61,10 +61,10 @@ alarm_control_panel:
|
|||||||
triggered: XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX
|
triggered: XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX
|
||||||
standby: XXXXXXXXXXXXXXXX
|
standby: XXXXXXXXXXXXXXXX
|
||||||
```
|
```
|
||||||
Note that your can have more than one code for triggered, since every sensor generates it's own code. arm, disarm, armhome and standby will all be one code.
|
Note that you can have more than one code for triggered since every sensor generates its own code. arm, disarm, armhome and standby will all be one code.
|
||||||
5. Start the `egardiaserver.py` script on boot of your Home Assistant machine, for example by adding the following to your `/etc/rc.local`:
|
5. Start the `egardiaserver.py` script on boot of your Home Assistant machine, for example by adding the following to your `/etc/rc.local`:
|
||||||
```bash
|
```bash
|
||||||
python3 [path/to/]egardiaserver.py &
|
python3 [path/to/]egardiaserver.py &
|
||||||
```
|
```
|
||||||
**Do not forget the trailing & here, otherwise you will be having a hard time logging back in to the machine.**
|
**Do not forget the trailing & here; otherwise you will be having a hard time logging back into the machine.**
|
||||||
6. Test your setup and enjoy. The component will update if the alarm status changes, including triggers. You can use this to build your own automations and send notifications as you wish.
|
6. Test your setup and enjoy. The component will update if the alarm status changes, including triggers. You can use this to build your own automations and send notifications as you wish.
|
||||||
|
@ -31,7 +31,7 @@ Configuration variables:
|
|||||||
|
|
||||||
## {% linkable_title Examples %}
|
## {% linkable_title Examples %}
|
||||||
|
|
||||||
In this section you find some real life examples of how to use this panel.
|
In this section, you find some real-life examples of how to use this panel.
|
||||||
|
|
||||||
### {% linkable_title Sensors %}
|
### {% linkable_title Sensors %}
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ All configuration variables from the base manual alarm platform are available:
|
|||||||
Additionally, the following MQTT configuration variables are also available:
|
Additionally, the following MQTT configuration variables are also available:
|
||||||
|
|
||||||
- **state_topic** (*Required*): The MQTT topic HA will publish state updates to.
|
- **state_topic** (*Required*): The MQTT topic HA will publish state updates to.
|
||||||
- **command_topic** (*Required*): The MQTT topic HA will subscribe to to receive commands from a remote device to change the alarm state.
|
- **command_topic** (*Required*): The MQTT topic HA will subscribe to, to receive commands from a remote device to change the alarm state.
|
||||||
- **qos** (*Optional*): The maximum QoS level for subscribing and publishing to MQTT messages. Default is 0.
|
- **qos** (*Optional*): The maximum QoS level for subscribing and publishing to MQTT messages. Default is 0.
|
||||||
- **payload_disarm** (*Optional*): The payload to disarm this Alarm Panel. Default is "DISARM".
|
- **payload_disarm** (*Optional*): The payload to disarm this Alarm Panel. Default is "DISARM".
|
||||||
- **payload_arm_home** (*Optional*): The payload to set armed-home mode on this Alarm Panel. Default is "ARM_HOME".
|
- **payload_arm_home** (*Optional*): The payload to set armed-home mode on this Alarm Panel. Default is "ARM_HOME".
|
||||||
|
@ -23,7 +23,7 @@ The component will accept the following states from your Alarm Panel (in lower c
|
|||||||
- 'pending'
|
- 'pending'
|
||||||
- 'triggered'
|
- 'triggered'
|
||||||
|
|
||||||
The component is able to control your Alarm Panel by publishing to the `command_topic` when a user interacts with the Home Assistant frontend.
|
The component can control your Alarm Panel by publishing to the `command_topic` when a user interacts with the Home Assistant frontend.
|
||||||
|
|
||||||
To enable this platform, add the following lines to your `configuration.yaml`:
|
To enable this platform, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
|
@ -26,6 +26,6 @@ The requirement is that you have setup [Wink](/components/wink/).
|
|||||||
|
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
The above devices are confimed to work, but others may work as well.
|
The above devices are confirmed to work, but others may work as well.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ ha_release: 0.43
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `alarmdecoder` component will allow Home Assistant users who own either a DSC or Honeywell alarm panel to leverage their alarm system and it's sensors to provide Home Assistant with rich information about their homes. Connectivity between Home Assistant and the alarm panel is accomplished through a device produced by Nu Tech Software Solutions, known as the AlarmDecoder. The AlarmDecoder devices provide a serial, TCP/IP socket or USB interface to the alarm panel, where it emulates an alarm keypad.
|
The `alarmdecoder` component will allow Home Assistant users who own either a DSC or Honeywell alarm panel to leverage their alarm system and its sensors to provide Home Assistant with rich information about their homes. Connectivity between Home Assistant and the alarm panel is accomplished through a device produced by Nu Tech Software Solutions, known as the AlarmDecoder. The AlarmDecoder devices provide a serial, TCP/IP socket or USB interface to the alarm panel, where it emulates an alarm keypad.
|
||||||
|
|
||||||
Please visit the [AlarmDecoder website](https://www.alarmdecoder.com/) for further information about the AlarmDecoder devices.
|
Please visit the [AlarmDecoder website](https://www.alarmdecoder.com/) for further information about the AlarmDecoder devices.
|
||||||
|
|
||||||
@ -46,10 +46,10 @@ alarmdecoder:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **type** (*Required*): The type of AlarmDecoder device: socket, serial or usb
|
- **type** (*Required*): The type of AlarmDecoder device: socket, serial or USB
|
||||||
- **host** (*Optional*): The IP address of the AlarmDecoder device on your home network, if using socket type. Default: `localhost`
|
- **host** (*Optional*): The IP address of the AlarmDecoder device on your home network, if using socket type. Default: `localhost`
|
||||||
- **port** (*Optional*): The port of the AlarmDecoder device on your home network, if using socket type. Default: `10000`
|
- **port** (*Optional*): The port of the AlarmDecoder device on your home network, if using socket type. Default: `10000`
|
||||||
- **path** (*Optional*): The path of the AlarmDecoder device, if using socket type. Default: `/dev/ttyUSB0`
|
- **path** (*Optional*): The path of the AlarmDecoder device, if using socket type. Default: `/dev/ttyUSB0`
|
||||||
- **baud** (*Optional*): The baud rate of the AlarmDecoder device, if using serial type. Default: `115200`
|
- **baud** (*Optional*): The baud rate of the AlarmDecoder device, if using serial type. Default: `115200`
|
||||||
- **panel_display** (*Optional*): Create a sensor called sensor.alarm_display to match the Alarm Keypad dispaly. Default: `off`
|
- **panel_display** (*Optional*): Create a sensor called sensor.alarm_display to match the Alarm Keypad display. Default: `off`
|
||||||
- **zones** (*Optional*): AlarmDecoder has no way to tell us which zones are actually in use, so each zone must be configured in Home Assistant. For each zone, at least a name must be given. For more information on the available zone types, take a look at the [Binary Sensor](/components/binary_sensor.alarmdecoder/) docs. *Note: If no zones are specified, Home Assistant will not load any binary_sensor components.*
|
- **zones** (*Optional*): AlarmDecoder has no way to tell us which zones are actually in use, so each zone must be configured in Home Assistant. For each zone, at least a name must be given. For more information on the available zone types, take a look at the [Binary Sensor](/components/binary_sensor.alarmdecoder/) docs. *Note: If no zones are specified, Home Assistant will not load any binary_sensor components.*
|
||||||
|
@ -12,11 +12,11 @@ ha_category: Automation
|
|||||||
ha_release: 0.38
|
ha_release: 0.38
|
||||||
---
|
---
|
||||||
|
|
||||||
The `alert` component is designed to notify you when problematic issues arise. For example, if the garage door is left open, the `alert` component can be used remind you of this by sending you repeating notifications at customizable intervals. This is also useful for low battery sensors, water leak sensors, or any condition that may need your attention.
|
The `alert` component is designed to notify you when problematic issues arise. For example, if the garage door is left open, the `alert` component can be used remind you of this by sending you repeating notifications at customizable intervals. This is also used for low battery sensors, water leak sensors, or any condition that may need your attention.
|
||||||
|
|
||||||
Alerts will add an entity to the front end only when they are firing. This entity allows you to silence an alert until it is resolved.
|
Alerts will add an entity to the front end only when they are firing. This entity allows you to silence an alert until it is resolved.
|
||||||
|
|
||||||
When using the `alert` component it is important that the timezone used for Home Assistant and the underlying operating system match. Failing to do so may result in multiple alerts being sent at the same time (such as when Home Assistant is set to the `America/Detroit` timezone but the operating system uses `UTC`).
|
When using the `alert` component, it is important that the time zone used for Home Assistant and the underlying operating system match. Failing to do so may result in multiple alerts being sent at the same time (such as when Home Assistant is set to the `America/Detroit` time zone but the operating system uses `UTC`).
|
||||||
|
|
||||||
### {% linkable_title Basic Example %}
|
### {% linkable_title Basic Example %}
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ Configuration variables:
|
|||||||
- **entity_id** (*Required*): The ID of the entity to watch.
|
- **entity_id** (*Required*): The ID of the entity to watch.
|
||||||
- **state** (*Optional*): The problem condition for the entity. Defaults to `on`.
|
- **state** (*Optional*): The problem condition for the entity. Defaults to `on`.
|
||||||
- **repeat** (*Required*): Number of minutes before the notification should be repeated. Can be either a number or a list of numbers.
|
- **repeat** (*Required*): Number of minutes before the notification should be repeated. Can be either a number or a list of numbers.
|
||||||
- **can_acknowledge** (*Optional*): Allows the alert to be unacknowledgable. Defaults to `true`.
|
- **can_acknowledge** (*Optional*): Allows the alert to be unacknowledgeable. Defaults to `true`.
|
||||||
- **skip_first** (*Optional*): Controls whether the notification should be sent immediately or after the first delay. Defaults to `false`.
|
- **skip_first** (*Optional*): Controls whether the notification should be sent immediately or after the first delay. Defaults to `false`.
|
||||||
- **notifiers** (*Required*): List of `notification` components to use for alerts.
|
- **notifiers** (*Required*): List of `notification` components to use for alerts.
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ When activated, the Alexa component will have Home Assistant's native intent sup
|
|||||||
|
|
||||||
One of the most useful applications of Alexa integrations is to call scenes directly. This is easily achieved with some simple setup on the Home Assistant side and by letting Alexa know which scenes you want to run.
|
One of the most useful applications of Alexa integrations is to call scenes directly. This is easily achieved with some simple setup on the Home Assistant side and by letting Alexa know which scenes you want to run.
|
||||||
|
|
||||||
First we will configure Alexa. In the Amazon Interaction module add this to the intent schema:
|
First, we will configure Alexa. In the Amazon Interaction module add this to the intent schema:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
@ -144,7 +144,7 @@ intent_script:
|
|||||||
|
|
||||||
Here we are using [templates] to take the name we gave to Alexa e.g. `downstairs on` and replace the space with an underscore so it becomes `downstairs_on` as Home Assistant expects.
|
Here we are using [templates] to take the name we gave to Alexa e.g. `downstairs on` and replace the space with an underscore so it becomes `downstairs_on` as Home Assistant expects.
|
||||||
|
|
||||||
Now say `Alexa ask homeassistant to activate <some scene>` and Alexa will activate that scene for you.
|
Now say `Alexa ask Home Assistant to activate <some scene>` and Alexa will activate that scene for you.
|
||||||
|
|
||||||
### {% linkable_title Adding Scripts %}
|
### {% linkable_title Adding Scripts %}
|
||||||
|
|
||||||
@ -190,7 +190,30 @@ intent_script:
|
|||||||
text: OK
|
text: OK
|
||||||
```
|
```
|
||||||
|
|
||||||
Now say `Alexa ask homeassistant to run <some script>` and Alexa will run that script for you.
|
Now say `Alexa ask Home Assistant to run <some script>` and Alexa will run that script for you.
|
||||||
|
|
||||||
|
### {% linkable_title Support for Launch Requests %}
|
||||||
|
There may be times when you want to respond to a launch request initiated from a command such as "Alexa, Red Alert!".
|
||||||
|
|
||||||
|
To start, you need to get the skill id:
|
||||||
|
|
||||||
|
- Log into [Amazon developer console][amazon-dev-console]
|
||||||
|
- Click the Alexa button at the top of the console
|
||||||
|
- Click the Alexa Skills Kit Get Started button
|
||||||
|
- Locate the skill for which you would like Launch Request support
|
||||||
|
- Click the "View Skill ID" link and copy the ID
|
||||||
|
|
||||||
|
The configuration is the same as an intent with the exception being you will use your skill ID instead of the intent name.
|
||||||
|
```yaml
|
||||||
|
intent_script:
|
||||||
|
amzn1.ask.skill.08888888-7777-6666-5555-444444444444:
|
||||||
|
action:
|
||||||
|
service: script.turn_on
|
||||||
|
entity_id: script.red_alert
|
||||||
|
speech:
|
||||||
|
type: plain
|
||||||
|
text: OK
|
||||||
|
```
|
||||||
|
|
||||||
## {% linkable_title Giving Alexa Some Personality %}
|
## {% linkable_title Giving Alexa Some Personality %}
|
||||||
|
|
||||||
@ -282,7 +305,7 @@ Please refer to the [Amazon documentation][flash-briefing-api-docs] for more inf
|
|||||||
- All other settings are up to you
|
- All other settings are up to you
|
||||||
- Hit "Next"
|
- Hit "Next"
|
||||||
- Test
|
- Test
|
||||||
- Having passed all validations to reach this screen you can now click on "< Back to All Skills" as your flash briefing is now available as in "Development" service.
|
- Having passed all validations to reach this screen, you can now click on "< Back to All Skills" as your flash briefing is now available as in "Development" service.
|
||||||
- To invoke your flash briefing, open the Alexa app on your phone or go to the [Alexa Settings Site][alexa-settings-site], open the "Skills" configuration section, select "Your Skills", scroll to the bottom, tap on the Flash Briefing Skill you just created, enable it, then manage Flash Briefing and adjust ordering as necessary. Finally ask your Echo for your "news","flash briefing", or "briefing".
|
- To invoke your flash briefing, open the Alexa app on your phone or go to the [Alexa Settings Site][alexa-settings-site], open the "Skills" configuration section, select "Your Skills", scroll to the bottom, tap on the Flash Briefing Skill you just created, enable it, then manage Flash Briefing and adjust ordering as necessary. Finally ask your Echo for your "news","flash briefing", or "briefing".
|
||||||
|
|
||||||
[amazon-dev-console]: https://developer.amazon.com
|
[amazon-dev-console]: https://developer.amazon.com
|
||||||
|
@ -38,7 +38,7 @@ amcrest:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **host** (*Required*): The IP address or hostname of your camera. If using hostname, make sure the DNS works as expected.
|
- **host** (*Required*): The IP address or hostname of your camera. If using a hostname, make sure the DNS works as expected.
|
||||||
- **username** (*Required*): The username for accessing your camera.
|
- **username** (*Required*): The username for accessing your camera.
|
||||||
- **password** (*Required*): The password for accessing your camera.
|
- **password** (*Required*): The password for accessing your camera.
|
||||||
- **name** (*Optional*): This parameter allows you to override the name of your camera. The default is "Amcrest Camera".
|
- **name** (*Optional*): This parameter allows you to override the name of your camera. The default is "Amcrest Camera".
|
||||||
@ -46,14 +46,14 @@ Configuration variables:
|
|||||||
- **resolution** (*Optional*): This parameter allows you to specify the camera resolution. For a high resolution (1080/720p), specify the option `high`. For VGA resolution (640x480p), specify the option `low`. If omitted, it defaults to *high*.
|
- **resolution** (*Optional*): This parameter allows you to specify the camera resolution. For a high resolution (1080/720p), specify the option `high`. For VGA resolution (640x480p), specify the option `low`. If omitted, it defaults to *high*.
|
||||||
- **stream_source** (*Optional*): The data source for the live stream. `mjpeg` will use the camera's native MJPEG stream, whereas `snapshot` will use the camera's snapshot API to create a stream from still images. You can also set the `rtsp` option to generate the streaming via RTSP protocol. If omitted, it defaults to *snapshot*.
|
- **stream_source** (*Optional*): The data source for the live stream. `mjpeg` will use the camera's native MJPEG stream, whereas `snapshot` will use the camera's snapshot API to create a stream from still images. You can also set the `rtsp` option to generate the streaming via RTSP protocol. If omitted, it defaults to *snapshot*.
|
||||||
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g. image quality or video filter options.
|
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g. image quality or video filter options.
|
||||||
- **authentication**: (*Optional*): Defines which authentication method to use only when **stream_source** is **mjpeg**. Currently *aiohttp* only support *basic*. It defaults to *basic*.
|
- **authentication**: (*Optional*): Defines which authentication method to use only when **stream_source** is **mjpeg**. Currently, *aiohttp* only support *basic*. It defaults to *basic*.
|
||||||
- **scan_interval** (*Optional*): Defines the update interval of the sensor in seconds. The default is 10 seconds.
|
- **scan_interval** (*Optional*): Defines the update interval of the sensor in seconds. The default is 10 seconds.
|
||||||
- **sensors** array (*Optional*): Conditions to display in the frontend. By default, *none* of the conditions are enabled. The following conditions can be monitored.
|
- **sensors** array (*Optional*): Conditions to display in the frontend. By default, *none* of the conditions are enabled. The following conditions can be monitored.
|
||||||
- **motion_detector**: Return True/False when a motion is detected
|
- **motion_detector**: Return True/False when a motion is detected
|
||||||
- **sdcard**: Return the SD card usage by reporting the total and used space
|
- **sdcard**: Return the SD card usage by reporting the total and used space
|
||||||
- **ptz_preset**: Return the number of PTZ preset positions configured for the given camera
|
- **ptz_preset**: Return the number of PTZ preset positions configured for the given camera
|
||||||
|
|
||||||
**Note:** Amcrest cameras with newer firmwares no longer have the ability to stream `high` definition video with MJPEG encoding. You may need to use `low` resolution stream or the `snapshot` stream source instead. If the quality seems too poor, lower the `Frame Rate (FPS)` and max out the `Bit Rate` settings in your camera's configuration manager. If you defined the *stream_source* to **mjpeg**, make sure your camera supports *Basic* HTTP authentication. Newer Amcrest firwmares may not work, then **rtsp** is recommended instead.
|
**Note:** Amcrest cameras with newer firmware no longer have the ability to stream `high` definition video with MJPEG encoding. You may need to use `low` resolution stream or the `snapshot` stream source instead. If the quality seems too poor, lower the `Frame Rate (FPS)` and max out the `Bit Rate` settings in your camera's configuration manager. If you defined the *stream_source* to **mjpeg**, make sure your camera supports *Basic* HTTP authentication. Newer Amcrest firmware may not work, then **rtsp** is recommended instead.
|
||||||
|
|
||||||
**Note:** If you set the `stream_source` option to `rtsp`, make sure to follow the steps mentioned at
|
**Note:** If you set the `stream_source` option to `rtsp`, make sure to follow the steps mentioned at
|
||||||
[FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation to install the `ffmpeg`.
|
[FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation to install the `ffmpeg`.
|
||||||
|
@ -15,7 +15,7 @@ ha_iot_class: "Local Polling"
|
|||||||
|
|
||||||
The `android_ip_webcam` component turns an Android phone into a network camera with multiple viewing options.
|
The `android_ip_webcam` component turns an Android phone into a network camera with multiple viewing options.
|
||||||
|
|
||||||
It's setup as a mjpeg camera and all settings as switches inside of Home Assistant. You can also expose the sensors. If you have multiple phones, you can use all options inside a list.
|
It's setup as an M-JPEG camera and all settings as switches inside of Home Assistant. You can also expose the sensors. If you have multiple phones, you can use all options inside a list.
|
||||||
|
|
||||||
To set it up, download [the IP Webcam app][app], and add the following information to your `configuration.yaml` file:
|
To set it up, download [the IP Webcam app][app], and add the following information to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -33,8 +33,8 @@ Configuration variables:
|
|||||||
- **username** (*Optional*): The username to access the phone.
|
- **username** (*Optional*): The username to access the phone.
|
||||||
- **password** (*Optional*): The password to access the phone.
|
- **password** (*Optional*): The password to access the phone.
|
||||||
- **scan_interval** (*Optional*): Default is 10 seconds. Defines the update interval of the phone.
|
- **scan_interval** (*Optional*): Default is 10 seconds. Defines the update interval of the phone.
|
||||||
- **sensors** array (*Optional*): Conditions to display sensor in the frontend. See list of supported sensors.
|
- **sensors** array (*Optional*): Conditions to display sensor in the frontend. See the list of supported sensors.
|
||||||
- **switches** array (*Optional*): Conditions to display settings in the frontend. See list of supported settings.
|
- **switches** array (*Optional*): Conditions to display settings in the frontend. See the list of supported settings.
|
||||||
- **motion_sensor** (*Optional*): Activate motion sensor if auto_discovery is disabled.
|
- **motion_sensor** (*Optional*): Activate motion sensor if auto_discovery is disabled.
|
||||||
|
|
||||||
### {% linkable_title Supported features %}
|
### {% linkable_title Supported features %}
|
||||||
|
@ -13,9 +13,9 @@ featured: false
|
|||||||
ha_release: 0.38
|
ha_release: 0.38
|
||||||
---
|
---
|
||||||
|
|
||||||
This component is designed to be used with the "webhook" integration in [api.ai][apiai-web]. When a conversation ends with an user, api.ai sends an action and parameters to the webhook.
|
This component is designed to be used with the "webhook" integration in [api.ai][apiai-web]. When a conversation ends with a user, api.ai sends an action and parameters to the webhook.
|
||||||
|
|
||||||
api.ai requires a public endpoint (HTTPS recommended), so your Home Assistant should be exposed to Internet. api.ai will return fallback answers if your server do not answer, or takes too long (more than 5 seconds).
|
api.ai requires a public endpoint (HTTPS recommended), so your Home Assistant should be exposed to the Internet. api.ai will return fallback answers if your server does not answer, or takes too long (more than 5 seconds).
|
||||||
|
|
||||||
api.ai could be integrated with many popular messaging, virtual assistant and IoT platforms, eg.: Google Assistant (Google Actions), Skype, Messenger. [See here](https://docs.api.ai/docs/integrations) the complete list.
|
api.ai could be integrated with many popular messaging, virtual assistant and IoT platforms, eg.: Google Assistant (Google Actions), Skype, Messenger. [See here](https://docs.api.ai/docs/integrations) the complete list.
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ Using Api.ai will be easy to create conversations like:
|
|||||||
>
|
>
|
||||||
> Bot: Turning on kitchen light
|
> Bot: Turning on kitchen light
|
||||||
|
|
||||||
To use this integration you should define a conversation (intent) in Api.ai, configure Home Assistant with the speech to return and, optionally, the action to execute.
|
To use this integration, you should define a conversation (intent) in Api.ai, configure Home Assistant with the speech to return and, optionally, the action to execute.
|
||||||
|
|
||||||
### {% linkable_title Configuring your api.ai account %}
|
### {% linkable_title Configuring your api.ai account %}
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ To use this integration you should define a conversation (intent) in Api.ai, con
|
|||||||
- Click on "Create Agent"
|
- Click on "Create Agent"
|
||||||
- Select name, language (if you are planning to use it with Google Actions check [here](https://support.google.com/assistant/answer/7108196?hl=en) supported languages) and time zone
|
- Select name, language (if you are planning to use it with Google Actions check [here](https://support.google.com/assistant/answer/7108196?hl=en) supported languages) and time zone
|
||||||
- Click "Save"
|
- Click "Save"
|
||||||
- Go to "Fullfiment" (in the left menu)
|
- Go to "Fulfillment" (in the left menu)
|
||||||
- Enable Webhook and set your Home Assistant URL with the Api.ai endpoint. Eg.: ``https://myhome.duckdns.org/api/apiai?api_password=HA_PASSWORD``
|
- Enable Webhook and set your Home Assistant URL with the Api.ai endpoint. Eg.: ``https://myhome.duckdns.org/api/apiai?api_password=HA_PASSWORD``
|
||||||
- Click "Save"
|
- Click "Save"
|
||||||
- Create a new intent
|
- Create a new intent
|
||||||
@ -70,29 +70,33 @@ apiai:
|
|||||||
|
|
||||||
intent_script:
|
intent_script:
|
||||||
Temperature:
|
Temperature:
|
||||||
speech: The temperature at home is {{ states('sensor.home_temp') }} degrees
|
speech:
|
||||||
|
text: The temperature at home is {{ states('sensor.home_temp') }} degrees
|
||||||
LocateIntent:
|
LocateIntent:
|
||||||
speech: >
|
speech:
|
||||||
{%- for state in states.device_tracker -%}
|
text: >
|
||||||
{%- if state.name.lower() == User.lower() -%}
|
{%- for state in states.device_tracker -%}
|
||||||
{{ state.name }} is at {{ state.state }}
|
{%- if state.name.lower() == User.lower() -%}
|
||||||
{%- elif loop.last -%}
|
{{ state.name }} is at {{ state.state }}
|
||||||
I am sorry, I do not know where {{ User }} is.
|
{%- elif loop.last -%}
|
||||||
{%- endif -%}
|
I am sorry, I do not know where {{ User }} is.
|
||||||
{%- else -%}
|
{%- endif -%}
|
||||||
Sorry, I don't have any trackers registered.
|
{%- else -%}
|
||||||
{%- endfor -%}
|
Sorry, I don't have any trackers registered.
|
||||||
|
{%- endfor -%}
|
||||||
WhereAreWeIntent:
|
WhereAreWeIntent:
|
||||||
speech: >
|
speech:
|
||||||
{%- if is_state('device_tracker.adri', 'home') and
|
text: >
|
||||||
is_state('device_tracker.bea', 'home') -%}
|
{%- if is_state('device_tracker.adri', 'home') and
|
||||||
You are both home, you silly
|
is_state('device_tracker.bea', 'home') -%}
|
||||||
{%- else -%}
|
You are both home, you silly
|
||||||
Bea is at {{ states("device_tracker.bea") }}
|
{%- else -%}
|
||||||
and Adri is at {{ states("device_tracker.adri") }}
|
Bea is at {{ states("device_tracker.bea") }}
|
||||||
{% endif %}
|
and Adri is at {{ states("device_tracker.adri") }}
|
||||||
|
{% endif %}
|
||||||
TurnLights:
|
TurnLights:
|
||||||
speech: Turning {{ Room }} lights {{ OnOff }}
|
speech:
|
||||||
|
text: Turning {{ Room }} lights {{ OnOff }}
|
||||||
action:
|
action:
|
||||||
- service: notify.pushbullet
|
- service: notify.pushbullet
|
||||||
data_template:
|
data_template:
|
||||||
|
@ -17,7 +17,7 @@ featured: true
|
|||||||
The `apple_tv` platform allows you to control an Apple TV (3rd and 4th generation). See the [remote platform](/components/remote.apple_tv/) if you want to send remote control buttons, e.g. arrow keys.
|
The `apple_tv` platform allows you to control an Apple TV (3rd and 4th generation). See the [remote platform](/components/remote.apple_tv/) if you want to send remote control buttons, e.g. arrow keys.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
Currently you must have Home Sharing enabled for this to work. Support for pairing Home Assistant with your device will be supported in a later release.
|
Currently, you must have Home Sharing enabled for this to work. Support for pairing Home Assistant with your device will be supported in a later release.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
To use this component, you must first install some system libraries and a compiler. For Debian or a similar system, this should be enough:
|
To use this component, you must first install some system libraries and a compiler. For Debian or a similar system, this should be enough:
|
||||||
@ -26,7 +26,7 @@ To use this component, you must first install some system libraries and a compil
|
|||||||
$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
|
$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to automatically discover new devices, just make sure you have `discovery:` in your `configuration.yaml` file. To manually add one or more Apple TVs to your installation, add the following to your `configuration.yaml` file:
|
If you want to discover new devices automatically, just make sure you have `discovery:` in your `configuration.yaml` file. To manually add one or more Apple TVs to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
@ -48,10 +48,10 @@ Configuration variables:
|
|||||||
- **host** (*Required*): The IP-address of the device.
|
- **host** (*Required*): The IP-address of the device.
|
||||||
- **login_id** (*Required*): An identifier used to login to the device, see below.
|
- **login_id** (*Required*): An identifier used to login to the device, see below.
|
||||||
- **name** (*Optional*): The name of the device used in the frontend.
|
- **name** (*Optional*): The name of the device used in the frontend.
|
||||||
- **start_off** (*Optional*): Set to true if device should start in fake standby.
|
- **start_off** (*Optional*): Set to true if the device should start in fake standby.
|
||||||
- **credentials** (*Optional*): Credentials used for AirPlay playback.
|
- **credentials** (*Optional*): Credentials used for AirPlay playback.
|
||||||
|
|
||||||
In order to connect to the device you need a *login id*. The easiest way to obtain this identifier is to use the `apple_tv_scan` service (described below). Additional information about `start_off` and `credentials` can also be found under the guides section.
|
In order to connect to the device, you need a *login id*. The easiest way to obtain this identifier is to use the `apple_tv_scan` service (described below). Additional information about `start_off` and `credentials` can also be found under the guides section.
|
||||||
|
|
||||||
## {% linkable_title Guides %}
|
## {% linkable_title Guides %}
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ Scanning will be done for three seconds and notification will be shown in the st
|
|||||||
|
|
||||||
<img src='/images/components/apple_tv/scan_result.jpg' />
|
<img src='/images/components/apple_tv/scan_result.jpg' />
|
||||||
|
|
||||||
Alternatively you may use the application ``atvremote``. Install it with ``pip3 install --upgrade pyatv`` in your Home Assistant environment (note: do *not* use sudo). Then run ``atvremote scan`` to scan for all devices (try again if a device is missing):
|
Alternatively, you may use the application ``atvremote``. Install it with ``pip3 install --upgrade pyatv`` in your Home Assistant environment (note: do *not* use sudo). Then run ``atvremote scan`` to scan for all devices (try again if a device is missing):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ atvremote scan
|
$ atvremote scan
|
||||||
@ -83,20 +83,20 @@ Just copy and paste the login id from the device you want to add. For more detai
|
|||||||
|
|
||||||
### {% linkable_title My Apple TV turns on when I restart Home Assistant %}
|
### {% linkable_title My Apple TV turns on when I restart Home Assistant %}
|
||||||
|
|
||||||
The Apple TV will automatically turn on if a request is sent to it, e.g. if a button is pressed, something is streamed to it via AirPlay or if current state (currently playing) is accessed. This is how Apple has designed it and it will cause problems if you are using HDMI CEC. Every time Home Assistant is started, a new request is sent to the device to figure out what is currently playing. When using CEC, this will wake up your TV and other devices you have configured.
|
The Apple TV will automatically turn on if a request is sent to it, e.g., if a button is pressed, something is streamed to it via AirPlay or if current state (currently playing) is accessed. This is how Apple has designed it, and it will cause problems if you are using HDMI CEC. Every time Home Assistant is started, a new request is sent to the device to figure out what is currently playing. When using CEC, this will wake up your TV and other devices you have configured.
|
||||||
|
|
||||||
So, if your TV is randomly turning on, this is probably the reason. As stated, this is by design and there is no real fix for it. There's also no known way to turn off the Apple TV via the procotol used for communication. You basically have the following options:
|
So, if your TV is randomly turning on, this is probably the reason. As stated, this is by design, and there is no real fix for it. There's also no known way to turn off the Apple TV via the protocol used for communication. You have the following options:
|
||||||
|
|
||||||
- Do not use this platform
|
- Do not use this platform
|
||||||
- Disable HDMI CEC on your Apple TV
|
- Disable HDMI CEC on your Apple TV
|
||||||
- Use "fake standby"
|
- Use "fake standby"
|
||||||
|
|
||||||
The first two points are quite obvious. Fake standby is a concept implemented in this platform that disables all requests to the device and make it appear as being "off" in the web interface. This will make sure that the device is not woken up, but it will of course not show any information or allow you to control it. It is however easy to turn it on (or off) in the web interface or using an automation with `turn_on`. To make it more useful, you can write automations that turns it on or off depending on some other device, like the input source on your receiver.
|
The first two points are quite obvious. Fake standby is a concept implemented in this platform that disables all requests to the device and makes it appear as being "off" in the web interface. This will make sure that the device is not woken up, but it will of course not show any information or allow you to control it. It is however easy to turn it on (or off) in the web interface or to use an automation with `turn_on`. To make it more useful, you can write automations that turn it on or off depending on some other device, like the input source on your receiver.
|
||||||
|
|
||||||
To put a device into fake standby when starting Home Assistant, add `start_off: true` to your configuration.
|
To put a device into fake standby when starting Home Assistant, add `start_off: true` to your configuration.
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
Turning the device on/off in the user interface will *not* turn the physical device on/off according to description above.
|
Turning the device on/off in the user interface will *not* turn the physical device on/off according to the description above.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
@ -128,13 +128,13 @@ apple_tv:
|
|||||||
credentials: 1B8C387DDB59BDF6:CF5ABB6A2C070688F5926ADB7C010F6DF847252C15F9BDB6DA3E09D6591E90E5
|
credentials: 1B8C387DDB59BDF6:CF5ABB6A2C070688F5926ADB7C010F6DF847252C15F9BDB6DA3E09D6591E90E5
|
||||||
```
|
```
|
||||||
|
|
||||||
Restart Home Assistant and you should now be able to use `play_url` as before.
|
Restart Home Assistant, and you should now be able to use `play_url` as before.
|
||||||
|
|
||||||
## {% linkable_title Services %}
|
## {% linkable_title Services %}
|
||||||
|
|
||||||
### {% linkable_title Service `apple_tv_authenticate` %}
|
### {% linkable_title Service `apple_tv_authenticate` %}
|
||||||
|
|
||||||
In order to play media on an Apple TV with device authentication enabled (e.g. ATV4 with tvOS 10.2+), Home Assistant must properly authenticated. This method starts the process and presents the credentials needed for playback as a persistent notification. Please see guide above for usage.
|
To play media on an Apple TV with device authentication enabled (e.g., ATV4 with tvOS 10.2+), Home Assistant must be properly authenticated. This method starts the process and presents the credentials needed for playback as a persistent notification. Please see guide above for usage.
|
||||||
|
|
||||||
| Service data attribute | Optional | Description |
|
| Service data attribute | Optional | Description |
|
||||||
| ---------------------- | -------- | ----------- |
|
| ---------------------- | -------- | ----------- |
|
||||||
|
@ -14,13 +14,13 @@ ha_release: pre 0.7
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The [Arduino](https://www.arduino.cc/) device family are microcontroller boards that are often based on the ATmega328 chip. They come with digital input/output pins (some can be used as PWM outputs), analog inputs, and a USB connection. The equipment depends on the [type](https://www.arduino.cc/en/Main/Products) of board. The most common ones are the Arduino Uno and the Arduino Leonardo with 14 digital input/output pins and 6 analog input pins.
|
The [Arduino](https://www.arduino.cc/) device family are microcontroller boards that are often based on the ATmega328 chip. They come with digital input/output pins (some can be used as PWM outputs), analog inputs, and a USB connection. The equipment depends on the [type](https://www.arduino.cc/en/Main/Products) of the board. The most common ones are the Arduino Uno and the Arduino Leonardo with 14 digital input/output pins and 6 analog input pins.
|
||||||
|
|
||||||
There are a lot of extensions (so called [shields](https://www.arduino.cc/en/Main/ArduinoShields)) available. Those shields can be plugged-in into the existing connectors and stacked on top of each other. This makes it possible to expand the capabilities of the Arduino boards.
|
There are a lot of extensions (so-called [shields](https://www.arduino.cc/en/Main/ArduinoShields)) available. Those shields can be plugged-in into the existing connectors and stacked on top of each other. This makes it possible to expand the capabilities of the Arduino boards.
|
||||||
|
|
||||||
The `arduino` component is designed to let you use a directly attached board to your Home Assistant host over USB.
|
The `arduino` component is designed to let you use a directly attached board to your Home Assistant host over USB.
|
||||||
|
|
||||||
You need to have the [Firmata firmware](https://github.com/firmata/) on your board. Please upload the `StandardFirmata` sketch to your board, please refer to the [Arduino documentation](https://www.arduino.cc/en/Main/Howto) for further information.
|
You need to have the [Firmata firmware](https://github.com/firmata/) on your board. Please upload the `StandardFirmata` sketch to your board; please refer to the [Arduino documentation](https://www.arduino.cc/en/Main/Howto) for further information.
|
||||||
|
|
||||||
To integrate an Arduino boards with Home Assistant, add the following section to your `configuration.yaml` file:
|
To integrate an Arduino boards with Home Assistant, add the following section to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ arduino:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **port** (*Required*): The port where your board is connected to your Home Assistant host. If you are using an original Arduino the port will be named `ttyACM*` otherwise `ttyUSB*`.
|
- **port** (*Required*): The port where your board is connected to your Home Assistant host. If you are using an original Arduino, the port will be named `ttyACM*` otherwise `ttyUSB*`.
|
||||||
|
|
||||||
The exact number can be determined with the command shown below.
|
The exact number can be determined with the command shown below.
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ The exact number can be determined with the command shown below.
|
|||||||
$ ls /dev/ttyACM*
|
$ ls /dev/ttyACM*
|
||||||
```
|
```
|
||||||
|
|
||||||
If that's not working, check your `dmesg` or `journalctl -f` output. Keep in mind that Arduino clones are often using a different name for the port (eg. `/dev/ttyUSB*`).
|
If that's not working, check your `dmesg` or `journalctl -f` output. Keep in mind that Arduino clones are often using a different name for the port (e.g. `/dev/ttyUSB*`).
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
A word of caution: The Arduino boards are not storing states. This means that with every initialization the pins are set to off/low.
|
A word of caution: The Arduino boards are not storing states. This means that with every initialization the pins are set to off/low.
|
||||||
|
@ -40,7 +40,7 @@ The Arlo component also provides a service to enable/disable the motion detectio
|
|||||||
- alias: Enable Arlo upton HA start'
|
- alias: Enable Arlo upton HA start'
|
||||||
initial_state: 'on'
|
initial_state: 'on'
|
||||||
trigger:
|
trigger:
|
||||||
platform: homeassitant
|
platform: homeassistant
|
||||||
event: start
|
event: start
|
||||||
action:
|
action:
|
||||||
service: camera.enable_motion_detection
|
service: camera.enable_motion_detection
|
||||||
|
@ -12,11 +12,11 @@ ha_version: 0.51
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The Asterisk Voicemail integration for Home Assistant allows you to view, listen-to, and delete voicemails from a Asterisk voicemail mailbox. The component includes a panel on the frontend that provides caller-id and speech-to-text transcription (using Google's API) of messages in addition to playback and message deletion. There is also an included sensor that provides an indication of the number of available messages. There is no requirement that the Asterisk PBX and Home Assistant are running on the same machine.
|
The Asterisk Voicemail integration for Home Assistant allows you to view, listen to, and delete voicemails from an Asterisk voicemail mailbox. The component includes a panel on the frontend that provides caller-id and speech-to-text transcription (using Google's API) of messages in addition to playback and message deletion. There is also an included sensor that indicates of the number of available messages. There is no requirement that the Asterisk PBX and Home Assistant are running on the same machine.
|
||||||
|
|
||||||
To enable the component, configuration is required in both Home Assistant as well as on the Asterisk server.
|
To enable the component, a configuration is required in both Home Assistant as well as on the Asterisk server.
|
||||||
|
|
||||||
First follow the [Asterisk PBX configuration guide](/docs/asterisk_mbox) to setup the necessary server on the Asterisk PBX server (this is necessary even if Asterisk and Home Assistant are running on the same server)
|
First follow the [Asterisk PBX configuration guide](/docs/asterisk_mbox) to setup the necessary server on the Asterisk PBX server (this is needed even if Asterisk and Home Assistant are running on the same server)
|
||||||
|
|
||||||
Once that is complete, add the the following entry `configuration.yaml` file:
|
Once that is complete, add the the following entry `configuration.yaml` file:
|
||||||
|
|
||||||
@ -32,11 +32,11 @@ This will add a new 'Mailbox' side-panel, as well as a sensor to indicate # of m
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **password** (*Required*): The password that was set during Asterisk PBX confguration
|
- **password** (*Required*): The password that was set during Asterisk PBX configuration
|
||||||
- **host** (*Required*): The ip-address of the server that is running the Asterisk PBX
|
- **host** (*Required*): The ip-address of the server that is running the Asterisk PBX
|
||||||
- **port** (*Required*): The port on the Asterisk PBX server that was configured during Asterisk PBX confguration
|
- **port** (*Required*): The port on the Asterisk PBX server that was configured during Asterisk PBX configuration
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
Communication between the Asterisk PBX server and the Home Assistant server is password-protected, but the data transmission is not encrypted. It is recommended to only use this component when communication will be contained within a local area network.
|
Communication between the Asterisk PBX server and the Home Assistant server is password-protected, but the data transmission is not encrypted. It is recommended to only use this component when communication is contained within a local area network.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ ha_release: "0.45"
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
[Axis Communications](https://www.axis.com/) devices are surveillance cameras and other security related network connected hardware. Sensor API works with firmware 5.50 and newer.
|
[Axis Communications](https://www.axis.com/) devices are surveillance cameras and other security-related network connected hardware. Sensor API works with firmware 5.50 and newer.
|
||||||
|
|
||||||
Home Assistant will automatically discover their presence on your network.
|
Home Assistant will automatically discover their presence on your network.
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ Configuration variables:
|
|||||||
- **camera**: Stream MJPEG video to Home Assistant.
|
- **camera**: Stream MJPEG video to Home Assistant.
|
||||||
- **motion**: The built-in motion detection in Axis cameras.
|
- **motion**: The built-in motion detection in Axis cameras.
|
||||||
- **vmd3**: ACAP Motion Detection app which has better algorithms for motion detection.
|
- **vmd3**: ACAP Motion Detection app which has better algorithms for motion detection.
|
||||||
- **pir**: PIR sensor that can trigger on motion.
|
- **pir**: PIR sensor that can trigger on a motion.
|
||||||
- **sound**: Sound detector.
|
- **sound**: Sound detector.
|
||||||
- **daynight**: Certain cameras have day/night mode if they have built-in IR lights.
|
- **daynight**: Certain cameras have day/night mode if they have built-in IR lights.
|
||||||
- **tampering**: Signals when camera believes that it has been tampered with.
|
- **tampering**: Signals when camera believes that it has been tampered with.
|
||||||
@ -88,7 +88,7 @@ axis:
|
|||||||
```
|
```
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
If you are using Python3.6 you might need to replace the 34m with 36m in the _gi.*.so filename in the gi folder.
|
If you are using Python 3.6, you might need to replace the 34m with 36m in the _gi.*.so filename in the gi folder.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
@ -96,7 +96,7 @@ Any specific levels for triggers needs to be configured on the device.
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
It is recommended that you create a user on your Axis device specifically for Home Assistant. For all current functionality it is enough to create a user belonging to user group viewer.
|
It is recommended that you create a user on your Axis device specifically for Home Assistant. For all current functionality, it is enough to create a user belonging to user group viewer.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## {% linkable_title Device services %}
|
## {% linkable_title Device services %}
|
||||||
@ -109,7 +109,7 @@ Send a command using [Vapix](https://www.axis.com/support/developer-support/vapi
|
|||||||
|---------------------------|----------|--------------------------------------------------|
|
|---------------------------|----------|--------------------------------------------------|
|
||||||
| `name` | no | Name of device to communicate with. |
|
| `name` | no | Name of device to communicate with. |
|
||||||
| `param` | no | What parameter to operate on. |
|
| `param` | no | What parameter to operate on. |
|
||||||
| `cgi` | yes | Which cgi to call on device. Default is `param.cgi`. |
|
| `cgi` | yes | Which cgi to call on the device. Default is `param.cgi`. |
|
||||||
| `action` | yes | What type of call. Default is `update`. |
|
| `action` | yes | What type of call. Default is `update`. |
|
||||||
|
|
||||||
Response to call can be subscribed to on event `vapix_call_response`
|
Response to call can be subscribed to on event `vapix_call_response`
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Binary Sensor
|
ha_category: Binary Sensor
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
@ -20,12 +20,21 @@ The requirement is that you have setup the [`xiaomi` component](/components/xiao
|
|||||||
|
|
||||||
|
|
||||||
### {% linkable_title Type of sensors supported %}
|
### {% linkable_title Type of sensors supported %}
|
||||||
- Motion
|
|
||||||
- Door / Window
|
| Name | ZigBee entity | Model no. | States | Event | Event key | Event values |
|
||||||
- Smoke
|
|-----------------------------------|---------------------|----------------------|----------------------------------------------------|-----------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
|
||||||
- Gas
|
| Motion Sensor (1st gen) | motion | RTCGQ01LM | on, off | `motion` | | |
|
||||||
- Xiaomi Wireless Button
|
| Motion Sensor (2nd gen) | sensor_motion.aq2 | RTCGQ11LM | on, off | `motion` | | |
|
||||||
- Xiaomi Cube
|
| Door and Window Sensor (1st gen) | magnet | WSDCGQ01LM | on, off | | | |
|
||||||
|
| Door and Window Sensor (2nd gen) | sensor_magnet.aq2 | MCCGQ11LM | on, off | | | |
|
||||||
|
| Smoke Detector | smoke | JTYJ-GD-01LM/BW | on, off | | | |
|
||||||
|
| Gas Leak Detector | natgas | JTQJ-BF-01LM/BW | on, off | | | |
|
||||||
|
| Button (1st gen) | switch | WXKG01LM | on (thru long_click_press), off | `click` | `click_type` | `long_click_press`, `long_click_release`, `hold`, `single`, `double` |
|
||||||
|
| Button (2nd gen) | sensor_switch.aq2 | WXKG11LM | off (always) | `click` | `click_type` | `single`, `double` |
|
||||||
|
| Aqara Wireless Switch (Single) | 86sw1 | WXKG03LM | off (always) | `click` | `click_type` | `single` |
|
||||||
|
| Aqara Wireless Switch (Double) | 86sw2 | WXKG02LM | off (always) | `click` | `click_type` | `single`, `both` |
|
||||||
|
| Cube | cube | MFKZQ01LM | off (always) | `cube_action` | `action_type`, `action_value` (rotate) | `flip90`, `flip180`, `move`, `tap_twice`, `shake_air`, `swing`, `alert`, `free_fall`, `rotate` (degrees at action_value) |
|
||||||
|
|
||||||
|
|
||||||
### {% linkable_title Automation examples %}
|
### {% linkable_title Automation examples %}
|
||||||
|
|
||||||
@ -65,7 +74,7 @@ The requirement is that you have setup the [`xiaomi` component](/components/xiao
|
|||||||
data:
|
data:
|
||||||
entity_id: automation.Motion_off
|
entity_id: automation.Motion_off
|
||||||
```
|
```
|
||||||
|
|
||||||
#### {% linkable_title Door and/or Window %}
|
#### {% linkable_title Door and/or Window %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -194,8 +203,8 @@ Available events are `flip90`, `flip180`, `move`, `tap_twice`, `shake_air`, `swi
|
|||||||
platform: event
|
platform: event
|
||||||
event_type: cube_action
|
event_type: cube_action
|
||||||
event_data:
|
event_data:
|
||||||
entity_id: binary_sensor.cube_15xxxxxxxxxxxx
|
entity_id: binary_sensor.cube_15xxxxxxxxxxxx
|
||||||
action_type: flip180
|
action_type: flip180
|
||||||
action:
|
action:
|
||||||
- service: light.turn_on
|
- service: light.turn_on
|
||||||
entity_id: light.gateway_light_28xxxxxxxxxx
|
entity_id: light.gateway_light_28xxxxxxxxxx
|
||||||
@ -203,10 +212,10 @@ Available events are `flip90`, `flip180`, `move`, `tap_twice`, `shake_air`, `swi
|
|||||||
color_name: "darkviolet"
|
color_name: "darkviolet"
|
||||||
- alias: Cube event move
|
- alias: Cube event move
|
||||||
trigger:
|
trigger:
|
||||||
platform: event
|
platform: event
|
||||||
event_type: cube_action
|
event_type: cube_action
|
||||||
event_data:
|
event_data:
|
||||||
entity_id: binary_sensor.cube_15xxxxxxxxxxxx
|
entity_id: binary_sensor.cube_15xxxxxxxxxxxx
|
||||||
action_type: move
|
action_type: move
|
||||||
action:
|
action:
|
||||||
- service: light.turn_on
|
- service: light.turn_on
|
||||||
@ -238,7 +247,8 @@ Available events are `flip90`, `flip180`, `move`, `tap_twice`, `shake_air`, `swi
|
|||||||
data:
|
data:
|
||||||
color_name: "blue"
|
color_name: "blue"
|
||||||
```
|
```
|
||||||
#### #### {% linkable_title Aqara Wireless Switch %}
|
|
||||||
|
#### {% linkable_title Aqara Wireless Switch %}
|
||||||
|
|
||||||
The Aqara Wireless Switch is available as single-key and double-key version. Each key behaves like the Wireless Button limited to the click event `single`. The double key version adds a third device called `binary_sensor.wall_switch_both_158xxxxxxxxx12` which reports a click event called `both` if both keys are pressed.
|
The Aqara Wireless Switch is available as single-key and double-key version. Each key behaves like the Wireless Button limited to the click event `single`. The double key version adds a third device called `binary_sensor.wall_switch_both_158xxxxxxxxx12` which reports a click event called `both` if both keys are pressed.
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@ footer: true
|
|||||||
logo: myq.png
|
logo: myq.png
|
||||||
ha_category: Cover
|
ha_category: Cover
|
||||||
ha_release: 0.39
|
ha_release: 0.39
|
||||||
|
ha_iot_class: Cloud Polling
|
||||||
---
|
---
|
||||||
|
|
||||||
The `myq` cover platform lets you control MyQ-Enabled garage doors through Home Assistant. Device names in Home Assistant are generated based on the names defined in your MyQ Device mobile app.
|
The `myq` cover platform lets you control MyQ-Enabled garage doors through Home Assistant. Device names in Home Assistant are generated based on the names defined in your MyQ Device mobile app.
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Cover
|
ha_category: Cover
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,10 +12,18 @@ logo: linksys.png
|
|||||||
ha_release: 0.48
|
ha_release: 0.48
|
||||||
---
|
---
|
||||||
|
|
||||||
The `linksys_smart` platform offers presence detection by looking at connected devices to a Linksys Smart Wifi based
|
The `linksys_smart` platform offers presence detection by looking at connected devices to a Linksys Smart Wifi based router.
|
||||||
router. It was tested with a LINKSYS WRT3200ACM MU-MIMO Gigabit Wi-Fi Wireless Router.
|
|
||||||
|
|
||||||
To use a Linksys Smart Wifi Router in your installation, add the following to your `configuration.yaml` file:
|
Tested routers:
|
||||||
|
LINKSYS WRT3200ACM MU-MIMO Gigabit Wi-Fi Wireless Router
|
||||||
|
LINKSYS WRT1900ACS Dual-band Wi-Fi Router
|
||||||
|
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
For this platform to work correctly, it is necessary to disable the "Access via wireless" feature in the Local Management Access section of the router administration page. If "Access via wireless" is not disabled, a connectivity conflict arises because the Home Assistant integration is trying to pass userid and password, but the router is only expecting a password.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
To use a Linksys Smart Wifi Router in your Home Assistant installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
|
@ -34,4 +34,7 @@ Configuration variables:
|
|||||||
- **password** (*Required*): The password for your given admin account.
|
- **password** (*Required*): The password for your given admin account.
|
||||||
- **port** (*Optional*): The port your router communicates with (defaults to 5000, but 80 is also known to be used on some models)
|
- **port** (*Optional*): The port your router communicates with (defaults to 5000, but 80 is also known to be used on some models)
|
||||||
|
|
||||||
|
List of models that are known to use port 80:
|
||||||
|
- Nighthawk X4S - AC2600 (R7800)
|
||||||
|
|
||||||
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
||||||
|
@ -14,8 +14,7 @@ ha_release: 0.37
|
|||||||
|
|
||||||
The `tado` device tracker is using the [Tado Smart Thermostat](https://www.tado.com/) and it's support for person presence detection based on smartphone location by geofencing.
|
The `tado` device tracker is using the [Tado Smart Thermostat](https://www.tado.com/) and it's support for person presence detection based on smartphone location by geofencing.
|
||||||
|
|
||||||
This tracker uses the Tado API to determine if a mobile device is at home.
|
This tracker uses the Tado API to determine if a mobile device is at home. It tracks all devices in your home that Tado knows about.
|
||||||
It tracks all devices in your home that Tado knows about.
|
|
||||||
|
|
||||||
To use the Tado platform in your installation, add the following to your `configuration.yaml` file:
|
To use the Tado platform in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -37,15 +36,25 @@ Configuration variables:
|
|||||||
After configuration, your device has to be at home at least once before showing up as *home* or *away*.
|
After configuration, your device has to be at home at least once before showing up as *home* or *away*.
|
||||||
Polling Tado API for presence information will happen at most once every 30 seconds.
|
Polling Tado API for presence information will happen at most once every 30 seconds.
|
||||||
|
|
||||||
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked. Beware that the Tado (v2) API does not provide GPS location of devices, only a bearing, therefore Home Assistant only uses `home`/`not-home` status.
|
||||||
|
|
||||||
### {% linkable_title Finding your `home_id` %}
|
### {% linkable_title Finding your `home_id` %}
|
||||||
Find your `home_id` by browsing to `https://my.tado.com/api/v2/me?username=YOUR_USERNAME&password=YOUR_PASSWORD`. There you'll see something like the following:
|
Find your `home_id` by browsing to `https://my.tado.com/api/v2/me?username=YOUR_USERNAME&password=YOUR_PASSWORD`. There you'll see something like the following:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{"name":"Mark","email":"your@email.tld","username":"your@email.tld",
|
{
|
||||||
"homes":[{"id":12345,"name":"Home Sweet Home"}],"locale":"en_US",
|
"name": "Mark",
|
||||||
"mobileDevices":[]}
|
"email": "your@email.tld",
|
||||||
|
"username": "your@email.tld",
|
||||||
|
"homes": [
|
||||||
|
{
|
||||||
|
"id": 12345,
|
||||||
|
"name": "Home Sweet Home"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"locale": "en_US",
|
||||||
|
"mobileDevices": []
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
In this example `12345` is the `home_id` you'll need to configure.
|
In this example `12345` is the `home_id` you'll need to configure.
|
||||||
|
@ -43,6 +43,8 @@ There are 2 themes-related services:
|
|||||||
|
|
||||||
Example in automation:
|
Example in automation:
|
||||||
|
|
||||||
|
Set a theme at the startup of Home Assistant:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
automation:
|
automation:
|
||||||
- alias: 'Set theme at startup'
|
- alias: 'Set theme at startup'
|
||||||
@ -55,3 +57,22 @@ automation:
|
|||||||
data:
|
data:
|
||||||
name: happy
|
name: happy
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To enable "night mode":
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
automation:
|
||||||
|
- alias: 'Set dark theme for the night'
|
||||||
|
initial_state: True
|
||||||
|
trigger:
|
||||||
|
- platform: time
|
||||||
|
at: '21:00'
|
||||||
|
action:
|
||||||
|
- service: frontend.set_theme
|
||||||
|
data:
|
||||||
|
name: darkred
|
||||||
|
```
|
||||||
|
|
||||||
|
### {% linkable_title Manual Theme Selection %}
|
||||||
|
|
||||||
|
When themes are enabled in the `configuration.yaml` file, a new option will show up in the Configuration panel under `configuration.yaml` called "Set a theme." You can then choose any installed theme from the dropdown list and it will be applied immediately.
|
||||||
|
@ -15,18 +15,23 @@ og_image: /images/screenshots/ssocr.png
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `seven_segments` image processing platform allows you to read physical seven segments displays through Home Assistant. [`ssocr`](https://www.unix-ag.uni-kl.de/~auerswal/ssocr/) is used to extract the value shown on the display which is observed by a [camera](/components/camera/). `ssocr` need to be available on your system. Check the installation instruction for Fedora below or use `$ sudo apt-get install ssocr` on a Debian-based system:
|
The `seven_segments` image processing platform allows you to read physical seven segments displays through Home Assistant. [`ssocr`](https://www.unix-ag.uni-kl.de/~auerswal/ssocr/) is used to extract the value shown on the display which is observed by a [camera](/components/camera/).
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
If you are using [Hass.io](/hassio/) then just move forward to the configuration as all requirements are already fullfilled.
|
If you are using [Hass.io](/hassio/) then just move forward to the configuration as all requirements are already fullfilled.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
`ssocr` needs to be available on your system. Check the installation instruction below:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo dnf -y install imlib2-devel
|
$ sudo dnf -y install imlib2-devel # Fedora
|
||||||
|
$ sudo apt install libimlib2-dev # Ubuntu
|
||||||
|
$ brew install imlib2 # macOS
|
||||||
$ git clone https://github.com/auerswal/ssocr.git
|
$ git clone https://github.com/auerswal/ssocr.git
|
||||||
$ cd ssocr
|
$ cd ssocr
|
||||||
$ make
|
$ make
|
||||||
$ sudo make PREFIX=/usr install
|
$ sudo make PREFIX=/usr install # On most systems
|
||||||
|
$ make deb # (Optional) This allows you to make a deb so that you apt is aware of ssocr
|
||||||
```
|
```
|
||||||
|
|
||||||
To enable the OCR of a seven segement display in your installation, add the following to your `configuration.yaml` file:
|
To enable the OCR of a seven segement display in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Light
|
ha_category: Light
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ footer: true
|
|||||||
|
|
||||||
Mailboxes provide an list of messages with short information about each. Mailbox messages appear on a separate panel in the frontend.
|
Mailboxes provide an list of messages with short information about each. Mailbox messages appear on a separate panel in the frontend.
|
||||||
|
|
||||||
Home Assistant currently supports only the [Asterisk Vaoicemail](/component/mailbox.asterisk_mbox) mailbox.
|
Home Assistant currently supports only the [Asterisk Voicemail](/component/mailbox.asterisk_mbox) mailbox.
|
||||||
|
|
||||||
Each mailbox also provides an entity to indicate the number of messages available on the main page.
|
Each mailbox also provides an entity to indicate the number of messages available on the main page.
|
||||||
|
|
||||||
|
@ -35,8 +35,8 @@ Configuration variables:
|
|||||||
- **port** (*Optional*): Port of communication to the device (default: 11000)
|
- **port** (*Optional*): Port of communication to the device (default: 11000)
|
||||||
|
|
||||||
## Advanced configuration example
|
## Advanced configuration example
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry with manually specified addresses
|
# Example configuration.yaml entry with manually specified addresses
|
||||||
media_player:
|
media_player:
|
||||||
- platform: bluesound
|
- platform: bluesound
|
||||||
|
@ -12,22 +12,28 @@ ha_category: Notifications
|
|||||||
ha_release: "0.40"
|
ha_release: "0.40"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `Cisco Spark` platform allows you to deliver notifications from Home Assistant to [Cisco Spark](https://ciscospark.com/).
|
The `ciscospark` notification platform allows you to deliver notifications from Home Assistant to [Cisco Spark](https://ciscospark.com/).
|
||||||
|
|
||||||
To use this notification platform you need to get a developer token. To obtain a token visit [Spark for Devleopers](https://developer.ciscospark.com/index.html)
|
To use this notification platform you need to get a developer token. To obtain a token visit [Spark for Devleopers](https://developer.ciscospark.com/index.html)
|
||||||
|
|
||||||
At this time you also need to specify the `Cisco Spark` `roomid`. The `roomid` can also be found at [Spark for Devleopers](https://developer.ciscospark.com/index.html).
|
At this time you also need to specify the `Cisco Spark` `roomid`. The `roomid` can also be found at [Spark for Devleopers](https://developer.ciscospark.com/index.html). Just look in the Doumentation under Rooms.
|
||||||
Just look in the Doumentation under Rooms.
|
|
||||||
|
|
||||||
To enable the `Cisco Spark` notification in your installation, add the following to your `configuration.yaml` file:
|
To enable the Cisco Spark notification in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
notify:
|
notify:
|
||||||
- name: NOTIFIER_NAME
|
- name: NOTIFIER_NAME
|
||||||
platform: ciscospark
|
platform: ciscospark
|
||||||
token: <YOUR_DEVELOPER_TOKEN>
|
token: YOUR_DEVELOPER_TOKEN
|
||||||
roomid: <CISCO_SPARK_ROOMID>
|
roomid: CISCO_SPARK_ROOMID
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Configuration variables:
|
||||||
|
|
||||||
|
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||||
|
- **token** (*Required*): Your development token.
|
||||||
|
- **roomid** (*Required*): The Room ID.
|
||||||
|
|
||||||
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
|
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
|
||||||
|
|
||||||
|
@ -26,13 +26,13 @@ notify:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **page_access_token** (*Required*): Access token for your facebook page. Checkout [Facebook Messenger Platform](https://developers.facebook.com/docs/messenger-platform/guides/setup) for more information.
|
- **page_access_token** (*Required*): Access token for your Facebook page. Checkout [Facebook Messenger Platform](https://developers.facebook.com/docs/messenger-platform/guides/setup) for more information.
|
||||||
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||||
|
|
||||||
### {% linkable_title Usage %}
|
### {% linkable_title Usage %}
|
||||||
|
|
||||||
With Facebook notify service, you can send your notifications to your facebook messenger with help of your facebook page. You have to create a [Facebook Page and App](https://developers.facebook.com/docs/messenger-platform/guides/quick-start) for this service. You can control it by calling the notify service [as described here](/components/notify/). It will send a message on messenger to user specified by **target** on behalf of your page. See the [quick start](https://developers.facebook.com/docs/messenger-platform/guides/quick-start) guide for more information.
|
With Facebook notify service, you can send your notifications to your Facebook messenger with help of your Facebook page. You have to create a [Facebook Page and App](https://developers.facebook.com/docs/messenger-platform/guides/quick-start) for this service. You can control it by calling the notify service [as described here](/components/notify/). It will send a message on messenger to user specified by **target** on behalf of your page. See the [quick start](https://developers.facebook.com/docs/messenger-platform/guides/quick-start) guide for more information.
|
||||||
The phone number used in **target** should be registered with facebook messenger. Phone number of the recipient should be in +1(212)555-2368 format. If your app is not approved by facebook then the recipient should by either admin, developer or tester for your facebook app. [More...](https://developers.facebook.com/docs/messenger-platform/send-api-reference#phone_number)
|
The phone number used in **target** should be registered with Facebook messenger. Phone number of the recipient should be in +1(212)555-2368 format. If your app is not approved by Facebook then the recipient should by either admin, developer or tester for your Facebook app. [More information](https://developers.facebook.com/docs/messenger-platform/send-api-reference#phone_number) about the phone number.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example automation notification entry
|
# Example automation notification entry
|
||||||
|
@ -34,3 +34,5 @@ Configuration variables:
|
|||||||
- **hostname** (*Optional*): The hostname or IP address of the GNTP server to contact.
|
- **hostname** (*Optional*): The hostname or IP address of the GNTP server to contact.
|
||||||
- **password** (*Optional*): The password to authenticate to the GNTP server with.
|
- **password** (*Optional*): The password to authenticate to the GNTP server with.
|
||||||
- **port** (*Optional*): The port that the GNTP server runs on. The specification states that servers should not allow users to use any port other than 23053 but `port` is provided here just in case.
|
- **port** (*Optional*): The port that the GNTP server runs on. The specification states that servers should not allow users to use any port other than 23053 but `port` is provided here just in case.
|
||||||
|
|
||||||
|
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
|
||||||
|
@ -59,8 +59,6 @@ To use notifications, please see the [getting started with automation page](/get
|
|||||||
### {% linkable_title URL support %}
|
### {% linkable_title URL support %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
...
|
|
||||||
|
|
||||||
action:
|
action:
|
||||||
service: notify.NOTIFIER_NAME
|
service: notify.NOTIFIER_NAME
|
||||||
data:
|
data:
|
||||||
@ -70,5 +68,23 @@ action:
|
|||||||
url: google.com
|
url: google.com
|
||||||
```
|
```
|
||||||
|
|
||||||
- **url** (*Required*): Page URL to send with pushbullet.
|
- **url** (*Required*): Page URL to send with Pushbullet.
|
||||||
|
|
||||||
|
### {% linkable_title File support %}
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
action:
|
||||||
|
service: notify.NOTIFIER_NAME
|
||||||
|
data:
|
||||||
|
title: Send file
|
||||||
|
message: This is a file
|
||||||
|
data:
|
||||||
|
file: /path/to/my/file
|
||||||
|
```
|
||||||
|
|
||||||
|
- **file** (*Required*): File to send with Pushbullet.
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
Don't forget to [whitelist external directories](/docs/configuration/basic/), so Home Assistant has access to them.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ notify:
|
|||||||
sender_name: My Home Assistant
|
sender_name: My Home Assistant
|
||||||
```
|
```
|
||||||
|
|
||||||
Keep in mind that Google has some extra layers of protection which need special attention (Hint: 'Less secure apps').
|
Keep in mind that Google has some extra layers of protection which need special attention (Hint: 'Less secure apps'). If you have 2-step verification enabled on your Google account, you'll need to use [an application-specific password](https://support.google.com/mail/answer/185833?hl=en).
|
||||||
|
|
||||||
To use the SMTP notification, refer to it in an automation or script like in this example:
|
To use the SMTP notification, refer to it in an automation or script like in this example:
|
||||||
|
|
||||||
|
@ -12,10 +12,9 @@ ha_category: Front end
|
|||||||
ha_release: 0.44
|
ha_release: 0.44
|
||||||
---
|
---
|
||||||
|
|
||||||
The `rss_feed_template` component can export any information from Home Assistant as static RSS feed. This can be used to display those information on several devices using RSS readers. While native apps for Home Assistant are not widely available, native RSS readers exists for almost any platform.
|
The `rss_feed_template` component can export any information from Home Assistant as a static RSS feed. This can be used to display that information on many types of devices using an RSS reader. While native apps for Home Assistant are not widely available, native RSS readers exist for almost any platform.
|
||||||
|
|
||||||
E.g. on android, the app "Simple RSS Widget" can be used to display temperatures on the home screen.
|
|
||||||
|
|
||||||
|
For example, on Android, the app "Simple RSS Widget" can be used to display temperatures on the home screen.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yml entry
|
||||||
@ -30,9 +29,9 @@ rss_feed_template:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **requires_api_password:** (*Optional*): If true and an api password is set, the password must be passed via '?api_password=...' parameter (Default: True)
|
- **requires_api_password:** (*Optional*): If true and an API password is set, the password must be passed via '?api_password=...' parameter (Default: True)
|
||||||
- **feed_id** (*Required*): The key is used as id of the feed. The feed can be accessed at /api/rss_template/feed_id (example: 'garden')
|
- **feed_id** (*Required*): The key is used as the ID of the feed. The feed can be accessed at /api/rss_template/feed_id (example: 'garden')
|
||||||
- **title** (*Optional*): The title of the feed, which is parsed as [template](/topics/templating/).
|
- **title** (*Optional*): The title of the feed, which is parsed as [template](/topics/templating/).
|
||||||
- **items** (*Required*): A list of feed items
|
- **items** (*Required*): A list of feed items.
|
||||||
- **items/title** (*Optional*): The title of the item, which is parsed as [template](/topics/templating/).
|
- **items/title** (*Optional*): The title of the item, which is parsed as [template](/topics/templating/).
|
||||||
- **items/description** (*Optional*): The description of the item, which is parsed as [template](/topics/templating/).
|
- **items/description** (*Optional*): The description of the item, which is parsed as [template](/topics/templating/).
|
||||||
|
@ -24,4 +24,4 @@ sensor:
|
|||||||
- platform: moon
|
- platform: moon
|
||||||
```
|
```
|
||||||
This sensor will return one of the following values:
|
This sensor will return one of the following values:
|
||||||
`Full moon`, `Last quarter`, `First quarter` or `New moon`.
|
`New moon`, `Waxing crescent`, `First quarter`, `Waxing gibbous`, `Full moon`, `Waning gibbous`, `Last quarter` or `Waning crescent` .
|
||||||
|
@ -47,6 +47,6 @@ The following conditions are available by device:
|
|||||||
- Nest Protect:
|
- Nest Protect:
|
||||||
- co\_status
|
- co\_status
|
||||||
- smoke\_status
|
- smoke\_status
|
||||||
- batter\_health
|
- battery\_health
|
||||||
- Nest Camera: none
|
- Nest Camera: none
|
||||||
|
|
||||||
|
@ -30,3 +30,7 @@ Configuration variables:
|
|||||||
- **host** (*Required*): The IP address or hostname of your Open Hardware Monitor.
|
- **host** (*Required*): The IP address or hostname of your Open Hardware Monitor.
|
||||||
- **port** (*Optional*): The port of your Open Hardware Monitor API. Default to 8085.
|
- **port** (*Optional*): The port of your Open Hardware Monitor API. Default to 8085.
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
OpenHardwareMonitor must be running on the host, with "Remote web server" active.
|
||||||
|
You also need to open an inbound port for (TPC 8085) in the advanced firewall settings.
|
||||||
|
</p>
|
||||||
|
@ -34,11 +34,17 @@ Configuration variables:
|
|||||||
A simple way to generate a `token` for a new sensor is to run this snippet of python code in your Home Assistant virtual environment:
|
A simple way to generate a `token` for a new sensor is to run this snippet of python code in your Home Assistant virtual environment:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ pip install pyotp
|
$ pip3 install pyotp
|
||||||
$ python -c 'import pyotp; print("Token: " + pyotp.random_base32())'
|
$ python3 -c 'import pyotp; print("Token:", pyotp.random_base32())'
|
||||||
Token: IHEDPEBEVA2WVHB7
|
Token: IHEDPEBEVA2WVHB7
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To run in a Docker container:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ docker exec -it home-assistant python -c 'import pyotp; print("Token:", pyotp.random_base32())'
|
||||||
|
Token: IHEDPEBEVA2WVHB7
|
||||||
|
```
|
||||||
Copy and paste the token into your Home Assistant configuration and add it to your OTP generator. Verify that they generate the same code.
|
Copy and paste the token into your Home Assistant configuration and add it to your OTP generator. Verify that they generate the same code.
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
|
@ -14,7 +14,7 @@ ha_release: 0.51
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `shodan` sensor platform is displaying the total of result of a [Shodan](https://pi-hole.net/) query.
|
The `shodan` sensor platform is displaying the total of result of a [Shodan](https://www.shodan.io/) query.
|
||||||
|
|
||||||
Use "Show API Key" in the upper right corner when you are logged in or got to your "My Account" page to retrieve your API key.
|
Use "Show API Key" in the upper right corner when you are logged in or got to your "My Account" page to retrieve your API key.
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Sensor
|
ha_category: Sensor
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,10 +23,6 @@ switch:
|
|||||||
- platform: broadlink
|
- platform: broadlink
|
||||||
host: IP_ADDRESS
|
host: IP_ADDRESS
|
||||||
mac: 'MAC_ADDRESS'
|
mac: 'MAC_ADDRESS'
|
||||||
switches:
|
|
||||||
reciever:
|
|
||||||
command_on: 'switch_packet on'
|
|
||||||
command_off: 'switch_packet off'
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
@ -35,7 +31,7 @@ Configuration variables:
|
|||||||
- **mac** (*Required*): Device MAC address.
|
- **mac** (*Required*): Device MAC address.
|
||||||
- **timeout** (*Optional*): Timeout in seconds for the connection to the device.
|
- **timeout** (*Optional*): Timeout in seconds for the connection to the device.
|
||||||
- **friendly_name** (*Optional*): The name used to display the switch in the frontend.
|
- **friendly_name** (*Optional*): The name used to display the switch in the frontend.
|
||||||
- **type** (*Optional*): Switch type. Choose one from: `rm`, `rm2`, `rm_mini`, `rm_pro_phicomm`, `rm2_home_plus`, `rm2_home_plus_gdt`, `rm2_pro_plus`, `rm2_pro_plus2`, `rm2_pro_plus_bl`, `rm_mini_shate`, `sp1`, `sp2`, `honeywell_sp2`, `sp3`, `spmini2` or `spminiplus`.
|
- **type** (*Required for some models*): Switch type. Choose one from: `rm`, `rm2`, `rm_mini`, `rm_pro_phicomm`, `rm2_home_plus`, `rm2_home_plus_gdt`, `rm2_pro_plus`, `rm2_pro_plus2`, `rm2_pro_plus_bl`, `rm_mini_shate`, `sp1`, `sp2`, `honeywell_sp2`, `sp3`, `spmini2` or `spminiplus`.
|
||||||
- **switches** (*Optional*): The array that contains all switches.
|
- **switches** (*Optional*): The array that contains all switches.
|
||||||
- **identifier** (*Required*): Name of the command switch as slug. Multiple entries are possible.
|
- **identifier** (*Required*): Name of the command switch as slug. Multiple entries are possible.
|
||||||
- **friendly_name** (*Optional*): The name used to display the switch in the frontend.
|
- **friendly_name** (*Optional*): The name used to display the switch in the frontend.
|
||||||
|
@ -9,6 +9,8 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
logo: mystrom.png
|
logo: mystrom.png
|
||||||
ha_category: Switch
|
ha_category: Switch
|
||||||
|
ha_release: 0.9
|
||||||
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,11 +13,11 @@ ha_iot_class: "Local Push"
|
|||||||
logo: home-assistant.png
|
logo: home-assistant.png
|
||||||
---
|
---
|
||||||
|
|
||||||
The `template` platform creates switches that combine components.
|
The `template` platform creates switches that combines components.
|
||||||
|
|
||||||
For example, if you have a garage door with a toggle switch that operates the motor and a sensor that allows you know whether the door is open or closed, you can combine these into a switch that knows whether the garage door is open or closed.
|
For example, if you have a garage door with a toggle switch that operates the motor and a sensor that allows you know whether the door is open or closed, you can combine these into a switch that knows whether the garage door is open or closed.
|
||||||
|
|
||||||
This can simplify the gui, and make it easier to write automations. You can mark the components you have combined as `hidden` so they don't appear themselves.
|
This can simplify the GUI and make it easier to write automations. You can mark the components you have combined as `hidden` so they don't appear themselves.
|
||||||
|
|
||||||
To enable Template switches in your installation, add the following to your `configuration.yaml` file:
|
To enable Template switches in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -48,8 +48,8 @@ Configuration variables:
|
|||||||
|
|
||||||
## {% linkable_title Considerations %}
|
## {% linkable_title Considerations %}
|
||||||
|
|
||||||
If you are using the state of a platform that takes extra time to load, the template switch may get an 'unknown' state during startup. This results in error messages in your log file until that platform has completed loading. If you use is_state() function in your template, you can avoid this situation. For example, you would replace {% raw %}'{{ states.switch.source.state }}'{% endraw %} with this equivalent that returns true/false and never gives an unknown result:
|
If you are using the state of a platform that takes extra time to load, the template switch may get an 'unknown' state during startup. This results in error messages in your log file until that platform has completed loading. If you use `is_state()` function in your template, you can avoid this situation. For example, you would replace {% raw %}`{{ states.switch.source.state }}`{% endraw %} with this equivalent that returns true/false and never gives an unknown result:
|
||||||
{% raw %}'{{ is_state('switch.source', 'on') }}'{% endraw %}
|
{% raw %}`{{ is_state('switch.source', 'on') }}`{% endraw %}
|
||||||
|
|
||||||
## {% linkable_title Examples %}
|
## {% linkable_title Examples %}
|
||||||
|
|
||||||
@ -128,4 +128,3 @@ switch:
|
|||||||
entity_id: cover.garage_door
|
entity_id: cover.garage_door
|
||||||
icon_template: {% raw %}"{% if is_state('cover.garage_door', 'open') %}mdi:garage-open{% else %}mdi:garage{% endif %}"{% endraw %}
|
icon_template: {% raw %}"{% if is_state('cover.garage_door', 'open') %}mdi:garage-open{% else %}mdi:garage{% endif %}"{% endraw %}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Switch
|
ha_category: Switch
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,6 +18,9 @@ The `tradfri` component supports for the IKEA Trådfri (Tradfri) gateway. The ga
|
|||||||
|
|
||||||
For this to work, you need to install a modified lib-coap library.
|
For this to work, you need to install a modified lib-coap library.
|
||||||
|
|
||||||
|
<p class='note warning'>
|
||||||
|
This component does **not** work on Windows, as the modified lib-coap doesn't exists for Windows.
|
||||||
|
</p>
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
If you are using [Hass.io](/hassio/) then just move forward to the configuration as all requirements are already fullfilled.
|
If you are using [Hass.io](/hassio/) then just move forward to the configuration as all requirements are already fullfilled.
|
||||||
</p>
|
</p>
|
||||||
|
@ -11,9 +11,9 @@ logo: home-assistant.png
|
|||||||
ha_category: Other
|
ha_category: Other
|
||||||
---
|
---
|
||||||
|
|
||||||
The `updater` component will check daily for new releases. It will show a badge in the frontend if a new version was found.
|
The `updater` component will check daily for new releases. It will show a badge in the frontend if a new version is found.
|
||||||
|
|
||||||
The updater component will also collect basic information about the running Home Assistant instance and its environment. The information includes the current Home Assistant version, the timezone, Python version and operating system information. No identifiable information (i.e. IP address, GPS coordinates, etc.) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python [source code](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/updater.py#L91). For further information about the Updater's data please check the [detailed overview](/docs/backend/updater/).
|
The updater component will also collect basic information about the running Home Assistant instance and its environment. The information includes the current Home Assistant version, the time zone, Python version and operating system information. No identifiable information (i.e., IP address, GPS coordinates, etc.) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python [source code](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/updater.py#L91). For further information about the Updater's data, please check the [detailed overview](/docs/backend/updater/).
|
||||||
|
|
||||||
To integrate this into Home Assistant, add the following section to your `configuration.yaml` file:
|
To integrate this into Home Assistant, add the following section to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ Tell the vacuum cleaner to do a spot clean-up.
|
|||||||
|
|
||||||
#### {% linkable_title Service `vacuum/set_fanspeed` %}
|
#### {% linkable_title Service `vacuum/set_fanspeed` %}
|
||||||
|
|
||||||
Set the fan speed of the botvac. The `fanspeed` can be a label, as `balanced` or `turbo`, or be a number, it depends of the `vacuum` platform.
|
Set the fan speed of the botvac. The `fanspeed` can be a label, as `balanced` or `turbo`, or be a number; it depends on the `vacuum` platform.
|
||||||
|
|
||||||
| Service data attribute | Optional | Description |
|
| Service data attribute | Optional | Description |
|
||||||
|---------------------------|----------|-------------------------------------------------------|
|
|---------------------------|----------|-------------------------------------------------------|
|
||||||
|
@ -12,20 +12,18 @@ ha_category: Vacuum
|
|||||||
ha_release: 0.51
|
ha_release: 0.51
|
||||||
---
|
---
|
||||||
|
|
||||||
The `roomba` component allows you to control your [Roomba](http://www.irobot.com/For-the-Home/Vacuuming/Roomba.aspx).
|
The `roomba` component allows you to control your [iRobot Roomba](http://www.irobot.com/For-the-Home/Vacuuming/Roomba.aspx) vacuum.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
This platform has only been tested with an iRobot Roomba 980, but should work find
|
This platform has only been tested with an iRobot Roomba 980 but should work find with any Wi-Fi enabled Roomba like the 690, 890 or the 960.
|
||||||
with any Wi-Fi enabled Roomba like the 690, 890 or the 960.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
To add your roomba vacuum to your installation, add the following to your `configuration.yaml` file:
|
To add your Roomba vacuum to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
vacuum:
|
vacuum:
|
||||||
- platform: roomba
|
- platform: roomba
|
||||||
name: My Roomba
|
|
||||||
host: IP_ADDRESS_OR_HOSTNAME
|
host: IP_ADDRESS_OR_HOSTNAME
|
||||||
username: BLID
|
username: BLID
|
||||||
password: PASSWORD
|
password: PASSWORD
|
||||||
@ -34,16 +32,16 @@ vacuum:
|
|||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **host** (*Required*): Hostname or IP address of the Roomba.
|
- **host** (*Required*): Hostname or IP address of the Roomba.
|
||||||
- **username** (*Required*): Username (BLID).
|
- **username** (*Required*): The username (BLID) fro your device.
|
||||||
- **password** (*Required*): Password.
|
- **password** (*Required*): The password for your device.
|
||||||
- **certificate** (*Optional*): Path to your certificate store (Default: `/etc/ssl/certs/ca-certificates.crt`)
|
- **name** (*Optional*): The name of the vacuum.
|
||||||
- **continuous** (*Optional*): Whether to operate in continuous mode (Default: `True`).
|
- **certificate** (*Optional*): Path to your certificate store. Defaults to `/etc/ssl/certs/ca-certificates.crt`.
|
||||||
|
- **continuous** (*Optional*): Whether to operate in continuous mode. Defaults to `True`.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
The Roomba's MQTT server only allows a single connection. Enabling continuous
|
The Roomba's MQTT server only allows a single connection. Enabling continuous mode will force the App to connect via the cloud to your Roomba. [More info here](https://github.com/NickWaterton/Roomba980-Python#firmware-2xx-notes)
|
||||||
mode will force the App to connect via the cloud to your Roomba. [More info here](https://github.com/NickWaterton/Roomba980-Python#firmware-2xx-notes)
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
### Retrieving your credentials
|
### {% linkable_title Retrieving your credentials %}
|
||||||
|
|
||||||
Please refer to [here](https://github.com/NickWaterton/Roomba980-Python#how-to-get-your-usernameblid-and-password) or [here](https://github.com/koalazak/dorita980#how-to-get-your-usernameblid-and-password) to retrieve both the BLID (username) and the password.
|
Please refer to [here](https://github.com/NickWaterton/Roomba980-Python#how-to-get-your-usernameblid-and-password) or [here](https://github.com/koalazak/dorita980#how-to-get-your-usernameblid-and-password) to retrieve both the BLID (username) and the password.
|
||||||
|
@ -34,17 +34,17 @@ $ sudo su -s /bin/bash homeassistant
|
|||||||
$ source /srv/homeassistant/bin/activate
|
$ source /srv/homeassistant/bin/activate
|
||||||
```
|
```
|
||||||
|
|
||||||
In order to fetch the token follow these instructions depending on your mobile phone platform.
|
To fetch the token follow these instructions depending on your mobile phone platform.
|
||||||
|
|
||||||
### Windows and Android
|
### Windows and Android
|
||||||
1. Configure the robot with the Mi-Home app.
|
1. Configure the robot with the Mi-Home app.
|
||||||
2. Enable developer mode and USB debugging on the Android phone and plug it into the computer.
|
2. Enable developer mode and USB debugging on the Android phone and plug it into the computer.
|
||||||
3. Get ADB tool for Windows : https://developer.android.com/studio/releases/platform-tools.html
|
3. Get ADB tool for Windows: https://developer.android.com/studio/releases/platform-tools.html
|
||||||
4. Create a backup of the application com.xiaomi.smarthome:
|
4. Create a backup of the application com.xiaomi.smarthome:
|
||||||
```bash
|
```bash
|
||||||
.\adb backup -noapk com.xiaomi.smarthome -f backup.ab
|
.\adb backup -noapk com.xiaomi.smarthome -f backup.ab
|
||||||
```
|
```
|
||||||
5. If you have this message : "More than one device or emulator", use this command to list all devices:
|
5. If you have this message: "More than one device or emulator", use this command to list all devices:
|
||||||
```bash
|
```bash
|
||||||
.\adb devices
|
.\adb devices
|
||||||
```
|
```
|
||||||
@ -53,14 +53,14 @@ and execute this command:
|
|||||||
.\adb -s DEVICEID backup -noapk com.xiaomi.smarthome -f backup.ab # (with DEVICEID the device id from the previous command)
|
.\adb -s DEVICEID backup -noapk com.xiaomi.smarthome -f backup.ab # (with DEVICEID the device id from the previous command)
|
||||||
```
|
```
|
||||||
6. On the phone, you must confirm the backup. DO NOT enter any password and press button to make the backup.
|
6. On the phone, you must confirm the backup. DO NOT enter any password and press button to make the backup.
|
||||||
7. Get ADB Backup Extractor : https://sourceforge.net/projects/adbextractor/
|
7. Get ADB Backup Extractor: https://sourceforge.net/projects/adbextractor/
|
||||||
8. Extract All files from the backup:
|
8. Extract All files from the backup:
|
||||||
```bash
|
```bash
|
||||||
java.exe -jar ../android-backup-extractor/abe.jar unpack backup.ab backup.tar ""
|
java.exe -jar ../android-backup-extractor/abe.jar unpack backup.ab backup.tar ""
|
||||||
```
|
```
|
||||||
9. Unzip the ".tar" file.
|
9. Unzip the ".tar" file.
|
||||||
10. Open the sqlite DB miio2.db with a tool like SQLite Manager extension for FireFox.
|
10. Open the SQLite DB miio2.db with a tool like SQLite Manager extension for FireFox.
|
||||||
11. Get token from "devicerecord" table.
|
11. Get the token from "devicerecord" table.
|
||||||
|
|
||||||
|
|
||||||
### macOS and iOS
|
### macOS and iOS
|
||||||
@ -122,7 +122,7 @@ Remote control the vacuum cleaner, make sure you first set it in remote control
|
|||||||
|
|
||||||
#### {% linkable_title Service `vacuum/xiaomi_remote_control_move_step` %}
|
#### {% linkable_title Service `vacuum/xiaomi_remote_control_move_step` %}
|
||||||
|
|
||||||
Use this call to enter the remote control mode, make one movement, and stop and exit the remote control mode.
|
Use this call to enter the remote control mode, make one move, and stop and exit the remote control mode.
|
||||||
|
|
||||||
| Service data attribute | Optional | Description |
|
| Service data attribute | Optional | Description |
|
||||||
|---------------------------|----------|-------------------------------------------------------|
|
|---------------------------|----------|-------------------------------------------------------|
|
||||||
|
@ -33,9 +33,9 @@ Configuration variables:
|
|||||||
|
|
||||||
### {% linkable_title Configure devices %}
|
### {% linkable_title Configure devices %}
|
||||||
|
|
||||||
By default your switches will be added to Home Assistant as switches, however if some of them are light switches, you can tell Home Assistant this using the optional `lights` parameter as shown below.
|
By default your switches will be added to Home Assistant as switches, however, if some of them are light switches, you can tell Home Assistant this using the optional `lights` parameter as shown below.
|
||||||
|
|
||||||
Vera imports detailed Z-Wave devices into Home Assistant. This can include system devices and other devices that you don't use, you can tell Home Assistant not to load these devices using the `exclude:` parameter as shown below.
|
Vera imports detailed Z-Wave devices into Home Assistant. This can include system devices and other devices that you don't use; you can tell Home Assistant not to load these devices using the `exclude:` parameter as shown below.
|
||||||
|
|
||||||
You can find the Vera device id either via the advanced properties of the device in the Vera UI or by checking the `Vera Device Id` attribute on each device imported into Home Assistant (under the developer tools).
|
You can find the Vera device id either via the advanced properties of the device in the Vera UI or by checking the `Vera Device Id` attribute on each device imported into Home Assistant (under the developer tools).
|
||||||
|
|
||||||
@ -50,4 +50,4 @@ vera:
|
|||||||
|
|
||||||
### {% linkable_title Using Z-Wave devices in automation %}
|
### {% linkable_title Using Z-Wave devices in automation %}
|
||||||
|
|
||||||
If you want to use a Z-Wave device from the Vera controller in Home Assistant automation, you'll need the entity id. In the Home Assistant UI you'll find all entities listed under the <img src='/images/screenshots/developer-tool-states-icon.png' alt='service developer tool icon' class="no-shadow" height="38" /> icon of the Developer Tools section. Look for entities that contain 'Vera Device Id' in their attributes, you'll find the entity id on the left.
|
If you want to use a Z-Wave device from the Vera controller in Home Assistant automation, you'll need the entity id. In the Home Assistant UI you'll find all entities listed under the <img src='/images/screenshots/developer-tool-states-icon.png' alt='service developer tool icon' class="no-shadow" height="38" /> icon of the Developer Tools section. Look for entities that contain 'Vera Device Id' in their attributes, and you'll find the entity id on the left.
|
||||||
|
@ -14,7 +14,7 @@ ha_iot_class: "Cloud Polling"
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `volvooncall` platform offers integrates with the [Volvo On Call](http://www.volvocars.com/intl/own/connectivity/volvo-on-call) cloud service and offers presence detection as well as sensors such as odometer and fuel level.
|
The `volvooncall` platform offers integration with the [Volvo On Call](http://www.volvocars.com/intl/own/connectivity/volvo-on-call) cloud service and offers presence detection as well as sensors such as odometer and fuel level.
|
||||||
|
|
||||||
To use Volvo On Call in your installation, add the following to your `configuration.yaml` file:
|
To use Volvo On Call in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ ha_release: "0.49"
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `wake_on_lan` component enables the ability to send _magic packets_ to [Wake on LAN](https://en.wikipedia.org/wiki/Wake-on-LAN) capable devices, in order to turn them on.
|
The `wake_on_lan` component enables the ability to send _magic packets_ to [Wake on LAN](https://en.wikipedia.org/wiki/Wake-on-LAN) capable devices, to them on.
|
||||||
|
|
||||||
To use this component in your installation, add the following to your `configuration.yaml` file:
|
To use this component in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
@ -13,10 +13,10 @@ ha_release: 0.47
|
|||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands.
|
The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as a source for current meteorological data for your location. The weather forecast is delivered by Buienradar, who provides a web service that provides detailed weather information for users in The Netherlands.
|
||||||
The relevant weatherstation used will be automatically selected based on the location specified in the Home Assistant configuration (or in the buienradar weather/sensor component). A map of all available weatherstations can be found [here](https://www.google.com/maps/d/embed?mid=1NivHkTGQUOs0dwQTnTMZi8Uatj0).
|
The relevant weather station used will be automatically selected based on the location specified in the Home Assistant configuration (or in the Buienradar weather/sensor component). A map of all available weather stations can be found [here](https://www.google.com/maps/d/embed?mid=1NivHkTGQUOs0dwQTnTMZi8Uatj0).
|
||||||
|
|
||||||
To add the buienradar weather to your installation, add the following to your `configuration.yaml` file:
|
To add the Buienradar weather to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
@ -26,9 +26,9 @@ weather:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **name** (*Optional*): You can specify a name of the component, but do not have to. If you specify a name, the weather component will get an entity name of 'weather.[name]'; if no name is specified, it will try to set its name to 'weather.BR_[stationname]'. However at the moment in time the entity is created, no data has been retrieved yet, so the entity will get named 'weather.BR_unknown_station'. Later the station name will be known and get updated, but the entity name remains.
|
- **name** (*Optional*): You can specify a name of the component, but do not have to. If you specify a name, the weather component will get an entity name of 'weather.[name]'; if no name is specified, it will try to set its name to 'weather.BR_[stationname]'. However at the moment in time, the entity is created, no data has been retrieved yet, so the entity will get named 'weather.BR_unknown_station'. Later the station name will be known and get updated, but the entity name remains.
|
||||||
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration but can be overridden/changed in this component to select a different location for Buienradar.
|
||||||
- **longitude**(*Optional*): Longitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
- **longitude**(*Optional*): Longitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration but can be overridden/changed in this component to select a different location for Buienradar.
|
||||||
- **forecast** (*Optional*): 'True' to add a temperature forecast, 'False' to suppress it.
|
- **forecast** (*Optional*): 'True' to add a temperature forecast, 'False' to suppress it.
|
||||||
|
|
||||||
|
|
||||||
@ -51,4 +51,4 @@ The weather platform is easier to configure but less customisable.
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
[Usage statement:](https://www.buienradar.nl/overbuienradar/gratis-weerdata)
|
[Usage statement:](https://www.buienradar.nl/overbuienradar/gratis-weerdata)
|
||||||
> Buienradar makes free weatherdata available for use by individuals and businesses (website/intranet). The use of the weatherdata is allowed for **non-commercial purposes**. Please refer to the full usage statement linked above to confirm your usage or to request permission.
|
> Buienradar makes free weather data available for use by individuals and businesses (website/intranet). The use of the weather data is allowed for **non-commercial purposes**. Please refer to the full usage statement linked above to confirm your use or to request permission.
|
||||||
|
@ -9,8 +9,8 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
---
|
---
|
||||||
|
|
||||||
The `weather` platforms are gathering meteorological information from web services and displays the conditions and other details about the weather at the given location.
|
The `weather` platforms are gathering meteorological information from web services and display the conditions and other details about the weather at the given location.
|
||||||
|
|
||||||
Home Assistant currently supports free web services and such which requires a registration. Please check the sidebar for a full list of supported `weather` platforms.
|
Home Assistant currently supports free web services and such which require a registration. Please check the sidebar for a full list of supported `weather` platforms.
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ ha_iot_class: "Cloud Polling"
|
|||||||
|
|
||||||
The `metoffice` weather platform uses the Met Office's [DataPoint API][datapoint] for weather data.
|
The `metoffice` weather platform uses the Met Office's [DataPoint API][datapoint] for weather data.
|
||||||
|
|
||||||
To add the Met Office weather platform to your installation you'll need to register for a free api key at the link above and then add the following to your `configuration.yaml` file:
|
To add the Met Office weather platform to your installation, you'll need to register for a free API key at the link above and then add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
weather:
|
weather:
|
||||||
|
@ -13,7 +13,7 @@ ha_release: 0.32
|
|||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `openweathermap` weather platform uses [OpenWeatherMap](http://openweathermap.org/) as an source for current meteorological data for your location.
|
The `openweathermap` weather platform uses [OpenWeatherMap](http://openweathermap.org/) as a source for current meteorological data for your location.
|
||||||
|
|
||||||
You need an API key which is free but requires a [registration](http://home.openweathermap.org/users/sign_up).
|
You need an API key which is free but requires a [registration](http://home.openweathermap.org/users/sign_up).
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ Configuration variables:
|
|||||||
|
|
||||||
- **api_key** (*Required*): Your API key for http://openweathermap.org/.
|
- **api_key** (*Required*): Your API key for http://openweathermap.org/.
|
||||||
- **name** (*Optional*): Name to use in the frontend.
|
- **name** (*Optional*): Name to use in the frontend.
|
||||||
- **latitude** (*Optional*): Latitude of the location to display the weather. Defaults to the latitude in your your `configuration.yaml` file.
|
- **latitude** (*Optional*): Latitude of the location to display the weather. Defaults to the latitude in your `configuration.yaml` file.
|
||||||
- **longitude** (*Optional*): Longitude of the location to display the weather. Defaults to the longitude in your `configuration.yaml` file.
|
- **longitude** (*Optional*): Longitude of the location to display the weather. Defaults to the longitude in your `configuration.yaml` file.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
|
@ -13,13 +13,13 @@ ha_release: 0.47
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `yweather` platform uses [Yahoo Weather](https://www.yahoo.com/news/weather/) as an source for current meteorological data. This component will show you the condition and tempratures for max. 10 days.
|
The `yweather` platform uses [Yahoo Weather](https://www.yahoo.com/news/weather/) as a source for current meteorological data. This component will show you the condition and temperatures for max. 10 days.
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2000 signed calls per day.
|
Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2000 signed calls per day.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
The `woeid` (Where On Earth ID) for your location, as shown in the example below. You can find your WOEID by copying the numeric digits at the end of the URL for your location at [Yahoo Weather](https://www.yahoo.com/news/weather/). If you don't add a WOEID it generate it from Home Assistant's latitude and longitude.
|
The `woeid` (Where On Earth ID) for your location, as shown in the example below. You can find your WOEID by copying the numeric digits at the end of the URL for your location at [Yahoo Weather](https://www.yahoo.com/news/weather/). If you don't add a WOEID, it will be generated from Home Assistant's latitude and longitude.
|
||||||
|
|
||||||
To add Yahoo Weather to your installation, add the following to your `configuration.yaml` file:
|
To add Yahoo Weather to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
@ -15,14 +15,14 @@ ha_release: pre 0.7
|
|||||||
|
|
||||||
The `wemo` component is the main component to integrate various [Belkin WeMo](http://www.belkin.com/us/Products/home-automation/c/wemo-home-automation/) devices with Home Assistant.
|
The `wemo` component is the main component to integrate various [Belkin WeMo](http://www.belkin.com/us/Products/home-automation/c/wemo-home-automation/) devices with Home Assistant.
|
||||||
|
|
||||||
Supported devices will be automatically discovered if the discovery component is enabled. If you are not using the discovery component, loading the `wemo` component will scan for WeMo devices on the local network.
|
Supported devices will be automatically discovered if the discovery component is enabled. Loading the `wemo` component will scan the local network for WeMo devices, even if you are not using the discovery component
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
wemo:
|
wemo:
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternately, WeMo devices that are not discoverable can be statically configured. If you have WeMo devices on subnets other than where Home Assistant is running, and/or devices in a remote location reachable over a VPN, you will need to manually configure them. This is also useful if you wish to disable discovery for some wemos, even if they are local. Example static configuration:
|
Alternately, WeMo devices that are not discoverable can be statically configured. If you have WeMo devices on subnets other than where Home Assistant is running, or devices in a remote location reachable over a VPN, you will need to configure them manually. This is also useful if you wish to disable discovery for some WeMo's, even if they are local. Example static configuration:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
wemo:
|
wemo:
|
||||||
@ -33,6 +33,6 @@ wemo:
|
|||||||
|
|
||||||
Any WeMo devices that are not statically configured but reachable via discovery will still be added automatically.
|
Any WeMo devices that are not statically configured but reachable via discovery will still be added automatically.
|
||||||
|
|
||||||
Note that if you use this, you may want to configure your router (or whatever runs your DHCP server) to force your WeMo devices to use a static IP address. Check the DHCP section of your router configuration for this ability.
|
Note that if you use this, you may want to set up your router (or whatever runs your DHCP server) to force your WeMo devices to use a static IP address. Check the DHCP section of your router configuration for this ability.
|
||||||
|
|
||||||
If the device doesn't seem to work and all you see is the state "unavailable" on your dashboard, check that your firewall doesn't block incoming request on port 8989 since this is the address to which the WeMo devices sends their update.
|
If the device doesn't seem to work and all you see is the state "unavailable" on your dashboard, check that your firewall doesn't block incoming request on port 8989 since this is the address to which the WeMo devices send their update.
|
||||||
|
@ -22,14 +22,14 @@ ha_release: pre 0.7
|
|||||||
|
|
||||||
Home Assistant integrates with the Wink API and automatically sets up any switches, lights, locks, fans, climate devices, covers, sensors, and alarms.
|
Home Assistant integrates with the Wink API and automatically sets up any switches, lights, locks, fans, climate devices, covers, sensors, and alarms.
|
||||||
|
|
||||||
Check the related components pages for actual devices that are support.
|
Check the related components pages for actual devices that are supported.
|
||||||
|
|
||||||
Home Assistant offers multiple ways to authenticate to the Wink API. Each authentication method is described below.
|
Home Assistant offers multiple ways to authenticate to the Wink API. Each authentication method is described below.
|
||||||
|
|
||||||
### Authenticate using [developer.wink.com](https://developer.wink.com)
|
### Authenticate using [developer.wink.com](https://developer.wink.com)
|
||||||
|
|
||||||
|
|
||||||
This method will require you to setup a developer account with Wink. This process can take a few days to get approved, but is the recommended form of authentication. If you would like to use Wink in Home Assistant while you wait, you can use the email and password authentication below.
|
This method will require you to setup a developer account with Wink. This process can take a few days to get approved but is the recommended form of authentication. If you would like to use Wink in Home Assistant while you wait, you can use the email and password authentication below.
|
||||||
|
|
||||||
This form of authentication doesn't require any settings in the configuration.yaml other than `wink:` this is because you will be guided through setup via the configurator on the frontend.
|
This form of authentication doesn't require any settings in the configuration.yaml other than `wink:` this is because you will be guided through setup via the configurator on the frontend.
|
||||||
|
|
||||||
@ -68,27 +68,27 @@ wink:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **email** (*Required for email/password auth or legacy oauth*): Your Wink login email.
|
- **email** (*Required for email/password auth or legacy OAuth*): Your Wink login email.
|
||||||
- **password** (*Required for email/password auth or legacy oauth*): Your Wink login password.
|
- **password** (*Required for email/password auth or legacy OAuth*): Your Wink login password.
|
||||||
- **client_id** (*Required for legacy oauth*): Your provided Wink client_id.
|
- **client_id** (*Required for legacy OAuth*): Your provided Wink client_id.
|
||||||
- **client_secret** (*Required for legacy oauth*): Your provided Wink client_secret.
|
- **client_secret** (*Required for legacy OAuth*): Your provided Wink client_secret.
|
||||||
- **local_control** (*Optional*): If set to `True` state changes for lights, locks, and switches will be issue to the local hub.
|
- **local_control** (*Optional*): If set to `True` state changes for lights, locks, and switches will be an issue to the local hub.
|
||||||
|
|
||||||
Local control:
|
Local control:
|
||||||
- Wink's local control API isn't officially documented and therefore could be broken by a hub update. For these reasons `local_control` defaults to `False`
|
- Wink's local control API isn't officially documented and therefore could be broken by a hub update. For these reasons `local_control` defaults to `False`.
|
||||||
|
|
||||||
- Using local control doesn't appear to make commands any quicker, but does function in an internet/Wink outage.
|
- Using local control doesn't appear to make commands any quicker, but does function in an internet/Wink outage.
|
||||||
|
|
||||||
- Local control is also only available for the Wink hub v1 and v2, not the Wink relay.
|
- Local control is also only available for the Wink hub v1 and v2, not the Wink relay.
|
||||||
|
|
||||||
- Local control isn't used during startup of Home Assistant, this means initial setup requires an active internet connection.
|
- Local control isn't used during start-up of Home Assistant; this means initial setup requires an active internet connection.
|
||||||
|
|
||||||
- Local control requests are first sent to the controlling hub. In the event that a request fails, that request will attempt to go online.
|
- Local control requests are first sent to the controlling hub. If a request fails, that request will attempt to go online.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
It is possible for the hub to get into a bad state where it stops accepting local control request. If this happens you will notice requests taking significantly longer as they are redirected online. This doesn't happen often, but when it does, it appears to be resolved by rebooting the hub.
|
It is possible for the hub to get into a bad state where it stops accepting local control request. If this happens, you will notice requests taking significantly longer as they are redirected online. This doesn't happen often, but when it does, it appears to be resolved by rebooting the hub.
|
||||||
|
|
||||||
The following error will be logged in the event that the hub is rejecting local requests.
|
The following error will be logged if the hub is rejecting local requests.
|
||||||
|
|
||||||
```
|
```
|
||||||
Error sending local control request. Sending request online
|
Error sending local control request. Sending request online
|
||||||
@ -98,7 +98,7 @@ Error sending local control request. Sending request online
|
|||||||
|
|
||||||
### {% linkable_title Service `refresh_state_from_wink` %}
|
### {% linkable_title Service `refresh_state_from_wink` %}
|
||||||
|
|
||||||
The Wink component only obtains the device states from the Wink API once, during startup. All updates after that are pushed via a third party called PubNub. On rare occasions were an update isn't pushed device states can be out of sync.
|
The Wink component only obtains the device states from the Wink API once, during startup. All updates after that are pushed via a third party called PubNub. On rare occasions where an update isn't pushed device states can be out of sync.
|
||||||
|
|
||||||
You can use the service wink/refresh_state_from_wink to pull the most recent state from the Wink API for all devices. If `local_control` is set to `True` states will be pulled from the devices controlling hub, not the online API.
|
You can use the service wink/refresh_state_from_wink to pull the most recent state from the Wink API for all devices. If `local_control` is set to `True` states will be pulled from the devices controlling hub, not the online API.
|
||||||
|
|
||||||
@ -107,6 +107,6 @@ You can use the service wink/refresh_state_from_wink to pull the most recent sta
|
|||||||
You can use the service wink/add_new_devices to pull any newly paired Wink devices to an already running instance of Home-Assistant. Any new devices will also be added if Home-Assistant is restarted.
|
You can use the service wink/add_new_devices to pull any newly paired Wink devices to an already running instance of Home-Assistant. Any new devices will also be added if Home-Assistant is restarted.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
The Wink hub, by default can only be accessed via the cloud. This means it requires an active internet connection and you will experience delays when controlling and updating devices (~3s).
|
The Wink hub, by default, can only be accessed via the cloud. This means it requires an active internet connection and you will experience delays when controlling and updating devices (~3s).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -10,15 +10,15 @@ footer: true
|
|||||||
logo: xiaomi.png
|
logo: xiaomi.png
|
||||||
ha_category: Hub
|
ha_category: Hub
|
||||||
ha_release: "0.50"
|
ha_release: "0.50"
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `xiaomi_gw` platform allows you to integrate the following [Xiaomi](http://www.mi.com/en/) devices into Home Assistant.
|
The `xiaomi` platform allows you to integrate the following [Xiaomi](http://www.mi.com/en/) devices into Home Assistant.
|
||||||
|
|
||||||
- Temperature and Humidity Sensor (old and new version)
|
- Temperature and Humidity Sensor (1st and 2nd generation)
|
||||||
- Motion Sensor (old and new version)
|
- Motion Sensor (1st and 2nd generation)
|
||||||
- Door and Window Sensor (old and new version)
|
- Door and Window Sensor (1st and 2nd generation)
|
||||||
- Button (old and new version)
|
- Button (1st and 2nd generation)
|
||||||
- Plug aka Socket (ZigBee version, reports power consumed, power load, state and if device in use)
|
- Plug aka Socket (ZigBee version, reports power consumed, power load, state and if device in use)
|
||||||
- Wall Plug (reports power consumed, power load and state)
|
- Wall Plug (reports power consumed, power load and state)
|
||||||
- Aqara Wall Switch (Single)
|
- Aqara Wall Switch (Single)
|
||||||
@ -96,7 +96,7 @@ Configuration variables:
|
|||||||
|
|
||||||
## {% linkable_title Services %}
|
## {% linkable_title Services %}
|
||||||
|
|
||||||
The gateway provides two services: `xiaomi.play_ringtone` and `xiaomi.stop_ringtone`. To play ringtones by Home Assistant the version of the gateway firmware must be `1.4.1_145` at least. A `ringtone_id` and `gw_mac` must be supplied. The parameter `ringtone_vol` (percent) is optional. Allowed values of the `ringtone_id` are:
|
The gateway provides two services: `xiaomi.play_ringtone` and `xiaomi.stop_ringtone`. To play ringtones by Home Assistant, the version of the gateway firmware must be `1.4.1_145` at least. A `ringtone_id` and `gw_mac` must be supplied. The parameter `ringtone_vol` (percent) is optional. Allowed values of the `ringtone_id` are:
|
||||||
|
|
||||||
- alarm ringtones [0-8]
|
- alarm ringtones [0-8]
|
||||||
- doorbell ring [10-13]
|
- doorbell ring [10-13]
|
||||||
@ -132,3 +132,20 @@ Automation example
|
|||||||
data:
|
data:
|
||||||
gw_mac: xxxxxxxxxxxx
|
gw_mac: xxxxxxxxxxxx
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### {% linkable_title Troubleshooting %}
|
||||||
|
|
||||||
|
**Connection problem**
|
||||||
|
|
||||||
|
```
|
||||||
|
2017-08-20 16:51:19 ERROR (SyncWorker_0) [homeassistant.components.xiaomi] No gateway discovered
|
||||||
|
2017-08-20 16:51:20 ERROR (MainThread) [homeassistant.setup] Setup failed for xiaomi: Component failed to initialize.
|
||||||
|
```
|
||||||
|
|
||||||
|
That means that Home Assistant is not getting any response from your Xiaomi gateway. Might be a local network problem or your firewall.
|
||||||
|
- Make sure you have enabled LAN access: https://community.home-assistant.io/t/beta-xiaomi-gateway-integration/8213/1832
|
||||||
|
- Turn off the firewall on the HA computer
|
||||||
|
- Try to leave the mac address blank.
|
||||||
|
- Try to set `discovery_retry: 10`
|
||||||
|
- Try to disable and then enable LAN access
|
||||||
|
@ -12,7 +12,7 @@ ha_category: "Other"
|
|||||||
ha_release: 0.18
|
ha_release: 0.18
|
||||||
---
|
---
|
||||||
|
|
||||||
The `zeroconf` component exposes your Home Assistant to the local network using [Zeroconf](https://en.wikipedia.org/wiki/Zero-configuration_networking). Zeroconf is also sometimes known as Bonjour, Rendezvous and Avahi.
|
The `zeroconf` component exposes your Home Assistant to the local network using [Zeroconf](https://en.wikipedia.org/wiki/Zero-configuration_networking). Zeroconf is also sometimes known as Bonjour, Rendezvous, and Avahi.
|
||||||
|
|
||||||
To integrate this into Home Assistant, add the following section to your `configuration.yaml` file:
|
To integrate this into Home Assistant, add the following section to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
@ -42,4 +42,4 @@ Configuration variables:
|
|||||||
- **usb_path** (*Required*): Path to the serial device for the radio.
|
- **usb_path** (*Required*): Path to the serial device for the radio.
|
||||||
- **database_path** (*Required*): Path to the database which will keep persistent network data.
|
- **database_path** (*Required*): Path to the database which will keep persistent network data.
|
||||||
|
|
||||||
To add new devices to the network, call the `permit` service on the `zha` domain, and then follow the device instructions.
|
To add new devices to the network, call the `permit` service on the `zha` domain, and then follow the device instructions for doing a scan or factory reset. In case you want to add Philips Hue bulbs that have previously been added to another bridge, have a look at: https://github.com/vanviegen/hue-thief
|
||||||
|
@ -13,7 +13,7 @@ ha_release: 0.12
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
[ZigBee](http://www.zigbee.org/what-is-zigbee/) integration for Home Assistant allows you to utilise modules such as the [XBee](http://www.digi.com/lp/xbee) as wireless General Purpose Input/Output (GPIO) devices. The component requires a local ZigBee device to be connected over a serial port. Through this it will send and receive commands to and from other devices on the ZigBee mesh network.
|
[ZigBee](http://www.zigbee.org/what-is-zigbee/) integration for Home Assistant allows you to utilize modules such as the [XBee](http://www.digi.com/lp/xbee) as wireless General Purpose Input/Output (GPIO) devices. The component requires a local ZigBee device to be connected to a serial port. Through this it will send and receive commands to and from other devices on the ZigBee mesh network.
|
||||||
|
|
||||||
There is currently support for the following device types within Home Assistant:
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
@ -40,18 +40,18 @@ zone 3:
|
|||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **name** (*Optional*): Friendly name of entry.
|
- **name** (*Optional*): Friendly name of the zone.
|
||||||
- **latitude** (*Required*): Latitude of the center point of the zone.
|
- **latitude** (*Required*): Latitude of the center point of the zone.
|
||||||
- **longitude** (*Required*): Longitude of the center point of the zone.
|
- **longitude** (*Required*): Longitude of the center point of the zone.
|
||||||
- **radius** (*Optional*): Optional radius in meters. Defaults to 100 meters.
|
- **radius** (*Optional*): Optional radius in meters. Defaults to 100 meters.
|
||||||
- **icon** (*Optional*): Optional icon to show instead of name.
|
- **icon** (*Optional*): Optional icon to show instead of name.
|
||||||
- **passive** (*Optional*): Optional boolean to only use the zone for automation and hide it from the UI and not use the zone for device tracker name. Defaults to false.
|
- **passive** (*Optional*): Optional boolean to only use the zone for automation and hide it from the UI and not use the zone for device tracker name. Defaults to false.
|
||||||
|
|
||||||
To find your latitude / longtitude of a certain place you can use for example [Google Maps](https://www.google.nl/maps/) or [Bing Maps](https://www.bing.com/maps). Just right click and copy the coordinates from there (Bing) or click on the "What is here?" (Google)
|
To find your latitude/longitude of a certain place you can use for example [Google Maps](https://www.google.nl/maps/) or [Bing Maps](https://www.bing.com/maps). Just right click and copy the coordinates from there (Bing) or click on the "What is here?" (Google)
|
||||||
|
|
||||||
#### {% linkable_title Home zone %}
|
#### {% linkable_title Home zone %}
|
||||||
|
|
||||||
If no configuration is given, the `zone` component will create a zone for home. This zone will use location given in the `configuration.yaml` file and have a radius of 100 meters. To override this, create a zone configuration and name it **'Home'**.
|
If no configuration is given, the `zone` component will create a zone for home. This zone will use location provided in the `configuration.yaml` file and have a radius of 100 meters. To override this, create a zone configuration and name it **'Home'**.
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
Devices that are in the zone **'Home'** will not appear on the map in the Home Assistant UI.
|
Devices that are in the zone **'Home'** will not appear on the map in the Home Assistant UI.
|
||||||
@ -63,4 +63,4 @@ It is preferred to pick an icon to use for your zone. Pick any icon that you can
|
|||||||
|
|
||||||
#### State
|
#### State
|
||||||
|
|
||||||
`zoning` is the state a `zone` has when it is configured. A `zone` doesn't have another state, all configured zones are `zoning` all the time.
|
`zoning` is the state a `zone` has when it is configured. A `zone` doesn't have another state; all configured zones are `zoning` all the time.
|
||||||
|
@ -70,6 +70,11 @@ automation:
|
|||||||
below: 25
|
below: 25
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<p class='note'>
|
||||||
|
Listing above and below together means the numeric_state has to be between the two values.
|
||||||
|
In the example above, a numeric_state that is 17.1-24.9 would fire this trigger.
|
||||||
|
</p>
|
||||||
|
|
||||||
### {% linkable_title State trigger %}
|
### {% linkable_title State trigger %}
|
||||||
|
|
||||||
Triggers when the state of tracked entities change. If only entity_id given will match all state changes, even if only state attributes change.
|
Triggers when the state of tracked entities change. If only entity_id given will match all state changes, even if only state attributes change.
|
||||||
@ -186,7 +191,7 @@ automation:
|
|||||||
|
|
||||||
### {% linkable_title Multiple triggers %}
|
### {% linkable_title Multiple triggers %}
|
||||||
|
|
||||||
When your want your automation rule to have multiple triggers, just prefix the first line of each trigger with a dash (-) and indent the lines following accordingly. Whenever one of the triggers fires, your rule is executed.
|
When your want your automation rule to have multiple triggers, just prefix the first line of each trigger with a dash (-) and indent the next lines accordingly. Whenever one of the triggers fires, your rule is executed.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
automation:
|
automation:
|
||||||
|
@ -10,11 +10,11 @@ footer: true
|
|||||||
redirect_from: /topics/secrets/
|
redirect_from: /topics/secrets/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `configuration.yaml` file is a plain-text file, thus it is readable by anyone who has access to the file. The file contains passwords and API tokens which need to be redacted if you want to share your configuration. By using `!secrets` you can remove any private information from you configuration files. This separation can also help you to keep easier track of your passwords and API keys. As they are all stored at one place and no longer spread across the `configuration.yaml` file or even multiple yaml files if you [split up your configuration](/topics/splitting_configuration/).
|
The `configuration.yaml` file is a plain-text file, thus it is readable by anyone who has access to the file. The file contains passwords and API tokens which need to be redacted if you want to share your configuration. By using `!secrets` you can remove any private information from you configuration files. This separation can also help you to keep easier track of your passwords and API keys. As they are all stored at one place and no longer spread across the `configuration.yaml` file or even multiple yaml files if you [split up your configuration](/docs/configuration/splitting_configuration/).
|
||||||
|
|
||||||
### {% linkable_title Using secrets.yaml %}
|
### {% linkable_title Using secrets.yaml %}
|
||||||
|
|
||||||
The workflow for moving private information to `secrets.yaml` is very similar to the [splitting of the configuration](/topics/splitting_configuration/). Create a `secrets.yaml` file in your Home assistant configuration directory (The location of the folder differs between operating systems: on OS X and Linux it's `~/.homeassistant` and on Windows it's `%APPDATA%/.homeassistant`).
|
The workflow for moving private information to `secrets.yaml` is very similar to the [splitting of the configuration](/docs/configuration/splitting_configuration/). Create a `secrets.yaml` file in your Home Assistant [configuration directory](/docs/configuration/).
|
||||||
|
|
||||||
The entries for password and API keys in the `configuration.yaml` file usually looks like the example below.
|
The entries for password and API keys in the `configuration.yaml` file usually looks like the example below.
|
||||||
|
|
||||||
@ -39,7 +39,8 @@ http_password: YOUR_PASSWORD
|
|||||||
### {% linkable_title Debugging secrets %}
|
### {% linkable_title Debugging secrets %}
|
||||||
|
|
||||||
When you start splitting your configuration into multiple files, you might end up with configuration in sub folders. Secrets will be resolved in this order:
|
When you start splitting your configuration into multiple files, you might end up with configuration in sub folders. Secrets will be resolved in this order:
|
||||||
- A `secrets.yaml` located in the same folder as the yaml file referencing the secret,
|
|
||||||
|
- A `secrets.yaml` located in the same folder as the YAML file referencing the secret,
|
||||||
- next, parent folders will be searched for a `secrets.yaml` file with the secret, stopping at the folder with the main `configuration.yaml`,
|
- next, parent folders will be searched for a `secrets.yaml` file with the secret, stopping at the folder with the main `configuration.yaml`,
|
||||||
- lastly, `keyring` will be queried for the secret (more info below)
|
- lastly, `keyring` will be queried for the secret (more info below)
|
||||||
|
|
||||||
@ -55,7 +56,7 @@ This will not print the actual secret's value to the log.
|
|||||||
*Option 2*: View where secrets are retrieved from and the contents of all `secrets.yaml` files used, you can use the `check_config` script from the command line:
|
*Option 2*: View where secrets are retrieved from and the contents of all `secrets.yaml` files used, you can use the `check_config` script from the command line:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
hass --script check_config --secrets
|
$ hass --script check_config --secrets
|
||||||
```
|
```
|
||||||
This will print all your secrets.
|
This will print all your secrets.
|
||||||
|
|
||||||
|
@ -247,6 +247,8 @@ action:
|
|||||||
```
|
```
|
||||||
|
|
||||||
It is important to note that each file must contain only **one** entry when using `!include_dir_list`.
|
It is important to note that each file must contain only **one** entry when using `!include_dir_list`.
|
||||||
|
It is also important to note that if you are splitting a file after adding -id: to support the automation UI,
|
||||||
|
the -id: line must be removed from each of the split files.
|
||||||
|
|
||||||
#### {% linkable_title Example: `!include_dir_named` %}
|
#### {% linkable_title Example: `!include_dir_named` %}
|
||||||
|
|
||||||
|
@ -13,14 +13,7 @@ redirect_from: /ecosystem/appdaemon/updating/
|
|||||||
To update AppDaemon after I have released new code, just run the following command to update your copy:
|
To update AppDaemon after I have released new code, just run the following command to update your copy:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git pull origin
|
$ sudo pip3 install --upgrade appdaemon
|
||||||
```
|
```
|
||||||
|
|
||||||
If you are using pip3 for the install do this:
|
If you are using docker, rerun the steps to grab the latestdocker image.
|
||||||
|
|
||||||
```bash
|
|
||||||
$ sudo pip3 uninstall appdaemon
|
|
||||||
$ sudo pip3 install .
|
|
||||||
```
|
|
||||||
|
|
||||||
If you are using docker, rerun the steps to create a new docker image.
|
|
||||||
|
21
source/_docs/ecosystem/caddy.markdown
Normal file
21
source/_docs/ecosystem/caddy.markdown
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Caddy Server reverse proxy"
|
||||||
|
description: "Configure Caddy Server as a reverse proxy to Home Assistant."
|
||||||
|
date: 2017-08-22 22:20
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Configure [Caddy Server](https://caddyserver.com/) for use as a reverse proxy to Home Assistant.
|
||||||
|
|
||||||
|
```
|
||||||
|
hass.example.org {
|
||||||
|
proxy / localhost:8123 {
|
||||||
|
websocket
|
||||||
|
transparent
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
@ -39,4 +39,4 @@ HADashboard is a modular, skinnable dashboard for [Home Assistant](https://home-
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
For full installation instructions see the HADashboard section in the [AppDaemon Project Documentation](http://appdaemon.readthedocs.io/en/latest/DASHBOARD/)
|
For full installation instructions see the HADashboard section in the [AppDaemon Project Documentation](http://appdaemon.readthedocs.io/en/latest/DASHBOARD_INSTALL.html)
|
||||||
|
@ -35,9 +35,9 @@ We would appreciate if you help to keep this page up-to-date and add feedback.
|
|||||||
|
|
||||||
| Browser | Release | State | Comments |
|
| Browser | Release | State | Comments |
|
||||||
| :-------------------- |:---------------|:-----------|:-------------------------|
|
| :-------------------- |:---------------|:-----------|:-------------------------|
|
||||||
| [Firefox] | 49.0 | works | |
|
| [Firefox] | 55.0 | works | |
|
||||||
| [Midori] | 0.5.11 | works | |
|
| [Midori] | 0.5.11 | works | |
|
||||||
| [Chromium] | 53.0.2785.143 | works | |
|
| [Chromium] | 60.0.3112.90 | works | |
|
||||||
| [Conkeror] | 1.0.2 | works | |
|
| [Conkeror] | 1.0.2 | works | |
|
||||||
| [Konqueror] | | unknown | |
|
| [Konqueror] | | unknown | |
|
||||||
| [Uzbl] | 0.9.0 | works | |
|
| [Uzbl] | 0.9.0 | works | |
|
||||||
@ -63,6 +63,7 @@ We would appreciate if you help to keep this page up-to-date and add feedback.
|
|||||||
| [Safari] | | works | Can also be added to desktop. Map is fixed since 0.51. |
|
| [Safari] | | works | Can also be added to desktop. Map is fixed since 0.51. |
|
||||||
| [Chrome] | | works | |
|
| [Chrome] | | works | |
|
||||||
|
|
||||||
|
There are reports that devices running with iOS prior to iOS 10, especially old iPads, are having trouble.
|
||||||
|
|
||||||
[Firefox]: https://www.mozilla.org/en-US/firefox/
|
[Firefox]: https://www.mozilla.org/en-US/firefox/
|
||||||
[Midori]: http://midori-browser.org/
|
[Midori]: http://midori-browser.org/
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
redirect_from: /getting-started/installation/
|
redirect_from: /getting-started/installation/
|
||||||
---
|
---
|
||||||
|
|
||||||
Home Assistant provides multiple ways to be installed. A requirement is that you have [Python](https://www.python.org/downloads/) installed. For Windows we require at least **Python 3.5** and for other operating systems at least **Python 3.4.2**.
|
Home Assistant provides multiple ways to be installed. A requirement is that you have [Python](https://www.python.org/downloads/) installed. For Windows, we require at least **Python 3.5** and for other operating systems at least **Python 3.4.2**.
|
||||||
|
|
||||||
<div class="text-center hass-option-cards" markdown="0">
|
<div class="text-center hass-option-cards" markdown="0">
|
||||||
<a class='option-card' href='/docs/hassbian/installation/'>
|
<a class='option-card' href='/docs/hassbian/installation/'>
|
||||||
@ -23,7 +23,7 @@ Home Assistant provides multiple ways to be installed. A requirement is that you
|
|||||||
<div class='img-container'>
|
<div class='img-container'>
|
||||||
<img src='/images/supported_brands/raspberry-pi.png' />
|
<img src='/images/supported_brands/raspberry-pi.png' />
|
||||||
</div>
|
</div>
|
||||||
<div class='title'>Rasbian</div>
|
<div class='title'>Raspbian</div>
|
||||||
</a>
|
</a>
|
||||||
<a class='option-card' href='/docs/installation/archlinux/'>
|
<a class='option-card' href='/docs/installation/archlinux/'>
|
||||||
<div class='img-container'>
|
<div class='img-container'>
|
||||||
|
@ -36,6 +36,10 @@ The following extras are included on the image:
|
|||||||
After flashing the image to your SD Card open the partition `boot` and create a new file `wpa_supplicant.conf`. Edit the file and enter your network credentials. For more information visit [Setting up Wifi for Raspbian][wifi-setup]. During start the file will automatically be copied in the right folder and the network connection will be established. The file could look like this:
|
After flashing the image to your SD Card open the partition `boot` and create a new file `wpa_supplicant.conf`. Edit the file and enter your network credentials. For more information visit [Setting up Wifi for Raspbian][wifi-setup]. During start the file will automatically be copied in the right folder and the network connection will be established. The file could look like this:
|
||||||
|
|
||||||
```conf
|
```conf
|
||||||
|
country=SE
|
||||||
|
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
|
||||||
|
update_config=1
|
||||||
|
|
||||||
network={
|
network={
|
||||||
ssid="YOUR_SSID"
|
ssid="YOUR_SSID"
|
||||||
psk="YOUR_PASSWORD"
|
psk="YOUR_PASSWORD"
|
||||||
|
@ -19,8 +19,8 @@ Virtualenvs are pretty easy to setup. This example will walk through one method
|
|||||||
```bash
|
```bash
|
||||||
$ sudo apt-get update
|
$ sudo apt-get update
|
||||||
$ sudo apt-get upgrade
|
$ sudo apt-get upgrade
|
||||||
$ sudo apt-get install python-pip python3-dev
|
$ sudo apt-get install python3-pip python3-dev
|
||||||
$ sudo pip install --upgrade virtualenv
|
$ sudo pip3 install --upgrade virtualenv
|
||||||
```
|
```
|
||||||
|
|
||||||
### {% linkable_title Step 1: Create a Home Assistant user & group %}
|
### {% linkable_title Step 1: Create a Home Assistant user & group %}
|
||||||
|
@ -163,6 +163,7 @@
|
|||||||
Remote access
|
Remote access
|
||||||
<ul>
|
<ul>
|
||||||
<li>{% active_link /docs/ecosystem/apache/ Apache %}</li>
|
<li>{% active_link /docs/ecosystem/apache/ Apache %}</li>
|
||||||
|
<li>{% active_link /docs/ecosystem/caddy/ Caddy Server %}</li>
|
||||||
<li>{% active_link /docs/ecosystem/nginx/ NGINX %}</li>
|
<li>{% active_link /docs/ecosystem/nginx/ NGINX %}</li>
|
||||||
<li>{% active_link /docs/ecosystem/nginx_subdomain/ NGINX with subdomain%}</li>
|
<li>{% active_link /docs/ecosystem/nginx_subdomain/ NGINX with subdomain%}</li>
|
||||||
<li>{% active_link /docs/ecosystem/tor/ Tor Onion Service %}</li>
|
<li>{% active_link /docs/ecosystem/tor/ Tor Onion Service %}</li>
|
||||||
|
@ -55,6 +55,22 @@ As we have seen more vacuum cleaners land in Home Assistant, it was time to crea
|
|||||||
- Add new device tracker for Huawei Routers. ([@abmantis] - [#8488]) ([device_tracker.huawei_router docs]) (new-platform)
|
- Add new device tracker for Huawei Routers. ([@abmantis] - [#8488]) ([device_tracker.huawei_router docs]) (new-platform)
|
||||||
- Add Shodan sensor ([@fabaff] - [#8902]) ([sensor.shodan docs]) (new-platform)
|
- Add Shodan sensor ([@fabaff] - [#8902]) ([sensor.shodan docs]) (new-platform)
|
||||||
|
|
||||||
|
## {% linkable_title Release 0.51.1 - August 12 %}
|
||||||
|
|
||||||
|
- Fixed a bug in the automation editor that would break if no conditions available in the config file. ([@balloob])
|
||||||
|
|
||||||
|
## {% linkable_title Release 0.51.2 - August 14 %}
|
||||||
|
|
||||||
|
- Fix zwave power_consumption attribute ([@andrey-git] - [#8968]) ([zwave docs])
|
||||||
|
- Turn foscam verbose mode off ([@andrey-git] - [#8967]) ([camera.foscam docs])
|
||||||
|
- fix stack trace in pushbullet ([@Danielhiversen] - [#8965]) ([notify.pushbullet docs])
|
||||||
|
- Harmoney remote: Fix call to ha_send_commands ([@MartinHjelmare] - [#8956]) ([remote.harmony docs])
|
||||||
|
- fix DeviceException handling when updating xiaomi vacuum ([@azogue] - [#8954]) ([vacuum.xiaomi docs])
|
||||||
|
- Sabnzbd: do not assume discovery info is a dict ([@balloob] - [#8951]) ([sensor.sabnzbd docs])
|
||||||
|
- Fix login button ([@balloob])
|
||||||
|
- Add workaround for broken toggles in Safari ([@balloob])
|
||||||
|
- Fix weblink opening twice ([@azogue])
|
||||||
|
|
||||||
## {% linkable_title If you need help... %}
|
## {% linkable_title If you need help... %}
|
||||||
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][discord]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
|
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][discord]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
|
||||||
|
|
||||||
@ -441,3 +457,10 @@ vacuum:
|
|||||||
[forum]: https://community.home-assistant.io/
|
[forum]: https://community.home-assistant.io/
|
||||||
[issue]: https://github.com/home-assistant/home-assistant/issues
|
[issue]: https://github.com/home-assistant/home-assistant/issues
|
||||||
[discord]: https://discord.gg/c5DvZ4e
|
[discord]: https://discord.gg/c5DvZ4e
|
||||||
|
[#8951]: https://github.com/home-assistant/home-assistant/pull/8951
|
||||||
|
[#8954]: https://github.com/home-assistant/home-assistant/pull/8954
|
||||||
|
[#8956]: https://github.com/home-assistant/home-assistant/pull/8956
|
||||||
|
[#8965]: https://github.com/home-assistant/home-assistant/pull/8965
|
||||||
|
[#8967]: https://github.com/home-assistant/home-assistant/pull/8967
|
||||||
|
[#8968]: https://github.com/home-assistant/home-assistant/pull/8968
|
||||||
|
[@Danielhiversen]: https://github.com/Danielhiversen
|
||||||
|
@ -19,6 +19,7 @@ Not all existing platforms follow the requirements in this checklist. This canno
|
|||||||
|
|
||||||
1. Requirement version pinned: `REQUIREMENTS = ['phue==0.8.1']`
|
1. Requirement version pinned: `REQUIREMENTS = ['phue==0.8.1']`
|
||||||
2. We no longer want requirements hosted on GitHub. Please upload to PyPi.
|
2. We no longer want requirements hosted on GitHub. Please upload to PyPi.
|
||||||
|
3. Requirements should only be imported inside functions. This is necessary because requirements are installed on the fly.
|
||||||
|
|
||||||
### {% linkable_title Configuration %}
|
### {% linkable_title Configuration %}
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ Not all existing platforms follow the requirements in this checklist. This canno
|
|||||||
|
|
||||||
1. Requirement version should be pinned: `REQUIREMENTS = ['phue==0.8.1']`
|
1. Requirement version should be pinned: `REQUIREMENTS = ['phue==0.8.1']`
|
||||||
2. We no longer want requirements hosted on GitHub. Please upload to PyPi.
|
2. We no longer want requirements hosted on GitHub. Please upload to PyPi.
|
||||||
|
3. Requirements should only be imported inside functions. This is necessary because requirements are installed on the fly.
|
||||||
|
|
||||||
### {% linkable_title 2. Dependencies %}
|
### {% linkable_title 2. Dependencies %}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
layout: page
|
layout: page
|
||||||
title: "Credits"
|
title: "Credits"
|
||||||
description: "Credits for the developers who contributed to Home Assistant."
|
description: "Credits for the developers who contributed to Home Assistant."
|
||||||
date: 2017-07-30 19:56:19 +0000
|
date: 2017-08-20 20:44:16 +0000
|
||||||
sidebar: true
|
sidebar: true
|
||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
@ -13,28 +13,28 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
|
|
||||||
### {% linkable_title Author %}
|
### {% linkable_title Author %}
|
||||||
|
|
||||||
- [Paulus Schoutsen (@balloob)](https://github.com/balloob "5641 total commits to the home-assistant organization, 3411 commits to home-assistant, 1191 commits to home-assistant.github.io, 576 commits to home-assistant-polymer, 244 commits to home-assistant-js, 112 commits to netdisco, 40 commits to home-assistant-js-websocket, 19 commits to hass-release, 12 commits to home-assistant-assets, 8 commits to example-custom-config, 7 commits to micropython-home-assistant, 4 commits to LabelBot, 4 commits to hassio, 2 commits to issue-bot, 2 commits to lambda-home-assistant-github, 2 commits to hassio-addons, 2 commits to python-hassbian, 2 commits to hassio-addons-example, 1 commit to hassio-build, 1 commit to home-assistant-iOS, 1 commit to home-assistant-notebooks")
|
- [Paulus Schoutsen (@balloob)](https://github.com/balloob "5706 total commits to the home-assistant organization, 3436 commits to home-assistant, 1206 commits to home-assistant.github.io, 596 commits to home-assistant-polymer, 244 commits to home-assistant-js, 113 commits to netdisco, 42 commits to home-assistant-js-websocket, 21 commits to hass-release, 12 commits to home-assistant-assets, 8 commits to example-custom-config, 7 commits to micropython-home-assistant, 4 commits to LabelBot, 4 commits to hassio, 2 commits to lambda-home-assistant-github, 2 commits to python-hassbian, 2 commits to hassio-addons, 2 commits to hassio-addons-example, 2 commits to issue-bot, 1 commit to hassio-build, 1 commit to home-assistant-notebooks, 1 commit to home-assistant-iOS")
|
||||||
|
|
||||||
### {% linkable_title Contributors %}
|
### {% linkable_title Contributors %}
|
||||||
|
|
||||||
(in alphabetical order)
|
(in alphabetical order)
|
||||||
|
|
||||||
- [15goudreau (@15goudreau)](https://github.com/15goudreau "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [15goudreau (@15goudreau)](https://github.com/15goudreau "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Aaron Bach (@bachya)](https://github.com/bachya "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Aaron Bach (@bachya)](https://github.com/bachya "6 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Aaron Linville (@linville)](https://github.com/linville "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
- [Aaron Linville (@linville)](https://github.com/linville "2 total commits to the home-assistant organization, 2 commits to appdaemon")
|
||||||
- [Aaron Malone (@aaroncm)](https://github.com/aaroncm "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Aaron Malone (@aaroncm)](https://github.com/aaroncm "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Aaron Morris (@Morrisai)](https://github.com/Morrisai "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Aaron Morris (@Morrisai)](https://github.com/Morrisai "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Aaron Polley (@xarnze)](https://github.com/xarnze "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
- [Aaron Polley (@xarnze)](https://github.com/xarnze "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||||
- [Aaron Wolen (@aaronwolen)](https://github.com/aaronwolen "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Aaron Wolen (@aaronwolen)](https://github.com/aaronwolen "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Abhishek Anand (@aa755)](https://github.com/aa755 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
- [Abhishek Anand (@aa755)](https://github.com/aa755 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||||
- [Abílio Costa (@abmantis)](https://github.com/abmantis "9 total commits to the home-assistant organization, 7 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Abílio Costa (@abmantis)](https://github.com/abmantis "14 total commits to the home-assistant organization, 9 commits to home-assistant, 4 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||||
- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
||||||
- [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Adam Baxter (@voltagex)](https://github.com/voltagex "2 total commits to the home-assistant organization, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
- [Adam Baxter (@voltagex)](https://github.com/voltagex "2 total commits to the home-assistant organization, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
||||||
- [Adam Dullage (@Dullage)](https://github.com/Dullage "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Adam Dullage (@Dullage)](https://github.com/Dullage "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Adam Garcia (@pancho-villa)](https://github.com/pancho-villa "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Adam Garcia (@pancho-villa)](https://github.com/pancho-villa "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Adam Mills (@armills)](https://github.com/armills "187 total commits to the home-assistant organization, 122 commits to home-assistant, 32 commits to home-assistant.github.io, 29 commits to home-assistant-polymer, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant")
|
- [Adam Mills (@armills)](https://github.com/armills "195 total commits to the home-assistant organization, 127 commits to home-assistant, 34 commits to home-assistant.github.io, 30 commits to home-assistant-polymer, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant")
|
||||||
- [ADeeds (@ADeeds)](https://github.com/ADeeds "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [ADeeds (@ADeeds)](https://github.com/ADeeds "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [AdithyanI (@AdithyanI)](https://github.com/AdithyanI "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [AdithyanI (@AdithyanI)](https://github.com/AdithyanI "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Aditya Shevade (@adibis)](https://github.com/adibis "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Aditya Shevade (@adibis)](https://github.com/adibis "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
@ -43,14 +43,15 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Adrien Ball (@adrienball)](https://github.com/adrienball "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Adrien Ball (@adrienball)](https://github.com/adrienball "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Adrián López (@adrianlzt)](https://github.com/adrianlzt "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [Adrián López (@adrianlzt)](https://github.com/adrianlzt "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
|
- [AHS (@ahofelt)](https://github.com/ahofelt "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to home-assistant.github.io")
|
- [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||||
- [Alan Fischer (@alanfischer)](https://github.com/alanfischer "11 total commits to the home-assistant organization, 9 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Alan Fischer (@alanfischer)](https://github.com/alanfischer "13 total commits to the home-assistant organization, 10 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Albert Lee (@trisk)](https://github.com/trisk "13 total commits to the home-assistant organization, 8 commits to home-assistant, 5 commits to home-assistant.github.io")
|
- [Albert Lee (@trisk)](https://github.com/trisk "13 total commits to the home-assistant organization, 8 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
- [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Aleksey Gureiev (@alg)](https://github.com/alg "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Aleksey Gureiev (@alg)](https://github.com/alg "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant.github.io")
|
- [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||||
- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Alex (@asbach)](https://github.com/asbach "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Alex (@asbach)](https://github.com/asbach "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
|
- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Alex Harvey (@infamy)](https://github.com/infamy "25 total commits to the home-assistant organization, 14 commits to home-assistant, 11 commits to home-assistant.github.io")
|
- [Alex Harvey (@infamy)](https://github.com/infamy "25 total commits to the home-assistant organization, 14 commits to home-assistant, 11 commits to home-assistant.github.io")
|
||||||
- [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
@ -58,22 +59,17 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Alex Tzonkov (@attzonko)](https://github.com/attzonko "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Alex Tzonkov (@attzonko)](https://github.com/attzonko "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Alex Vernacchia (@vernak2539)](https://github.com/vernak2539 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Alex Vernacchia (@vernak2539)](https://github.com/vernak2539 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Alexander Bandukwala (@7h3kk1d)](https://github.com/7h3kk1d "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Alexander Bandukwala (@7h3kk1d)](https://github.com/7h3kk1d "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||||
- [Alexander Groß (@agross)](https://github.com/agross "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
|
||||||
- [Alexander Kratzer (@hexxter)](https://github.com/hexxter "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
- [Alexander Kratzer (@hexxter)](https://github.com/hexxter "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||||
- [Alexander Rust (@binarybucks)](https://github.com/binarybucks "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Alexander Rust (@binarybucks)](https://github.com/binarybucks "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Alexander Slansky (@aslansky)](https://github.com/aslansky "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Alexandre Perrin (@kAworu)](https://github.com/kAworu "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Alexandre Perrin (@kAworu)](https://github.com/kAworu "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
|
||||||
- [Alfie Day (@Azelphur)](https://github.com/Azelphur "12 total commits to the home-assistant organization, 12 commits to home-assistant")
|
- [Alfie Day (@Azelphur)](https://github.com/Azelphur "12 total commits to the home-assistant organization, 12 commits to home-assistant")
|
||||||
- [Aliaksandr (@minchik)](https://github.com/minchik "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [Aliaksandr (@minchik)](https://github.com/minchik "7 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to appdaemon, 2 commits to home-assistant")
|
||||||
- [Allan Glen (@allanglen)](https://github.com/allanglen "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Allan Glen (@allanglen)](https://github.com/allanglen "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "72 total commits to the home-assistant organization, 52 commits to home-assistant.github.io, 18 commits to home-assistant, 1 commit to hassio-addons, 1 commit to pi-gen")
|
- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "76 total commits to the home-assistant organization, 53 commits to home-assistant.github.io, 21 commits to home-assistant, 1 commit to hassio-addons, 1 commit to pi-gen")
|
||||||
- [amigian74 (@amigian74)](https://github.com/amigian74 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [amigian74 (@amigian74)](https://github.com/amigian74 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [amorsillo (@AndrewMorsillo)](https://github.com/AndrewMorsillo "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
- [amorsillo (@AndrewMorsillo)](https://github.com/AndrewMorsillo "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [Anastasia A. (@Sacret)](https://github.com/Sacret "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "97 total commits to the home-assistant organization, 70 commits to home-assistant, 25 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||||
- [Anders Gjendem (@agjendem)](https://github.com/agjendem "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
|
||||||
- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "95 total commits to the home-assistant organization, 68 commits to home-assistant, 25 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
|
||||||
- [Andrea Falcone (@asfalcone)](https://github.com/asfalcone "5 total commits to the home-assistant organization, 5 commits to issue-bot")
|
- [Andrea Falcone (@asfalcone)](https://github.com/asfalcone "5 total commits to the home-assistant organization, 5 commits to issue-bot")
|
||||||
- [Andreas Ahrens (@DevvAndreas)](https://github.com/DevvAndreas "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
|
||||||
- [Andreas Cambitsis (@acambitsis)](https://github.com/acambitsis "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Andreas Cambitsis (@acambitsis)](https://github.com/acambitsis "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Andreas Jacobsen (@andreasjacobsen93)](https://github.com/andreasjacobsen93 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Andreas Jacobsen (@andreasjacobsen93)](https://github.com/andreasjacobsen93 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Andreas Rammhold (@andir)](https://github.com/andir "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
- [Andreas Rammhold (@andir)](https://github.com/andir "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
@ -81,18 +77,17 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Andreea-Daniela Ene (@AndreeaEne)](https://github.com/AndreeaEne "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Andreea-Daniela Ene (@AndreeaEne)](https://github.com/AndreeaEne "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Andrew (@aneisch)](https://github.com/aneisch "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Andrew (@aneisch)](https://github.com/aneisch "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [Andrew (@aoakeson)](https://github.com/aoakeson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Andrew (@aoakeson)](https://github.com/aoakeson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "454 total commits to the home-assistant organization, 331 commits to appdaemon, 88 commits to hadashboard, 25 commits to scenegen, 10 commits to home-assistant.github.io")
|
- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "564 total commits to the home-assistant organization, 439 commits to appdaemon, 88 commits to hadashboard, 25 commits to scenegen, 12 commits to home-assistant.github.io")
|
||||||
- [Andrew LeCody (@aceat64)](https://github.com/aceat64 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
- [Andrew LeCody (@aceat64)](https://github.com/aceat64 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Andrew Patton (@acusti)](https://github.com/acusti "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
|
||||||
- [Andrew Smith (@andrewmichaelsmith)](https://github.com/andrewmichaelsmith "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
- [Andrew Smith (@andrewmichaelsmith)](https://github.com/andrewmichaelsmith "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
||||||
- [Andrew Starr-Bochicchio (@andrewsomething)](https://github.com/andrewsomething "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
|
||||||
- [Andrew Stock (@watchforstock)](https://github.com/watchforstock "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Andrew Stock (@watchforstock)](https://github.com/watchforstock "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Andrew Thigpen (@andythigpen)](https://github.com/andythigpen "33 total commits to the home-assistant organization, 32 commits to home-assistant, 1 commit to home-assistant-js")
|
- [Andrew Thigpen (@andythigpen)](https://github.com/andythigpen "33 total commits to the home-assistant organization, 32 commits to home-assistant, 1 commit to home-assistant-js")
|
||||||
- [Andrew Williams (@nikdoof)](https://github.com/nikdoof "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Andrew Williams (@nikdoof)](https://github.com/nikdoof "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [andrew-curtis (@andrew-curtis)](https://github.com/andrew-curtis "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
- [andrew-curtis (@andrew-curtis)](https://github.com/andrew-curtis "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||||
- [Andrey (@andrey-git)](https://github.com/andrey-git "148 total commits to the home-assistant organization, 78 commits to home-assistant, 45 commits to home-assistant-polymer, 25 commits to home-assistant.github.io")
|
- [Andrey (@andrey-git)](https://github.com/andrey-git "155 total commits to the home-assistant organization, 81 commits to home-assistant, 49 commits to home-assistant-polymer, 25 commits to home-assistant.github.io")
|
||||||
|
- [Andrey Kupreychik (@foxel)](https://github.com/foxel "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Andrzej (@andriej)](https://github.com/andriej "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Andrzej (@andriej)](https://github.com/andriej "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [Andy Castille (@Klikini)](https://github.com/Klikini "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Andy Castille (@Klikini)](https://github.com/Klikini "6 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Andy Loughran (@andylockran)](https://github.com/andylockran "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Andy Loughran (@andylockran)](https://github.com/andylockran "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [andyat (@andyat)](https://github.com/andyat "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [andyat (@andyat)](https://github.com/andyat "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
||||||
@ -110,11 +105,13 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [ArrayLabs (@arraylabs)](https://github.com/arraylabs "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [ArrayLabs (@arraylabs)](https://github.com/arraylabs "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Arthur Leonard Andersen (@leoc)](https://github.com/leoc "9 total commits to the home-assistant organization, 9 commits to home-assistant")
|
- [Arthur Leonard Andersen (@leoc)](https://github.com/leoc "9 total commits to the home-assistant organization, 9 commits to home-assistant")
|
||||||
- [Arttu mahlakaarto (@amahlaka)](https://github.com/amahlaka "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
- [Arttu mahlakaarto (@amahlaka)](https://github.com/amahlaka "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||||
|
- [ashev (@ashev)](https://github.com/ashev "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Assaf Inbal (@shmuelzon)](https://github.com/shmuelzon "12 total commits to the home-assistant organization, 9 commits to homebridge-homeassistant, 3 commits to home-assistant")
|
- [Assaf Inbal (@shmuelzon)](https://github.com/shmuelzon "12 total commits to the home-assistant organization, 9 commits to homebridge-homeassistant, 3 commits to home-assistant")
|
||||||
- [Audun Ytterdal (@auduny)](https://github.com/auduny "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Audun Ytterdal (@auduny)](https://github.com/auduny "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [aufano (@aufano)](https://github.com/aufano "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [aufano (@aufano)](https://github.com/aufano "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Austin (@trainman419)](https://github.com/trainman419 "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
- [Austin (@trainman419)](https://github.com/trainman419 "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||||
- [Avraham David Gelbfish (@adgelbfish)](https://github.com/adgelbfish "2 total commits to the home-assistant organization, 1 commit to hadashboard, 1 commit to pi-gen")
|
- [Avraham David Gelbfish (@adgelbfish)](https://github.com/adgelbfish "2 total commits to the home-assistant organization, 1 commit to hadashboard, 1 commit to pi-gen")
|
||||||
|
- [azeroth12 (@azeroth12)](https://github.com/azeroth12 "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "10 total commits to the home-assistant organization, 6 commits to home-assistant, 2 commits to netdisco, 2 commits to home-assistant.github.io")
|
- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "10 total commits to the home-assistant organization, 6 commits to home-assistant, 2 commits to netdisco, 2 commits to home-assistant.github.io")
|
||||||
- [Bart274 (@Bart274)](https://github.com/Bart274 "26 total commits to the home-assistant organization, 17 commits to home-assistant, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
- [Bart274 (@Bart274)](https://github.com/Bart274 "26 total commits to the home-assistant organization, 17 commits to home-assistant, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [Bas Schipper (@basschipper)](https://github.com/basschipper "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Bas Schipper (@basschipper)](https://github.com/basschipper "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
@ -131,15 +128,17 @@ 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 organization, 2 commits to home-assistant")
|
- [bergemalm (@bergemalm)](https://github.com/bergemalm "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [bestlibre (@bestlibre)](https://github.com/bestlibre "13 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.github.io, 1 commit to hassio, 1 commit to hassio-build")
|
- [bestlibre (@bestlibre)](https://github.com/bestlibre "13 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.github.io, 1 commit to hassio, 1 commit to hassio-build")
|
||||||
- [Bill Nelson (@xhostplus)](https://github.com/xhostplus "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Bill Nelson (@xhostplus)](https://github.com/xhostplus "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
|
- [BioSehnsucht (@BioSehnsucht)](https://github.com/BioSehnsucht "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant-polymer")
|
- [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant-polymer")
|
||||||
- [bl8rnr (@bl8rnr)](https://github.com/bl8rnr "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [bl8rnr (@bl8rnr)](https://github.com/bl8rnr "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Blanyal D'Souza (@blanyal)](https://github.com/blanyal "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Blanyal D'Souza (@blanyal)](https://github.com/blanyal "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [boojew (@boojew)](https://github.com/boojew "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [boojew (@boojew)](https://github.com/boojew "7 total commits to the home-assistant organization, 5 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Boris K (@bokub)](https://github.com/bokub "11 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 5 commits to home-assistant")
|
- [Boris K (@bokub)](https://github.com/bokub "11 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 5 commits to home-assistant")
|
||||||
- [Boyi C (@fanthos)](https://github.com/fanthos "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
- [Boyi C (@fanthos)](https://github.com/fanthos "7 total commits to the home-assistant organization, 3 commits to home-assistant-polymer, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Brad Buran (@bburan)](https://github.com/bburan "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Brad Buran (@bburan)](https://github.com/bburan "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
- [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
||||||
|
- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the home-assistant organization, 484 commits to home-assistant.github.io")
|
- [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the home-assistant organization, 484 commits to home-assistant.github.io")
|
||||||
- [Brandon Weeks (@brandonweeks)](https://github.com/brandonweeks "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Brandon Weeks (@brandonweeks)](https://github.com/brandonweeks "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [brburns (@brburns)](https://github.com/brburns "2 total commits to the home-assistant organization, 2 commits to netdisco")
|
- [brburns (@brburns)](https://github.com/brburns "2 total commits to the home-assistant organization, 2 commits to netdisco")
|
||||||
@ -160,22 +159,22 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Caius Cioran (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Caius Cioran (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Caleb (@finish06)](https://github.com/finish06 "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
- [Caleb (@finish06)](https://github.com/finish06 "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
- [Cameron Bulock (@cbulock)](https://github.com/cbulock "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant")
|
- [Cameron Bulock (@cbulock)](https://github.com/cbulock "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant")
|
||||||
- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "87 total commits to the home-assistant organization, 79 commits to home-assistant.github.io, 5 commits to home-assistant, 1 commit to hassbian-scripts, 1 commit to fabric-home-assistant, 1 commit to homebridge-homeassistant")
|
- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "87 total commits to the home-assistant organization, 79 commits to home-assistant.github.io, 5 commits to home-assistant, 1 commit to fabric-home-assistant, 1 commit to homebridge-homeassistant, 1 commit to hassbian-scripts")
|
||||||
- [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
- [Carter (@BluGeni)](https://github.com/BluGeni "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Carter (@BluGeni)](https://github.com/BluGeni "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [cdce8p (@cdce8p)](https://github.com/cdce8p "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
- [cdce8p (@cdce8p)](https://github.com/cdce8p "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [Cecron (@Cecron)](https://github.com/Cecron "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
- [Cecron (@Cecron)](https://github.com/Cecron "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Cenk Gündoğan (@cgundogan)](https://github.com/cgundogan "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
- [Cenk Gündoğan (@cgundogan)](https://github.com/cgundogan "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||||
- [cgtobi (@cgtobi)](https://github.com/cgtobi "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [cgtobi (@cgtobi)](https://github.com/cgtobi "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [chanders (@chanders)](https://github.com/chanders "2 total commits to the home-assistant organization, 2 commits to hadashboard")
|
- [chanders (@chanders)](https://github.com/chanders "2 total commits to the home-assistant organization, 2 commits to hadashboard")
|
||||||
- [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "16 total commits to the home-assistant organization, 10 commits to home-assistant, 6 commits to home-assistant.github.io")
|
- [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "19 total commits to the home-assistant organization, 12 commits to home-assistant, 7 commits to home-assistant.github.io")
|
||||||
- [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Chayoung You (@yous)](https://github.com/yous "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Chayoung You (@yous)](https://github.com/yous "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Check your git settings! (@invalid-email-address)](https://github.com/invalid-email-address "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
- [Check your git settings! (@invalid-email-address)](https://github.com/invalid-email-address "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||||
- [Chema García (@sch3m4)](https://github.com/sch3m4 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Chema García (@sch3m4)](https://github.com/sch3m4 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Chia-liang Kao (@clkao)](https://github.com/clkao "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Chia-liang Kao (@clkao)](https://github.com/clkao "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Chris (@firstof9)](https://github.com/firstof9 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Chris (@chennin)](https://github.com/chennin "15 total commits to the home-assistant organization, 11 commits to home-assistant.github.io, 4 commits to home-assistant")
|
- [Chris (@chennin)](https://github.com/chennin "15 total commits to the home-assistant organization, 11 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||||
|
- [Chris (@firstof9)](https://github.com/firstof9 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Chris Aloi (@ctaloi)](https://github.com/ctaloi "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Chris Aloi (@ctaloi)](https://github.com/ctaloi "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Chris Baumgartner (@mchrisb03)](https://github.com/mchrisb03 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Chris Baumgartner (@mchrisb03)](https://github.com/mchrisb03 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Chris Huegle (@chuegle)](https://github.com/chuegle "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [Chris Huegle (@chuegle)](https://github.com/chuegle "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
@ -185,6 +184,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
- [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||||
- [Christiaan Blom (@Deinara)](https://github.com/Deinara "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
- [Christiaan Blom (@Deinara)](https://github.com/Deinara "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
- [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
- [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
|
- [Christian Lasarczyk (@ChrisLasar)](https://github.com/ChrisLasar "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Christian Studer (@cstuder)](https://github.com/cstuder "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Christian Studer (@cstuder)](https://github.com/cstuder "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Christoph Wagner (@Christoph-Wagner)](https://github.com/Christoph-Wagner "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Christoph Wagner (@Christoph-Wagner)](https://github.com/Christoph-Wagner "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
@ -205,24 +205,26 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Corey Pauley (@devspacenine)](https://github.com/devspacenine "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Corey Pauley (@devspacenine)](https://github.com/devspacenine "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [corneyl (@corneyl)](https://github.com/corneyl "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [corneyl (@corneyl)](https://github.com/corneyl "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Craig J. Ward (@wardcraigj)](https://github.com/wardcraigj "14 total commits to the home-assistant organization, 9 commits to home-assistant, 5 commits to home-assistant.github.io")
|
- [Craig J. Ward (@wardcraigj)](https://github.com/wardcraigj "14 total commits to the home-assistant organization, 9 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
- [cribbstechnologies (@cribbstechnologies)](https://github.com/cribbstechnologies "40 total commits to the home-assistant organization, 25 commits to home-assistant, 13 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
- [cribbstechnologies (@cribbstechnologies)](https://github.com/cribbstechnologies "41 total commits to the home-assistant organization, 26 commits to home-assistant, 13 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||||
- [CTLS (@CTLS)](https://github.com/CTLS "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [CTLS (@CTLS)](https://github.com/CTLS "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Dale Higgs (@dale3h)](https://github.com/dale3h "26 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 9 commits to home-assistant, 1 commit to hassbot, 1 commit to homebridge-homeassistant")
|
- [Dale Higgs (@dale3h)](https://github.com/dale3h "26 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 9 commits to home-assistant, 1 commit to homebridge-homeassistant, 1 commit to hassbot")
|
||||||
- [Dan (@danieljkemp)](https://github.com/danieljkemp "22 total commits to the home-assistant organization, 15 commits to home-assistant, 7 commits to home-assistant.github.io")
|
- [Dan (@danieljkemp)](https://github.com/danieljkemp "23 total commits to the home-assistant organization, 16 commits to home-assistant, 7 commits to home-assistant.github.io")
|
||||||
- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "13 total commits to the home-assistant organization, 11 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "14 total commits to the home-assistant organization, 12 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Dan Ford (@dpford)](https://github.com/dpford "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Dan Ford (@dpford)](https://github.com/dpford "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Dan Ports (@drkp)](https://github.com/drkp "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Dan Ports (@drkp)](https://github.com/drkp "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
|
- [Dan Sarginson (@dansarginson)](https://github.com/dansarginson "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Dan Smith (@kk7ds)](https://github.com/kk7ds "84 total commits to the home-assistant organization, 68 commits to home-assistant, 14 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
- [Dan Smith (@kk7ds)](https://github.com/kk7ds "84 total commits to the home-assistant organization, 68 commits to home-assistant, 14 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||||
- [Dan Sullivan (@dansullivan86)](https://github.com/dansullivan86 "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Dan Sullivan (@dansullivan86)](https://github.com/dansullivan86 "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [Dan Van Brunt (@iDVB)](https://github.com/iDVB "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Dan Van Brunt (@iDVB)](https://github.com/iDVB "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Dani (@danichispa)](https://github.com/danichispa "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
- [Dani (@danichispa)](https://github.com/danichispa "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
||||||
- [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "304 total commits to the home-assistant organization, 210 commits to home-assistant, 92 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "305 total commits to the home-assistant organization, 211 commits to home-assistant, 92 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||||
- [Daniel Matuschek (@usul27)](https://github.com/usul27 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Daniel Matuschek (@usul27)](https://github.com/usul27 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "57 total commits to the home-assistant organization, 32 commits to home-assistant.github.io, 25 commits to home-assistant")
|
- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "57 total commits to the home-assistant organization, 32 commits to home-assistant.github.io, 25 commits to home-assistant")
|
||||||
- [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
- [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [Daniel Trnka (@trnila)](https://github.com/trnila "2 total commits to the home-assistant organization, 2 commits to appdaemon")
|
||||||
- [Daniel Watkins (@OddBloke)](https://github.com/OddBloke "4 total commits to the home-assistant organization, 4 commits to home-assistant-ansible")
|
- [Daniel Watkins (@OddBloke)](https://github.com/OddBloke "4 total commits to the home-assistant organization, 4 commits to home-assistant-ansible")
|
||||||
- [Danijel Stojnic (@danijelst)](https://github.com/danijelst "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Danijel Stojnic (@danijelst)](https://github.com/danijelst "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "2 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant, 1 commit to home-assistant")
|
- [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "2 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant, 1 commit to home-assistant")
|
||||||
@ -231,10 +233,10 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Dave Banks (@djbanks)](https://github.com/djbanks "3 total commits to the home-assistant organization, 2 commits to appdaemon, 1 commit to home-assistant")
|
- [Dave Banks (@djbanks)](https://github.com/djbanks "3 total commits to the home-assistant organization, 2 commits to appdaemon, 1 commit to home-assistant")
|
||||||
- [Dave J (@kxtcd950)](https://github.com/kxtcd950 "3 total commits to the home-assistant organization, 3 commits to hassbian-scripts")
|
- [Dave J (@kxtcd950)](https://github.com/kxtcd950 "3 total commits to the home-assistant organization, 3 commits to hassbian-scripts")
|
||||||
- [DaveSergeant (@dethpickle)](https://github.com/dethpickle "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [DaveSergeant (@dethpickle)](https://github.com/dethpickle "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [David (@fanaticDavid)](https://github.com/fanaticDavid "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
- [David (@fanaticDavid)](https://github.com/fanaticDavid "10 total commits to the home-assistant organization, 9 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [David Baumann (@daBONDi)](https://github.com/daBONDi "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [David Baumann (@daBONDi)](https://github.com/daBONDi "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [David McNett (@nugget)](https://github.com/nugget "9 total commits to the home-assistant organization, 5 commits to home-assistant.github.io, 4 commits to home-assistant")
|
- [David McNett (@nugget)](https://github.com/nugget "10 total commits to the home-assistant organization, 5 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
- [David Ohayon (@ohayon)](https://github.com/ohayon "3 total commits to the home-assistant organization, 3 commits to issue-bot")
|
- [David Ohayon (@ohayon)](https://github.com/ohayon "3 total commits to the home-assistant organization, 3 commits to issue-bot")
|
||||||
- [David Straub (@DavidMStraub)](https://github.com/DavidMStraub "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [David Straub (@DavidMStraub)](https://github.com/DavidMStraub "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [David Wang (@dcwangmit01)](https://github.com/dcwangmit01 "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
- [David Wang (@dcwangmit01)](https://github.com/dcwangmit01 "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
||||||
@ -263,20 +265,22 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Edwin Smulders (@Dutchy-)](https://github.com/Dutchy- "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Edwin Smulders (@Dutchy-)](https://github.com/Dutchy- "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the home-assistant organization, 25 commits to home-assistant, 6 commits to home-assistant.github.io")
|
- [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the home-assistant organization, 25 commits to home-assistant, 6 commits to home-assistant.github.io")
|
||||||
- [Emil Horpen Hetty (@emilhetty)](https://github.com/emilhetty "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Emil Horpen Hetty (@emilhetty)](https://github.com/emilhetty "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
|
- [engrbm87 (@engrbm87)](https://github.com/engrbm87 "2 total commits to the home-assistant organization, 2 commits to appdaemon")
|
||||||
- [Eric Clymer (@ericwclymer)](https://github.com/ericwclymer "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Eric Clymer (@ericwclymer)](https://github.com/ericwclymer "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Eric Hagan (@ehagan)](https://github.com/ehagan "2 total commits to the home-assistant organization, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
- [Eric Hagan (@ehagan)](https://github.com/ehagan "2 total commits to the home-assistant organization, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
||||||
- [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Eric Rolf (@xrolfex)](https://github.com/xrolfex "13 total commits to the home-assistant organization, 13 commits to home-assistant")
|
- [Eric Rolf (@xrolfex)](https://github.com/xrolfex "13 total commits to the home-assistant organization, 13 commits to home-assistant")
|
||||||
- [Eric Thompson (@er0ck)](https://github.com/er0ck "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Eric Thompson (@er0ck)](https://github.com/er0ck "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "94 total commits to the home-assistant organization, 86 commits to home-assistant, 5 commits to home-assistant.github.io, 3 commits to netdisco")
|
- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "95 total commits to the home-assistant organization, 87 commits to home-assistant, 5 commits to home-assistant.github.io, 3 commits to netdisco")
|
||||||
- [Erik-jan Riemers (@riemers)](https://github.com/riemers "11 total commits to the home-assistant organization, 11 commits to home-assistant.github.io")
|
- [Erik-jan Riemers (@riemers)](https://github.com/riemers "11 total commits to the home-assistant organization, 11 commits to home-assistant.github.io")
|
||||||
- [ettisan (@ettisan)](https://github.com/ettisan "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
- [ettisan (@ettisan)](https://github.com/ettisan "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||||
- [Eugenio Panadero (@azogue)](https://github.com/azogue "54 total commits to the home-assistant organization, 33 commits to home-assistant, 19 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
- [Eugenio Panadero (@azogue)](https://github.com/azogue "67 total commits to the home-assistant organization, 38 commits to home-assistant, 23 commits to home-assistant.github.io, 3 commits to homebridge-homeassistant, 3 commits to home-assistant-polymer")
|
||||||
- [Fabian Affolter (@fabaff)](https://github.com/fabaff "3941 total commits to the home-assistant organization, 2479 commits to home-assistant.github.io, 1289 commits to home-assistant, 59 commits to home-assistant-ansible, 23 commits to home-assistant-dev-helper, 22 commits to home-assistant-assets, 22 commits to home-assistant-notebooks, 21 commits to home-assistant-cli, 10 commits to home-assistant-polymer, 8 commits to netdisco, 6 commits to hassio-build, 1 commit to home-assistant-js-websocket, 1 commit to hassio")
|
- [Fabian Affolter (@fabaff)](https://github.com/fabaff "4016 total commits to the home-assistant organization, 2510 commits to home-assistant.github.io, 1322 commits to home-assistant, 59 commits to home-assistant-ansible, 23 commits to home-assistant-dev-helper, 22 commits to home-assistant-notebooks, 22 commits to home-assistant-assets, 21 commits to home-assistant-cli, 11 commits to hassio-build, 10 commits to home-assistant-polymer, 8 commits to netdisco, 5 commits to hassio-addons, 2 commits to hassio, 1 commit to home-assistant-js-websocket")
|
||||||
- [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
- [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||||
- [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [fakezeta (@fakezeta)](https://github.com/fakezeta "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
- [fakezeta (@fakezeta)](https://github.com/fakezeta "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
- [Fares Rihani (@anchepiece)](https://github.com/anchepiece "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Fares Rihani (@anchepiece)](https://github.com/anchepiece "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [fedor1210 (@fedor1210)](https://github.com/fedor1210 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Felix (@xifle)](https://github.com/xifle "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Felix (@xifle)](https://github.com/xifle "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Felix Krause (@KrauseFx)](https://github.com/KrauseFx "48 total commits to the home-assistant organization, 48 commits to issue-bot")
|
- [Felix Krause (@KrauseFx)](https://github.com/KrauseFx "48 total commits to the home-assistant organization, 48 commits to issue-bot")
|
||||||
- [felix schwenzel (@diplix)](https://github.com/diplix "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [felix schwenzel (@diplix)](https://github.com/diplix "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -287,6 +291,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "11 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io, 3 commits to netdisco")
|
- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "11 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io, 3 commits to netdisco")
|
||||||
- [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Fonta (@f0nt4)](https://github.com/f0nt4 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Fonta (@f0nt4)](https://github.com/f0nt4 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
|
- [Franck Nijhof (@frenck)](https://github.com/frenck "1 total commits to the home-assistant organization, 1 commit to hassio")
|
||||||
- [Frank (@syphernl)](https://github.com/syphernl "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
- [Frank (@syphernl)](https://github.com/syphernl "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [Frantz (@rofrantz)](https://github.com/rofrantz "3 total commits to the home-assistant organization, 2 commits to netdisco, 1 commit to home-assistant")
|
- [Frantz (@rofrantz)](https://github.com/rofrantz "3 total commits to the home-assistant organization, 2 commits to netdisco, 1 commit to home-assistant")
|
||||||
- [François Martin (@martinfrancois)](https://github.com/martinfrancois "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [François Martin (@martinfrancois)](https://github.com/martinfrancois "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
@ -296,12 +301,13 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [freol35241 (@freol35241)](https://github.com/freol35241 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [freol35241 (@freol35241)](https://github.com/freol35241 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [froz (@froz)](https://github.com/froz "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [froz (@froz)](https://github.com/froz "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the home-assistant organization, 13 commits to home-assistant.github.io")
|
- [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the home-assistant organization, 13 commits to home-assistant.github.io")
|
||||||
|
- [Gabor SZOLLOSI (@szogi)](https://github.com/szogi "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [GadgetReactor (@GadgetReactor)](https://github.com/GadgetReactor "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [GadgetReactor (@GadgetReactor)](https://github.com/GadgetReactor "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [garrettbeachy (@garrettbeachy)](https://github.com/garrettbeachy "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [garrettbeachy (@garrettbeachy)](https://github.com/garrettbeachy "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Gavin Mogan (@halkeye)](https://github.com/halkeye "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Gavin Mogan (@halkeye)](https://github.com/halkeye "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the home-assistant organization, 14 commits to home-assistant")
|
- [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the home-assistant organization, 14 commits to home-assistant")
|
||||||
- [George.M (@nodinosaur)](https://github.com/nodinosaur "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [George.M (@nodinosaur)](https://github.com/nodinosaur "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "8 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [Georgi Yanev (@jumpalottahigh)](https://github.com/jumpalottahigh "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Georgi Yanev (@jumpalottahigh)](https://github.com/jumpalottahigh "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Georgii Staroselskii (@staroselskii)](https://github.com/staroselskii "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
- [Georgii Staroselskii (@staroselskii)](https://github.com/staroselskii "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
||||||
- [Gergely Imreh (@imrehg)](https://github.com/imrehg "16 total commits to the home-assistant organization, 11 commits to home-assistant, 5 commits to home-assistant.github.io")
|
- [Gergely Imreh (@imrehg)](https://github.com/imrehg "16 total commits to the home-assistant organization, 11 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
@ -320,14 +326,16 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [GreenTurtwig (@GreenTurtwig)](https://github.com/GreenTurtwig "78 total commits to the home-assistant organization, 71 commits to home-assistant.github.io, 7 commits to home-assistant")
|
- [GreenTurtwig (@GreenTurtwig)](https://github.com/GreenTurtwig "78 total commits to the home-assistant organization, 71 commits to home-assistant.github.io, 7 commits to home-assistant")
|
||||||
- [Greg (@theCMack)](https://github.com/theCMack "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Greg (@theCMack)](https://github.com/theCMack "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Greg Dowling (@pavoni)](https://github.com/pavoni "245 total commits to the home-assistant organization, 218 commits to home-assistant, 25 commits to home-assistant.github.io, 2 commits to netdisco")
|
- [Greg Dowling (@pavoni)](https://github.com/pavoni "245 total commits to the home-assistant organization, 218 commits to home-assistant, 25 commits to home-assistant.github.io, 2 commits to netdisco")
|
||||||
- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Greg MacLellan (@gregmac)](https://github.com/gregmac "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
- [Greg MacLellan (@gregmac)](https://github.com/gregmac "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
||||||
- [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [Gregor Gruener (@ggruner)](https://github.com/ggruner "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Gregor Gruener (@ggruner)](https://github.com/ggruner "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
|
- [groth-its (@groth-its)](https://github.com/groth-its "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [gsabbe (@gsabbe)](https://github.com/gsabbe "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [gsabbe (@gsabbe)](https://github.com/gsabbe "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Gunnar Helgason (@gunnarhelgason)](https://github.com/gunnarhelgason "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
- [Gunnar Helgason (@gunnarhelgason)](https://github.com/gunnarhelgason "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the home-assistant organization, 20 commits to home-assistant")
|
- [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the home-assistant organization, 20 commits to home-assistant")
|
||||||
- [gwendalg (@gwendalg)](https://github.com/gwendalg "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [gwendalg (@gwendalg)](https://github.com/gwendalg "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
|
- [Haim Gelfenbeyn (@hageltech)](https://github.com/hageltech "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Hajime Morrita (@omo)](https://github.com/omo "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Hajime Morrita (@omo)](https://github.com/omo "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Hamid (@hamid-elaosta)](https://github.com/hamid-elaosta "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Hamid (@hamid-elaosta)](https://github.com/hamid-elaosta "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Hao Hu (@howiehu)](https://github.com/howiehu "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Hao Hu (@howiehu)](https://github.com/howiehu "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -340,7 +348,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [HBDK (@HBDK)](https://github.com/HBDK "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [HBDK (@HBDK)](https://github.com/HBDK "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
- [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "20 total commits to the home-assistant organization, 15 commits to home-assistant, 5 commits to home-assistant.github.io")
|
- [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "20 total commits to the home-assistant organization, 15 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
- [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "4 total commits to the home-assistant organization, 3 commits to netdisco, 1 commit to appdaemon")
|
- [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "5 total commits to the home-assistant organization, 3 commits to netdisco, 1 commit to appdaemon, 1 commit to home-assistant")
|
||||||
- [Helmut Januschka (@hjanuschka)](https://github.com/hjanuschka "3 total commits to the home-assistant organization, 3 commits to issue-bot")
|
- [Helmut Januschka (@hjanuschka)](https://github.com/hjanuschka "3 total commits to the home-assistant organization, 3 commits to issue-bot")
|
||||||
- [Henning Dickten (@hensing)](https://github.com/hensing "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Henning Dickten (@hensing)](https://github.com/hensing "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Henrik Nicolaisen (@hmn)](https://github.com/hmn "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [Henrik Nicolaisen (@hmn)](https://github.com/hmn "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
@ -364,6 +372,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Issac Kelly (@issackelly)](https://github.com/issackelly "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Issac Kelly (@issackelly)](https://github.com/issackelly "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [J-CMartin (@J-CMartin)](https://github.com/J-CMartin "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [J-CMartin (@J-CMartin)](https://github.com/J-CMartin "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [J. B. Rainsberger (@jbrains)](https://github.com/jbrains "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [J. B. Rainsberger (@jbrains)](https://github.com/jbrains "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [Jack (@iamjackg)](https://github.com/iamjackg "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [jack (@jackmakesthings)](https://github.com/jackmakesthings "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [jack (@jackmakesthings)](https://github.com/jackmakesthings "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Jack Chapple (@jchapple)](https://github.com/jchapple "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Jack Chapple (@jchapple)](https://github.com/jchapple "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Jack Minardi (@jminardi)](https://github.com/jminardi "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
- [Jack Minardi (@jminardi)](https://github.com/jminardi "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||||
@ -381,7 +390,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Jan Pobořil (@iBobik)](https://github.com/iBobik "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Jan Pobořil (@iBobik)](https://github.com/iBobik "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Jan Wh (@janwh)](https://github.com/janwh "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Jan Wh (@janwh)](https://github.com/janwh "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Jan-Preben Mossin (@jpmossin)](https://github.com/jpmossin "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Jan-Preben Mossin (@jpmossin)](https://github.com/jpmossin "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Janne Grunau (@jannau)](https://github.com/jannau "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Janne Grunau (@jannau)](https://github.com/jannau "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Jared Beckham (@jtbeckha)](https://github.com/jtbeckha "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Jared Beckham (@jtbeckha)](https://github.com/jtbeckha "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Jared J. (@jjensn)](https://github.com/jjensn "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
- [Jared J. (@jjensn)](https://github.com/jjensn "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
||||||
- [Jason Carter (@JasonCarter80)](https://github.com/JasonCarter80 "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Jason Carter (@JasonCarter80)](https://github.com/JasonCarter80 "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
@ -398,6 +407,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Jeremiah Wuenschel (@jer)](https://github.com/jer "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Jeremiah Wuenschel (@jer)](https://github.com/jer "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Jeremy (@Wutname1)](https://github.com/Wutname1 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Jeremy (@Wutname1)](https://github.com/Wutname1 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Jeremy Volkman (@jvolkman)](https://github.com/jvolkman "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Jeremy Volkman (@jvolkman)](https://github.com/jvolkman "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
|
- [Jeroen ter Heerdt (@jeroenterheerdt)](https://github.com/jeroenterheerdt "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
- [Jerold Albertson (@jeroldalbertson-wf)](https://github.com/jeroldalbertson-wf "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [Jerold Albertson (@jeroldalbertson-wf)](https://github.com/jeroldalbertson-wf "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||||
- [Jesse Newland (@jnewland)](https://github.com/jnewland "14 total commits to the home-assistant organization, 11 commits to home-assistant, 3 commits to hubot-home-assistant")
|
- [Jesse Newland (@jnewland)](https://github.com/jnewland "14 total commits to the home-assistant organization, 11 commits to home-assistant, 3 commits to hubot-home-assistant")
|
||||||
@ -408,76 +418,68 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Jim Rollenhagen (@jimrollenhagen)](https://github.com/jimrollenhagen "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Jim Rollenhagen (@jimrollenhagen)](https://github.com/jimrollenhagen "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [jnimmo (@jnimmo)](https://github.com/jnimmo "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [jnimmo (@jnimmo)](https://github.com/jnimmo "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Joakim af Sandeberg (@jotunacorn)](https://github.com/jotunacorn "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Joakim Nohlgård (@gebart)](https://github.com/gebart "2 total commits to the home-assistant organization, 2 commits to libcoap")
|
- [Joakim Nohlgård (@gebart)](https://github.com/gebart "2 total commits to the home-assistant organization, 2 commits to libcoap")
|
||||||
- [Job Vermeulen (@jmvermeulen)](https://github.com/jmvermeulen "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Job Vermeulen (@jmvermeulen)](https://github.com/jmvermeulen "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Joe Lee (@xnoodle)](https://github.com/xnoodle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Joe Lee (@xnoodle)](https://github.com/xnoodle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Joe Rocklin (@joerocklin)](https://github.com/joerocklin "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [joe248 (@joe248)](https://github.com/joe248 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [joe248 (@joe248)](https://github.com/joe248 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Joeboyc2 (@Joeboyc2)](https://github.com/Joeboyc2 "16 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Joeboyc2 (@Joeboyc2)](https://github.com/Joeboyc2 "15 total commits to the home-assistant organization, 15 commits to home-assistant.github.io")
|
||||||
- [Joel Asher Friedman (@joelash)](https://github.com/joelash "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [joemcmonagle (@joemcmonagle)](https://github.com/joemcmonagle "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
- [joemcmonagle (@joemcmonagle)](https://github.com/joemcmonagle "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
||||||
- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "41 total commits to the home-assistant organization, 33 commits to home-assistant, 7 commits to home-assistant.github.io, 1 commit to netdisco")
|
- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "41 total commits to the home-assistant organization, 33 commits to home-assistant, 7 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||||
- [Johan Carlquist (@theseal)](https://github.com/theseal "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Johan Haals (@jhaals)](https://github.com/jhaals "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Johan Klintberg (@moogblob)](https://github.com/moogblob "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Johan Klintberg (@moogblob)](https://github.com/moogblob "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Johann Kellerman (@kellerza)](https://github.com/kellerza "144 total commits to the home-assistant organization, 114 commits to home-assistant, 30 commits to home-assistant.github.io")
|
- [Johann Kellerman (@kellerza)](https://github.com/kellerza "144 total commits to the home-assistant organization, 114 commits to home-assistant, 30 commits to home-assistant.github.io")
|
||||||
- [Johannes K. (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Johannes K. (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "180 total commits to the home-assistant organization, 141 commits to home-assistant, 31 commits to home-assistant.github.io, 8 commits to home-assistant-polymer")
|
- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "181 total commits to the home-assistant organization, 142 commits to home-assistant, 31 commits to home-assistant.github.io, 8 commits to home-assistant-polymer")
|
||||||
- [John Coggeshall (@coogle)](https://github.com/coogle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [John Coggeshall (@coogle)](https://github.com/coogle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [John Lindley (@jwl17330536)](https://github.com/jwl17330536 "18 total commits to the home-assistant organization, 11 commits to hadashboard, 6 commits to home-assistant.github.io, 1 commit to home-assistant")
|
|
||||||
- [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [John Mihalic (@mezz64)](https://github.com/mezz64 "39 total commits to the home-assistant organization, 27 commits to home-assistant, 11 commits to home-assistant.github.io, 1 commit to hadashboard")
|
- [John Mihalic (@mezz64)](https://github.com/mezz64 "42 total commits to the home-assistant organization, 29 commits to home-assistant, 12 commits to home-assistant.github.io, 1 commit to hadashboard")
|
||||||
- [John Williams (@Jaidan)](https://github.com/Jaidan "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [johnappletree (@johnappletree)](https://github.com/johnappletree "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [johnappletree (@johnappletree)](https://github.com/johnappletree "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Jon Caruana (@joncar)](https://github.com/joncar "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Jon Caruana (@joncar)](https://github.com/joncar "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Jon Evans (@craftyjon)](https://github.com/craftyjon "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Jon Maddox (@maddox)](https://github.com/maddox "102 total commits to the home-assistant organization, 78 commits to home-assistant, 16 commits to homebridge-homeassistant, 8 commits to home-assistant.github.io")
|
- [Jon Maddox (@maddox)](https://github.com/maddox "102 total commits to the home-assistant organization, 78 commits to home-assistant, 16 commits to homebridge-homeassistant, 8 commits to home-assistant.github.io")
|
||||||
- [Jonatan Castro (@jcastro)](https://github.com/jcastro "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
- [Jonatan Castro (@jcastro)](https://github.com/jcastro "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||||
- [Jonathan Baginski (@patchedsoul)](https://github.com/patchedsoul "115 total commits to the home-assistant organization, 87 commits to fabric-home-assistant, 28 commits to home-assistant.github.io")
|
- [Jonathan Baginski (@patchedsoul)](https://github.com/patchedsoul "115 total commits to the home-assistant organization, 87 commits to fabric-home-assistant, 28 commits to home-assistant.github.io")
|
||||||
- [joopert (@joopert)](https://github.com/joopert "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [joopert (@joopert)](https://github.com/joopert "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
- [Jordan Keith (@zeddD1abl0)](https://github.com/zeddD1abl0 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Joseph Carter (@iKarith)](https://github.com/iKarith "9 total commits to the home-assistant organization, 9 commits to pi-gen")
|
- [Joseph Carter (@iKarith)](https://github.com/iKarith "9 total commits to the home-assistant organization, 9 commits to pi-gen")
|
||||||
- [Joseph Piron (@eagleamon)](https://github.com/eagleamon "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Joseph Piron (@eagleamon)](https://github.com/eagleamon "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Josh (@karlw00t)](https://github.com/karlw00t "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Josh (@karlw00t)](https://github.com/karlw00t "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "6 total commits to the home-assistant organization, 3 commits to homebridge-homeassistant, 3 commits to home-assistant")
|
- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "6 total commits to the home-assistant organization, 3 commits to homebridge-homeassistant, 3 commits to home-assistant")
|
||||||
- [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "24 total commits to the home-assistant organization, 15 commits to home-assistant, 9 commits to home-assistant.github.io")
|
- [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "24 total commits to the home-assistant organization, 15 commits to home-assistant, 9 commits to home-assistant.github.io")
|
||||||
- [Josh Wright (@JshWright)](https://github.com/JshWright "29 total commits to the home-assistant organization, 21 commits to home-assistant, 8 commits to home-assistant.github.io")
|
- [Josh Wright (@JshWright)](https://github.com/JshWright "28 total commits to the home-assistant organization, 20 commits to home-assistant, 8 commits to home-assistant.github.io")
|
||||||
- [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
- [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||||
- [JudgeDredd (@kentcalero)](https://github.com/kentcalero "10 total commits to the home-assistant organization, 9 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [JudgeDredd (@kentcalero)](https://github.com/kentcalero "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
||||||
- [Juggels (@Juggels)](https://github.com/Juggels "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Juggels (@Juggels)](https://github.com/Juggels "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Julian Kahnert (@JulianKahnert)](https://github.com/JulianKahnert "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Julian Kahnert (@JulianKahnert)](https://github.com/JulianKahnert "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Julien Danjou (@jd)](https://github.com/jd "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
|
||||||
- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [jumpkick (@jumpkick)](https://github.com/jumpkick "15 total commits to the home-assistant organization, 12 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [jumpkick (@jumpkick)](https://github.com/jumpkick "15 total commits to the home-assistant organization, 12 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Justin Dray (@justin8)](https://github.com/justin8 "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [Justin Dray (@justin8)](https://github.com/justin8 "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Justin Hayes (@GussyH)](https://github.com/GussyH "7 total commits to the home-assistant organization, 7 commits to hadashboard")
|
- [Justin Hayes (@GussyH)](https://github.com/GussyH "7 total commits to the home-assistant organization, 7 commits to hadashboard")
|
||||||
- [Justin Moy (@justincmoy)](https://github.com/justincmoy "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Justin Weberg (@justweb1)](https://github.com/justweb1 "28 total commits to the home-assistant organization, 13 commits to home-assistant-polymer, 7 commits to hassbot, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to home-assistant-js, 1 commit to hassio")
|
||||||
- [Justin Weberg (@justweb1)](https://github.com/justweb1 "28 total commits to the home-assistant organization, 13 commits to home-assistant-polymer, 7 commits to hassbot, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to hassio, 1 commit to home-assistant-js")
|
- [Justyn Shull (@justyns)](https://github.com/justyns "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||||
- [Justyn Shull (@justyns)](https://github.com/justyns "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [jwillaz (@jwillaz)](https://github.com/jwillaz "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [jwillaz (@jwillaz)](https://github.com/jwillaz "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Kai (@luxus)](https://github.com/luxus "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Kai (@luxus)](https://github.com/luxus "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
|
||||||
- [Kane610 (@Kane610)](https://github.com/Kane610 "7 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io, 1 commit to netdisco")
|
- [Kane610 (@Kane610)](https://github.com/Kane610 "7 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||||
- [Karen Goode (@kfgoode)](https://github.com/kfgoode "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
- [Karen Goode (@kfgoode)](https://github.com/kfgoode "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||||
|
- [karlkar (@karlkar)](https://github.com/karlkar "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [kaustubhphatak (@kaustubhphatak)](https://github.com/kaustubhphatak "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [kaustubhphatak (@kaustubhphatak)](https://github.com/kaustubhphatak "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Keith (@seedzero)](https://github.com/seedzero "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Keith (@seedzero)](https://github.com/seedzero "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Ken Bannister (@kb2ma)](https://github.com/kb2ma "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
- [Ken Bannister (@kb2ma)](https://github.com/kb2ma "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||||
- [Ken Davidson (@kwdavidson)](https://github.com/kwdavidson "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Ken Davidson (@kwdavidson)](https://github.com/kwdavidson "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to appdaemon")
|
||||||
- [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Kevin Christensen (@nivekmai)](https://github.com/nivekmai "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Kevin Christensen (@nivekmai)](https://github.com/nivekmai "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "10 total commits to the home-assistant organization, 6 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [Kevin Gottsman (@gottsman)](https://github.com/gottsman "7 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 1 commit to home-assistant")
|
- [Kevin Gottsman (@gottsman)](https://github.com/gottsman "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||||
- [Kevin Panaro (@kevinpanaro)](https://github.com/kevinpanaro "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Kevin Panaro (@kevinpanaro)](https://github.com/kevinpanaro "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Kevin Siml (@appzer)](https://github.com/appzer "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Kevin Siml (@appzer)](https://github.com/appzer "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Keyasha Brothern (@KMBrothern)](https://github.com/KMBrothern "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Keyasha Brothern (@KMBrothern)](https://github.com/KMBrothern "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [kfcook (@kfcook)](https://github.com/kfcook "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [kfcook (@kfcook)](https://github.com/kfcook "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [kireyeu (@kireyeu)](https://github.com/kireyeu "4 total commits to the home-assistant organization, 4 commits to home-assistant-notebooks")
|
- [kireyeu (@kireyeu)](https://github.com/kireyeu "4 total commits to the home-assistant organization, 4 commits to home-assistant-notebooks")
|
||||||
- [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Koen Ekelschot (@peckham)](https://github.com/peckham "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Klaus (@k-laus)](https://github.com/k-laus "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Krasimir Chariyski (@Chariyski)](https://github.com/Chariyski "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Krasimir Chariyski (@Chariyski)](https://github.com/Chariyski "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [Krasimir Zhelev (@zhelev)](https://github.com/zhelev "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [Krasimir Zhelev (@zhelev)](https://github.com/zhelev "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
- [Kyle Decot (@kyledecot)](https://github.com/kyledecot "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Kyle Decot (@kyledecot)](https://github.com/kyledecot "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -490,7 +492,6 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Lev Aronsky (@aronsky)](https://github.com/aronsky "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Lev Aronsky (@aronsky)](https://github.com/aronsky "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Lewis Juggins (@lwis)](https://github.com/lwis "52 total commits to the home-assistant organization, 41 commits to home-assistant, 10 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
- [Lewis Juggins (@lwis)](https://github.com/lwis "52 total commits to the home-assistant organization, 41 commits to home-assistant, 10 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [lichtteil (@lichtteil)](https://github.com/lichtteil "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [lichtteil (@lichtteil)](https://github.com/lichtteil "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [LightIsLife (@LightIsLife)](https://github.com/LightIsLife "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
|
||||||
- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "17 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 4 commits to home-assistant")
|
- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "17 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||||
- [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to hadashboard")
|
- [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to hadashboard")
|
||||||
- [lrmate (@lrmate)](https://github.com/lrmate "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [lrmate (@lrmate)](https://github.com/lrmate "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
@ -517,7 +518,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Marc Pabst (@mxtra)](https://github.com/mxtra "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
- [Marc Pabst (@mxtra)](https://github.com/mxtra "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [Marc Plano-Lesay (@Kernald)](https://github.com/Kernald "12 total commits to the home-assistant organization, 10 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [Marc Plano-Lesay (@Kernald)](https://github.com/Kernald "12 total commits to the home-assistant organization, 10 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Marcel030nl (@Marcel030nl)](https://github.com/Marcel030nl "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [Marcel030nl (@Marcel030nl)](https://github.com/Marcel030nl "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "114 total commits to the home-assistant organization, 62 commits to home-assistant, 52 commits to home-assistant.github.io")
|
- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "115 total commits to the home-assistant organization, 62 commits to home-assistant, 53 commits to home-assistant.github.io")
|
||||||
- [Marcin Jaworski (@yawor)](https://github.com/yawor "12 total commits to the home-assistant organization, 12 commits to appdaemon")
|
- [Marcin Jaworski (@yawor)](https://github.com/yawor "12 total commits to the home-assistant organization, 12 commits to appdaemon")
|
||||||
- [Marijn Giesen (@marijngiesen)](https://github.com/marijngiesen "7 total commits to the home-assistant organization, 5 commits to hadashboard, 2 commits to home-assistant.github.io")
|
- [Marijn Giesen (@marijngiesen)](https://github.com/marijngiesen "7 total commits to the home-assistant organization, 5 commits to hadashboard, 2 commits to home-assistant.github.io")
|
||||||
- [mariwing (@mariwing)](https://github.com/mariwing "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [mariwing (@mariwing)](https://github.com/mariwing "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -525,22 +526,25 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Mark Huson (@mehuman)](https://github.com/mehuman "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
- [Mark Huson (@mehuman)](https://github.com/mehuman "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
||||||
- [Mark Oude Veldhuis (@markoudev)](https://github.com/markoudev "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Mark Oude Veldhuis (@markoudev)](https://github.com/markoudev "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Markus Becker (@markushx)](https://github.com/markushx "6 total commits to the home-assistant organization, 6 commits to libcoap")
|
- [Markus Becker (@markushx)](https://github.com/markushx "6 total commits to the home-assistant organization, 6 commits to libcoap")
|
||||||
|
- [Markus Lipp (@LightIsLife)](https://github.com/LightIsLife "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Markus Peter (@bimbar)](https://github.com/bimbar "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Markus Peter (@bimbar)](https://github.com/bimbar "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
- [Martin Bernstorff (@ryqiem)](https://github.com/ryqiem "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Martin Bernstorff (@ryqiem)](https://github.com/ryqiem "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "124 total commits to the home-assistant organization, 99 commits to home-assistant, 25 commits to home-assistant.github.io")
|
- [Martin Donlon (@wickerwaka)](https://github.com/wickerwaka "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "130 total commits to the home-assistant organization, 105 commits to home-assistant, 25 commits to home-assistant.github.io")
|
||||||
|
- [Martin Rowan (@shortbloke)](https://github.com/shortbloke "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Martin Vacula (@MatoKafkac)](https://github.com/MatoKafkac "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Martin Vacula (@MatoKafkac)](https://github.com/MatoKafkac "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Martokk (@martokk)](https://github.com/martokk "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Martokk (@martokk)](https://github.com/martokk "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Mathew Peterson (@mathewpeterson)](https://github.com/mathewpeterson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to homebridge-homeassistant")
|
- [Mathew Peterson (@mathewpeterson)](https://github.com/mathewpeterson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to homebridge-homeassistant")
|
||||||
- [Matt N. (@mnoorenberghe)](https://github.com/mnoorenberghe "23 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 7 commits to home-assistant, 1 commit to home-assistant-polymer")
|
- [Matt N. (@mnoorenberghe)](https://github.com/mnoorenberghe "23 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 7 commits to home-assistant, 1 commit to home-assistant-polymer")
|
||||||
- [Matt Rogers (@rogersmj)](https://github.com/rogersmj "20 total commits to the home-assistant organization, 20 commits to hadashboard")
|
- [Matt Rogers (@rogersmj)](https://github.com/rogersmj "20 total commits to the home-assistant organization, 20 commits to hadashboard")
|
||||||
- [Matt Schmitt (@schmittx)](https://github.com/schmittx "3 total commits to the home-assistant organization, 3 commits to homebridge-homeassistant")
|
- [Matt Schmitt (@schmittx)](https://github.com/schmittx "18 total commits to the home-assistant organization, 14 commits to homebridge-homeassistant, 4 commits to home-assistant")
|
||||||
- [matt2005 (@matt2005)](https://github.com/matt2005 "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [matt2005 (@matt2005)](https://github.com/matt2005 "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Matteo Lampugnani (@t30)](https://github.com/t30 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
- [Matteo Lampugnani (@t30)](https://github.com/t30 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||||
- [Matthew Bowen (@mgbowen)](https://github.com/mgbowen "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Matthew Bowen (@mgbowen)](https://github.com/mgbowen "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Matthew Schick (@mattsch)](https://github.com/mattsch "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Matthew Schick (@mattsch)](https://github.com/mattsch "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Matthew Treinish (@mtreinish)](https://github.com/mtreinish "13 total commits to the home-assistant organization, 9 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [Matthew Treinish (@mtreinish)](https://github.com/mtreinish "16 total commits to the home-assistant organization, 10 commits to home-assistant, 6 commits to home-assistant.github.io")
|
||||||
- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS")
|
- [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS")
|
||||||
- [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
@ -571,18 +575,19 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Mitesh Patel (@gurumitts)](https://github.com/gurumitts "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [Mitesh Patel (@gurumitts)](https://github.com/gurumitts "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [Mitko Masarliev (@masarliev)](https://github.com/masarliev "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Mitko Masarliev (@masarliev)](https://github.com/masarliev "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [mje-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [mje-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [mjj4791 (@mjj4791)](https://github.com/mjj4791 "15 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [mjj4791 (@mjj4791)](https://github.com/mjj4791 "17 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||||
- [mnestor (@mnestor)](https://github.com/mnestor "6 total commits to the home-assistant organization, 5 commits to home-assistant, 1 commit to home-assistant-polymer")
|
- [mnestor (@mnestor)](https://github.com/mnestor "6 total commits to the home-assistant organization, 5 commits to home-assistant, 1 commit to home-assistant-polymer")
|
||||||
- [Molodax (@Molodax)](https://github.com/Molodax "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
- [Molodax (@Molodax)](https://github.com/Molodax "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||||
- [Moon Shot (@moonshot)](https://github.com/moonshot "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Moon Shot (@moonshot)](https://github.com/moonshot "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [motir (@motir)](https://github.com/motir "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
- [motir (@motir)](https://github.com/motir "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [mtl010957 (@mtl010957)](https://github.com/mtl010957 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [mtl010957 (@mtl010957)](https://github.com/mtl010957 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
|
- [Naren Salem (@naren8642)](https://github.com/naren8642 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Nate (@BillyNate)](https://github.com/BillyNate "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Nate (@BillyNate)](https://github.com/BillyNate "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Nathan Flynn (@eperdeme)](https://github.com/eperdeme "1 total commits to the home-assistant organization, 1 commit to hassio-addons")
|
- [Nathan Flynn (@eperdeme)](https://github.com/eperdeme "1 total commits to the home-assistant organization, 1 commit to hassio-addons")
|
||||||
- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "14 total commits to the home-assistant organization, 6 commits to home-assistant, 6 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "16 total commits to the home-assistant organization, 8 commits to home-assistant, 6 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
||||||
- [Neil Lathwood (@laf)](https://github.com/laf "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
- [Neil Lathwood (@laf)](https://github.com/laf "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Nelis Willers (@NelisW)](https://github.com/NelisW "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant")
|
- [Nelis Willers (@NelisW)](https://github.com/NelisW "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant")
|
||||||
- [NeLLyMerC (@NeLLyMerC)](https://github.com/NeLLyMerC "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [NeLLyMerC (@NeLLyMerC)](https://github.com/NeLLyMerC "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -595,21 +600,21 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Nick Waring (@nickwaring)](https://github.com/nickwaring "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Nick Waring (@nickwaring)](https://github.com/nickwaring "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Nicolas Graziano (@ngraziano)](https://github.com/ngraziano "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Nicolas Graziano (@ngraziano)](https://github.com/ngraziano "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Nicolas Martignoni (@martignoni)](https://github.com/martignoni "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
- [Nicolas Martignoni (@martignoni)](https://github.com/martignoni "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
||||||
- [Niklas (@niklaswa)](https://github.com/niklaswa "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Niklas (@niklaswa)](https://github.com/niklaswa "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Nikolas Beutler (@biacz)](https://github.com/biacz "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Nikolas Beutler (@biacz)](https://github.com/biacz "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Nils Uliczka (@darookee)](https://github.com/darookee "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Nils Uliczka (@darookee)](https://github.com/darookee "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [NMA (@nma83)](https://github.com/nma83 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [NMA (@nma83)](https://github.com/nma83 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [nodomain (@nodomain)](https://github.com/nodomain "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
- [nodomain (@nodomain)](https://github.com/nodomain "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
||||||
- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "112 total commits to the home-assistant organization, 87 commits to home-assistant, 25 commits to home-assistant.github.io")
|
- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "112 total commits to the home-assistant organization, 87 commits to home-assistant, 25 commits to home-assistant.github.io")
|
||||||
- [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [NotoriousBDG (@notoriousbdg)](https://github.com/notoriousbdg "1 total commits to the home-assistant organization, 1 commit to hassio-addons")
|
- [NotoriousBDG (@notoriousbdg)](https://github.com/notoriousbdg "3 total commits to the home-assistant organization, 3 commits to hassio-addons")
|
||||||
- [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "7 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to homebridge-homeassistant")
|
- [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "7 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to homebridge-homeassistant")
|
||||||
- [nunojusto (@nunojusto)](https://github.com/nunojusto "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [nunojusto (@nunojusto)](https://github.com/nunojusto "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [obgm (@obgm)](https://github.com/obgm "480 total commits to the home-assistant organization, 480 commits to libcoap")
|
- [obgm (@obgm)](https://github.com/obgm "480 total commits to the home-assistant organization, 480 commits to libcoap")
|
||||||
- [Olav Alexander Mjelde (@olavxxx)](https://github.com/olavxxx "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Olav Alexander Mjelde (@olavxxx)](https://github.com/olavxxx "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [OLD PROFILE! Go to /dennisreimann (@dbloete)](https://github.com/dbloete "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [OLD PROFILE! Go to /dennisreimann (@dbloete)](https://github.com/dbloete "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [Ole-Kenneth (@olekenneth)](https://github.com/olekenneth "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
- [Ole-Kenneth (@olekenneth)](https://github.com/olekenneth "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||||
- [Oleksii Serdiuk (@leppa)](https://github.com/leppa "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Oleksii Serdiuk (@leppa)](https://github.com/leppa "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "18 total commits to the home-assistant organization, 11 commits to home-assistant, 6 commits to home-assistant.github.io, 1 commit to netdisco")
|
- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "18 total commits to the home-assistant organization, 11 commits to home-assistant, 6 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||||
- [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the home-assistant organization, 10 commits to home-assistant")
|
- [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the home-assistant organization, 10 commits to home-assistant")
|
||||||
@ -618,7 +623,7 @@ 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 organization, 1 commit to homebridge-homeassistant")
|
- [oznu (@oznu)](https://github.com/oznu "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||||
- [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the home-assistant organization, 62 commits to home-assistant.github.io")
|
- [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the home-assistant organization, 62 commits to home-assistant.github.io")
|
||||||
- [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the home-assistant organization, 9 commits to home-assistant, 1 commit to netdisco")
|
- [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the home-assistant organization, 9 commits to home-assistant, 1 commit to netdisco")
|
||||||
- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "1789 total commits to the home-assistant organization, 685 commits to hassio, 375 commits to home-assistant, 255 commits to hassio-addons, 229 commits to hassio-build, 229 commits to home-assistant.github.io, 14 commits to hassio-addons-example, 1 commit to home-assistant-js-websocket, 1 commit to netdisco")
|
- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "1870 total commits to the home-assistant organization, 727 commits to hassio, 377 commits to home-assistant, 274 commits to hassio-addons, 238 commits to hassio-build, 238 commits to home-assistant.github.io, 14 commits to hassio-addons-example, 1 commit to home-assistant-js-websocket, 1 commit to netdisco")
|
||||||
- [patkap (@patkap)](https://github.com/patkap "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [patkap (@patkap)](https://github.com/patkap "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
@ -634,16 +639,16 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [PetePriority (@PetePriority)](https://github.com/PetePriority "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [PetePriority (@PetePriority)](https://github.com/PetePriority "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [petkov (@petkov)](https://github.com/petkov "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [petkov (@petkov)](https://github.com/petkov "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "11 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.github.io")
|
- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "11 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||||
- [pezinek (@pezinek)](https://github.com/pezinek "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [pezinek (@pezinek)](https://github.com/pezinek "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
- [Phil (@godloth)](https://github.com/godloth "10 total commits to the home-assistant organization, 10 commits to home-assistant.github.io")
|
- [Phil (@godloth)](https://github.com/godloth "10 total commits to the home-assistant organization, 10 commits to home-assistant.github.io")
|
||||||
- [Phil Cole (@filcole)](https://github.com/filcole "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Phil Cole (@filcole)](https://github.com/filcole "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Phil Haack (@Haacked)](https://github.com/Haacked "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Phil Haack (@Haacked)](https://github.com/Haacked "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "13 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 6 commits to home-assistant")
|
- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "15 total commits to the home-assistant organization, 9 commits to home-assistant.github.io, 6 commits to home-assistant")
|
||||||
- [Phileep (@Phileep)](https://github.com/Phileep "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Phileep (@Phileep)](https://github.com/Phileep "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
- [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||||
- [Philip Lundrigan (@philipbl)](https://github.com/philipbl "65 total commits to the home-assistant organization, 56 commits to home-assistant, 9 commits to home-assistant.github.io")
|
- [Philip Lundrigan (@philipbl)](https://github.com/philipbl "65 total commits to the home-assistant organization, 56 commits to home-assistant, 9 commits to home-assistant.github.io")
|
||||||
- [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "20 total commits to the home-assistant organization, 13 commits to home-assistant, 7 commits to home-assistant.github.io")
|
- [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "28 total commits to the home-assistant organization, 18 commits to home-assistant, 10 commits to home-assistant.github.io")
|
||||||
- [PhracturedBlue (@PhracturedBlue)](https://github.com/PhracturedBlue "8 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [PhracturedBlue (@PhracturedBlue)](https://github.com/PhracturedBlue "12 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [Pierre Ståhl (@postlund)](https://github.com/postlund "34 total commits to the home-assistant organization, 22 commits to home-assistant, 8 commits to home-assistant.github.io, 4 commits to netdisco")
|
- [Pierre Ståhl (@postlund)](https://github.com/postlund "34 total commits to the home-assistant organization, 22 commits to home-assistant, 8 commits to home-assistant.github.io, 4 commits to netdisco")
|
||||||
- [pinksocks (@pinksocks)](https://github.com/pinksocks "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [pinksocks (@pinksocks)](https://github.com/pinksocks "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Piratonym (@Piratonym)](https://github.com/Piratonym "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Piratonym (@Piratonym)](https://github.com/Piratonym "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
@ -664,9 +669,9 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [rkabadi (@rkabadi)](https://github.com/rkabadi "17 total commits to the home-assistant organization, 17 commits to home-assistant")
|
- [rkabadi (@rkabadi)](https://github.com/rkabadi "17 total commits to the home-assistant organization, 17 commits to home-assistant")
|
||||||
- [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
- [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||||
- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1191 total commits to the home-assistant organization, 531 commits to home-assistant-iOS, 255 commits to home-assistant, 247 commits to home-assistant.github.io, 80 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 9 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to home-assistant-js-websocket, 3 commits to hassbot, 3 commits to organization, 3 commits to home-assistant-cli, 3 commits to scenegen, 3 commits to hadashboard, 3 commits to appdaemon, 3 commits to home-assistant-js, 2 commits to fabric-home-assistant, 2 commits to LabelBot, 2 commits to home-assistant-ansible, 2 commits to micropython-home-assistant, 2 commits to home-assistant-dev-helper, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-assets, 2 commits to home-assistant-notebooks")
|
- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1197 total commits to the home-assistant organization, 531 commits to home-assistant-iOS, 255 commits to home-assistant, 247 commits to home-assistant.github.io, 86 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 9 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to hadashboard, 3 commits to home-assistant-cli, 3 commits to hassbot, 3 commits to scenegen, 3 commits to home-assistant-js, 3 commits to home-assistant-js-websocket, 3 commits to appdaemon, 3 commits to organization, 2 commits to LabelBot, 2 commits to fabric-home-assistant, 2 commits to micropython-home-assistant, 2 commits to home-assistant-notebooks, 2 commits to home-assistant-dev-helper, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-assets, 2 commits to home-assistant-ansible")
|
||||||
- [Robby Grossman (@freerobby)](https://github.com/freerobby "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Robby Grossman (@freerobby)](https://github.com/freerobby "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Robin (@robmarkcole)](https://github.com/robmarkcole "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Robin (@robmarkcole)](https://github.com/robmarkcole "8 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
- [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||||
- [Roddie Hasan (@eiddor)](https://github.com/eiddor "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
- [Roddie Hasan (@eiddor)](https://github.com/eiddor "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||||
- [Roi Dayan (@roidayan)](https://github.com/roidayan "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [Roi Dayan (@roidayan)](https://github.com/roidayan "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||||
@ -698,15 +703,16 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Samuel Bétrisey (@betrisey)](https://github.com/betrisey "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Samuel Bétrisey (@betrisey)](https://github.com/betrisey "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [sander76 (@sander76)](https://github.com/sander76 "39 total commits to the home-assistant organization, 35 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [sander76 (@sander76)](https://github.com/sander76 "39 total commits to the home-assistant organization, 35 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [schneefux (@schneefux)](https://github.com/schneefux "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [schneefux (@schneefux)](https://github.com/schneefux "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||||
- [Scott Griffin (@scottocs11)](https://github.com/scottocs11 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
- [Scott Griffin (@scottocs11)](https://github.com/scottocs11 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||||
- [Scott O'Neil (@americanwookie)](https://github.com/americanwookie "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Scott O'Neil (@americanwookie)](https://github.com/americanwookie "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Scott Reston (@ih8gates)](https://github.com/ih8gates "9 total commits to the home-assistant organization, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
- [Scott Reston (@ih8gates)](https://github.com/ih8gates "9 total commits to the home-assistant organization, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||||
- [Sean Dague (@sdague)](https://github.com/sdague "58 total commits to the home-assistant organization, 39 commits to home-assistant, 10 commits to home-assistant.github.io, 5 commits to home-assistant-polymer, 3 commits to netdisco, 1 commit to home-assistant-js")
|
- [Sean Dague (@sdague)](https://github.com/sdague "58 total commits to the home-assistant organization, 39 commits to home-assistant, 10 commits to home-assistant.github.io, 5 commits to home-assistant-polymer, 3 commits to netdisco, 1 commit to home-assistant-js")
|
||||||
- [Sean Gollschewsky (@gollo)](https://github.com/gollo "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [Sean Gollschewsky (@gollo)](https://github.com/gollo "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
- [Sebastian (@sebk-666)](https://github.com/sebk-666 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Sebastian (@sebk-666)](https://github.com/sebk-666 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
- [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
||||||
- [Sebastian Hartnick (@goir)](https://github.com/goir "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
- [Sebastian Hartnick (@goir)](https://github.com/goir "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||||
|
- [Sebastian Muszynski (@syssi)](https://github.com/syssi "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Sebastian von Minckwitz (@teodoc)](https://github.com/teodoc "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
- [Sebastian von Minckwitz (@teodoc)](https://github.com/teodoc "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||||
- [sfam (@sfam)](https://github.com/sfam "65 total commits to the home-assistant organization, 58 commits to home-assistant, 5 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant-polymer")
|
- [sfam (@sfam)](https://github.com/sfam "65 total commits to the home-assistant organization, 58 commits to home-assistant, 5 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant-polymer")
|
||||||
- [Shawna (@Nightarrow85)](https://github.com/Nightarrow85 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Shawna (@Nightarrow85)](https://github.com/Nightarrow85 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -721,15 +727,15 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Stefano Scipioni (@scipioni)](https://github.com/scipioni "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Stefano Scipioni (@scipioni)](https://github.com/scipioni "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Stephen Edgar (@ntwb)](https://github.com/ntwb "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant")
|
- [Stephen Edgar (@ntwb)](https://github.com/ntwb "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant")
|
||||||
- [Stephen Hoekstra (@shoekstra)](https://github.com/shoekstra "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Stephen Hoekstra (@shoekstra)](https://github.com/shoekstra "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
|
- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Steven Webb (@cy1701)](https://github.com/cy1701 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Steven Webb (@cy1701)](https://github.com/cy1701 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Stu Gott (@stu-gott)](https://github.com/stu-gott "9 total commits to the home-assistant organization, 5 commits to home-assistant.github.io, 4 commits to home-assistant")
|
- [Stu Gott (@stu-gott)](https://github.com/stu-gott "9 total commits to the home-assistant organization, 5 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||||
- [Stuart Mumford (@Cadair)](https://github.com/Cadair "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Stuart Mumford (@Cadair)](https://github.com/Cadair "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Stéphane Bidoul (ACSONE) (@sbidoul)](https://github.com/sbidoul "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Stéphane Bidoul (ACSONE) (@sbidoul)](https://github.com/sbidoul "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [System Tester (@systemtester)](https://github.com/systemtester "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [System Tester (@systemtester)](https://github.com/systemtester "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Sytone (@sytone)](https://github.com/sytone "11 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant-cli, 2 commits to home-assistant, 1 commit to hassio-build")
|
- [Sytone (@sytone)](https://github.com/sytone "11 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant-cli, 2 commits to home-assistant, 1 commit to hassio-build")
|
||||||
- [Sören Oldag (@soldag)](https://github.com/soldag "12 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 5 commits to home-assistant")
|
- [Sören Oldag (@soldag)](https://github.com/soldag "15 total commits to the home-assistant organization, 8 commits to home-assistant.github.io, 7 commits to home-assistant")
|
||||||
- [Teagan Glenn (@Teagan42)](https://github.com/Teagan42 "59 total commits to the home-assistant organization, 49 commits to home-assistant, 9 commits to home-assistant.github.io, 1 commit to home-assistant-js")
|
- [Teagan Glenn (@Teagan42)](https://github.com/Teagan42 "59 total commits to the home-assistant organization, 49 commits to home-assistant, 9 commits to home-assistant.github.io, 1 commit to home-assistant-js")
|
||||||
- [techtrails (@techtrails)](https://github.com/techtrails "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
|
||||||
- [tedstriker (@tedstriker)](https://github.com/tedstriker "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [tedstriker (@tedstriker)](https://github.com/tedstriker "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Teemu Mikkonen (@T3m3z)](https://github.com/T3m3z "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Teemu Mikkonen (@T3m3z)](https://github.com/T3m3z "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
@ -744,16 +750,19 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [ThinkPadNL (@ThinkPadNL)](https://github.com/ThinkPadNL "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [ThinkPadNL (@ThinkPadNL)](https://github.com/ThinkPadNL "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [Thomas (@ktpx)](https://github.com/ktpx "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Thomas (@ktpx)](https://github.com/ktpx "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
- [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||||
- [Thomas Phillips (@thomas-teknique)](https://github.com/thomas-teknique "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
- [Thomas Phillips (@thomas-teknique)](https://github.com/thomas-teknique "2 total commits to the home-assistant organization, 2 commits to pi-gen")
|
||||||
- [Thomas Purchas (@thomaspurchas)](https://github.com/thomaspurchas "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
- [Thomas Purchas (@thomaspurchas)](https://github.com/thomaspurchas "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||||
- [Thomas Pötsch (@thp-comnets)](https://github.com/thp-comnets "7 total commits to the home-assistant organization, 7 commits to libcoap")
|
- [Thomas Pötsch (@thp-comnets)](https://github.com/thp-comnets "7 total commits to the home-assistant organization, 7 commits to libcoap")
|
||||||
- [thrawnarn (@thrawnarn)](https://github.com/thrawnarn "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [thrawnarn (@thrawnarn)](https://github.com/thrawnarn "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||||
- [ThUnD3r|Gr33n (@thundergreen)](https://github.com/thundergreen "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
- [ThUnD3r|Gr33n (@thundergreen)](https://github.com/thundergreen "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [tijuca (@tijuca)](https://github.com/tijuca "106 total commits to the home-assistant organization, 106 commits to libcoap")
|
- [tijuca (@tijuca)](https://github.com/tijuca "106 total commits to the home-assistant organization, 106 commits to libcoap")
|
||||||
- [Tim (@tinglis1)](https://github.com/tinglis1 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Tim (@tinglis1)](https://github.com/tinglis1 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Tim Gray (@tgray)](https://github.com/tgray "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Tim Gray (@tgray)](https://github.com/tgray "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
|
- [Tim Lyakhovetskiy (@tlyakhov)](https://github.com/tlyakhov "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Tim Wilbrink (@TWilb)](https://github.com/TWilb "14 total commits to the home-assistant organization, 14 commits to home-assistant-iOS")
|
- [Tim Wilbrink (@TWilb)](https://github.com/TWilb "14 total commits to the home-assistant organization, 14 commits to home-assistant-iOS")
|
||||||
|
- [timstanley1985 (@timstanley1985)](https://github.com/timstanley1985 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||||
- [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant-polymer")
|
- [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant-polymer")
|
||||||
- [Toby Gray (@tobygray)](https://github.com/tobygray "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Toby Gray (@tobygray)](https://github.com/tobygray "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Todd McNeal (@tmcneal)](https://github.com/tmcneal "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Todd McNeal (@tmcneal)](https://github.com/tmcneal "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -762,7 +771,7 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the home-assistant organization, 53 commits to home-assistant, 9 commits to home-assistant.github.io, 6 commits to home-assistant-polymer, 2 commits to netdisco")
|
- [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the home-assistant organization, 53 commits to home-assistant, 9 commits to home-assistant.github.io, 6 commits to home-assistant-polymer, 2 commits to netdisco")
|
||||||
- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [Tom J Nowell (@tomjn)](https://github.com/tomjn "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Tom J Nowell (@tomjn)](https://github.com/tomjn "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "10 total commits to the home-assistant organization, 4 commits to home-assistant-polymer, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "11 total commits to the home-assistant organization, 4 commits to home-assistant-polymer, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
- [Tomi Tuhkanen (@ttu)](https://github.com/ttu "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Tomi Tuhkanen (@ttu)](https://github.com/ttu "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||||
- [Tony Torralba (@atorralba)](https://github.com/atorralba "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Tony Torralba (@atorralba)](https://github.com/atorralba "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
@ -771,24 +780,27 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
- [Trevor (@tboyce021)](https://github.com/tboyce021 "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Trevor (@tboyce021)](https://github.com/tboyce021 "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Trey Hunner (@treyhunner)](https://github.com/treyhunner "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Trey Hunner (@treyhunner)](https://github.com/treyhunner "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
- [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||||
- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||||
- [Tyler Crumpton (@tylercrumpton)](https://github.com/tylercrumpton "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Tyler Crumpton (@tylercrumpton)](https://github.com/tylercrumpton "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Tyler Page (@iamtpage)](https://github.com/iamtpage "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
- [Tyler Page (@iamtpage)](https://github.com/iamtpage "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||||
- [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
- [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||||
|
- [upsert (@upsert)](https://github.com/upsert "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
- [Valentin Alexeev (@valentinalexeev)](https://github.com/valentinalexeev "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.github.io")
|
- [Valentin Alexeev (@valentinalexeev)](https://github.com/valentinalexeev "11 total commits to the home-assistant organization, 8 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||||
- [Valentin VĂLCIU (@axiac)](https://github.com/axiac "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Valentin VĂLCIU (@axiac)](https://github.com/axiac "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [viswa-swami (@viswa-swami)](https://github.com/viswa-swami "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
- [viswa-swami (@viswa-swami)](https://github.com/viswa-swami "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||||
- [Vlad Korniev (@vkorn)](https://github.com/vkorn "5 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to hassio-build")
|
- [Vlad Korniev (@vkorn)](https://github.com/vkorn "5 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to hassio-build")
|
||||||
- [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
- [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
||||||
- [vrs01 (@vrs01)](https://github.com/vrs01 "18 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 5 commits to appdaemon")
|
- [vrs01 (@vrs01)](https://github.com/vrs01 "20 total commits to the home-assistant organization, 14 commits to home-assistant.github.io, 6 commits to appdaemon")
|
||||||
- [Wagner Sartori Junior (@trunet)](https://github.com/trunet "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
- [Wagner Sartori Junior (@trunet)](https://github.com/trunet "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||||
|
- [waxhell (@waxhell)](https://github.com/waxhell "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Wilco Land (@Wilco89)](https://github.com/Wilco89 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
- [Wilco Land (@Wilco89)](https://github.com/Wilco89 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||||
- [wildcomputations (@wildcomputations)](https://github.com/wildcomputations "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [wildcomputations (@wildcomputations)](https://github.com/wildcomputations "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "15 total commits to the home-assistant organization, 14 commits to home-assistant.github.io, 1 commit to fabric-home-assistant")
|
- [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "16 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 1 commit to fabric-home-assistant")
|
||||||
- [Will Hughes (@insertjokehere)](https://github.com/insertjokehere "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Will Hughes (@insertjokehere)](https://github.com/insertjokehere "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [Will W. (@tiktok7)](https://github.com/tiktok7 "6 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io")
|
- [Will W. (@tiktok7)](https://github.com/tiktok7 "6 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||||
- [Willems Davy (@joyrider3774)](https://github.com/joyrider3774 "7 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 3 commits to home-assistant")
|
- [Willems Davy (@joyrider3774)](https://github.com/joyrider3774 "7 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 3 commits to home-assistant")
|
||||||
- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "73 total commits to the home-assistant organization, 52 commits to home-assistant, 19 commits to home-assistant.github.io, 2 commits to netdisco")
|
- [William Johansson (@radhus)](https://github.com/radhus "1 total commits to the home-assistant organization, 1 commit to hassio")
|
||||||
|
- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "79 total commits to the home-assistant organization, 55 commits to home-assistant, 22 commits to home-assistant.github.io, 2 commits to netdisco")
|
||||||
- [wind-rider (@wind-rider)](https://github.com/wind-rider "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
- [wind-rider (@wind-rider)](https://github.com/wind-rider "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||||
- [Wojciech Bederski (@wuub)](https://github.com/wuub "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
- [Wojciech Bederski (@wuub)](https://github.com/wuub "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||||
- [wokar (@wokar)](https://github.com/wokar "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
- [wokar (@wokar)](https://github.com/wokar "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||||
@ -811,4 +823,4 @@ This page contains a list of people who have contributed in one way or another t
|
|||||||
|
|
||||||
This page is irregularly updated using the [`credits_generator` tool](https://github.com/home-assistant/home-assistant.github.io/tree/next/credits_generator). If you think that you are missing, please let us know.
|
This page is irregularly updated using the [`credits_generator` tool](https://github.com/home-assistant/home-assistant.github.io/tree/next/credits_generator). If you think that you are missing, please let us know.
|
||||||
|
|
||||||
<i>This page was last updated Sunday, July 30th 2017, 7:56:19 pm UTC.</i>
|
<i>This page was last updated Sunday, August 20th 2017, 8:44:16 pm UTC.</i>
|
||||||
|
@ -12,7 +12,7 @@ footer: true
|
|||||||
|
|
||||||
Before you commit any changes, check your work against these requirements:
|
Before you commit any changes, check your work against these requirements:
|
||||||
|
|
||||||
- All dependencies are included via the `REQUIREMENTS` variable in your platform or component and only imported inside functions that use them
|
- All dependencies from [pypi](https://pypi.python.org/pypi) are included via the `REQUIREMENTS` variable in your platform or component and only imported inside functions that use them
|
||||||
- New dependencies are added to `requirements_all.txt` (if applicable), using `script/gen_requirements_all.py`
|
- New dependencies are added to `requirements_all.txt` (if applicable), using `script/gen_requirements_all.py`
|
||||||
- The `.coveragerc` file is updated to exclude your platform if there are no tests available or your new code uses a third-party library for communication with the device, service, or sensor
|
- The `.coveragerc` file is updated to exclude your platform if there are no tests available or your new code uses a third-party library for communication with the device, service, or sensor
|
||||||
- Documentation is developed for [home-assistant.io](https://home-assistant.io/)
|
- Documentation is developed for [home-assistant.io](https://home-assistant.io/)
|
||||||
|
@ -39,7 +39,8 @@ This page describes the steps for publishing a new Home Assistant release. Those
|
|||||||
3. Update `config.yml` with link to the new release blog post and version number (at the bottom of the file).
|
3. Update `config.yml` with link to the new release blog post and version number (at the bottom of the file).
|
||||||
4. Merge `current` into release branch (`$ git checkout release-0-40 && git merge current`) to make the PR mergeable.
|
4. Merge `current` into release branch (`$ git checkout release-0-40 && git merge current`) to make the PR mergeable.
|
||||||
5. Merge pull request (blog post, updated frontpage, and all new documentation) to `current`. DO NOT SQUASH!
|
5. Merge pull request (blog post, updated frontpage, and all new documentation) to `current`. DO NOT SQUASH!
|
||||||
6. Merge `current` into `next`.
|
6. Run `credits_generator`.
|
||||||
|
7. Merge `current` into `next`.
|
||||||
|
|
||||||
### {% linkable_title Docker Hub %}
|
### {% linkable_title Docker Hub %}
|
||||||
|
|
||||||
|
@ -12,11 +12,11 @@ footer: true
|
|||||||
|
|
||||||
### {% linkable_title ResinOS / Generic %}
|
### {% linkable_title ResinOS / Generic %}
|
||||||
|
|
||||||
Map the USB drive into add-on with `devices` options. If you need it on multiple add-ons you can use the `/share` folder which is accessible from multiple add-ons.
|
Map the USB drive into add-on with `devices` options. If you need it on multiple add-ons, you can use the `/share` folder which is accessible from various add-ons.
|
||||||
It is also possible to create an add-on that only mounts stuff to `share`.
|
It is also possible to create an add-on that only mounts stuff to `share`.
|
||||||
|
|
||||||
You can format the USB device with multiple volumes and map it to a specific add-on.
|
You can format the USB device with multiple volumes and map it to a specific add-on.
|
||||||
|
|
||||||
### {% linkable_title Generic %}
|
### {% linkable_title Generic %}
|
||||||
|
|
||||||
The `share` is default on `/usr/share/hassio/share` so you can mount your volumes into this folder.
|
The `share` defaults to `/usr/share/hassio/share` so you can mount your volumes into this folder.
|
||||||
|
@ -9,7 +9,7 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
---
|
---
|
||||||
|
|
||||||
Hass.io turns your Raspberry Pi (or other device) into the ultimate home automation hub powered by Home Assistant. With Hass.io you can focus on integrating your devices and writing automations.
|
Hass.io turns your Raspberry Pi (or another device) into the ultimate home automation hub powered by Home Assistant. With Hass.io you can focus on integrating your devices and writing automations.
|
||||||
|
|
||||||
[Go to the installation instructions »][install]
|
[Go to the installation instructions »][install]
|
||||||
|
|
||||||
|
@ -19,13 +19,11 @@ Hass.io images are available for all available Raspberry Pi and Intel NUC platfo
|
|||||||
- Flash the downloaded image to an SD card using [Etcher].
|
- Flash the downloaded image to an SD card using [Etcher].
|
||||||
- Optional - Setup the WiFi or static IP: On the SD-card, edit the `system-connections/resin-sample` file and follow the [ResinOS howto][resinos-network].
|
- Optional - Setup the WiFi or static IP: On the SD-card, edit the `system-connections/resin-sample` file and follow the [ResinOS howto][resinos-network].
|
||||||
- Insert SD card to Raspberry Pi and turn it on. On first boot, it downloads the latest version of Home Assistant which takes ~20 minutes (slower/faster depending on the platform).
|
- Insert SD card to Raspberry Pi and turn it on. On first boot, it downloads the latest version of Home Assistant which takes ~20 minutes (slower/faster depending on the platform).
|
||||||
|
|
||||||
|
<img src='/images/hassio/screenshots/first-start.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 12px;' width='150' />
|
||||||
|
|
||||||
- You will be able to reach your installation at [http://hassio.local:8123][local].
|
- You will be able to reach your installation at [http://hassio.local:8123][local].
|
||||||
|
- Enable either the [Samba add-on][samba] or the [SSH add-on][ssh] to manage your configuration in `/config/` (From the UI choose **Hass.io** which is located in the sidebar).
|
||||||
<p class='img'>
|
|
||||||
<img src='/images/hassio/screenshots/first-start.png' />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
- Enable either the [Samba add-on][samba] or the [SSH add-on][ssh] to manage your configuration (From the UI choose **Hass.io** which is located in the sidebar).
|
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
If you copy over your existing Home Assistant configuration, make sure to enable the Hass.io panel by adding either `discovery:` or `hassio:` to your configuration.
|
If you copy over your existing Home Assistant configuration, make sure to enable the Hass.io panel by adding either `discovery:` or `hassio:` to your configuration.
|
||||||
|
@ -9,7 +9,7 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
---
|
---
|
||||||
|
|
||||||
Hass.io allows anyone to create add-on repositories to easily share their add-ons for Hass.io. To try this locally, you can use our example add-on repository at
|
Hass.io allows anyone to create add-on repositories to share their add-ons for Hass.io easily. To try this locally, you can use our example add-on repository at
|
||||||
|
|
||||||
```text
|
```text
|
||||||
https://github.com/home-assistant/hassio-addons-example
|
https://github.com/home-assistant/hassio-addons-example
|
||||||
@ -31,4 +31,4 @@ Add the URLs of repositories (one per line) and then press "Save". A new card fo
|
|||||||
|
|
||||||
### {% linkable_title Help: Repository is not showing up %}
|
### {% linkable_title Help: Repository is not showing up %}
|
||||||
|
|
||||||
If you have added a repository but it's not showing up, it means that the repository contains invalid configuration. Go to the Hass.io panel -> Three dot menu -> Advanced Settings -> Supervisor card -> View logs and scroll to the bottom. It should tell you what went wrong. Report this information to the repository author.
|
If you have added a repository, but it's not showing up, it means that the repository contains invalid configuration. Go to the Hass.io panel -> Three dot menu -> Advanced Settings -> Supervisor card -> View logs and scroll to the bottom. It should tell you what went wrong. Report this information to the repository author.
|
||||||
|
@ -9,11 +9,11 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
---
|
---
|
||||||
|
|
||||||
Hass.io is a managed environment. This means that you can install applications that can be embedded into Home Assistant using the `command_line` sensor/switch.
|
Hass.io is a managed environment, which means that you can install applications that can be embedded into Home Assistant using the `command_line` sensor/switch.
|
||||||
|
|
||||||
There are two options if you need to run a script to read data from a sensor or send commands to other devices on Hass.io.
|
There are two options if you need to run a script to read data from a sensor or send commands to other devices on Hass.io.
|
||||||
|
|
||||||
First option is to write a custom component for Home Assistant. Using Python you can communicate with your device. For custom component, take a look at the [developer documentation][custom-component].
|
The first option is to write a custom component for Home Assistant. Using Python, you can communicate with your device. For more information about developing a custom component, take a look at the [developer documentation][custom-component].
|
||||||
|
|
||||||
The second option is to make a local add-on for Hass.io that sends the data to Home Assistant via MQTT. Before we dive into this, read up on [Hass.io add-on development][addons-tutorial] first.
|
The second option is to make a local add-on for Hass.io that sends the data to Home Assistant via MQTT. Before we dive into this, read up on [Hass.io add-on development][addons-tutorial] first.
|
||||||
|
|
||||||
|
@ -21,11 +21,12 @@ If you need GPIO on raspberry-pi3 for you Z-Wave module add follow line into `co
|
|||||||
dtoverlay=pi3-miniuart-bt
|
dtoverlay=pi3-miniuart-bt
|
||||||
```
|
```
|
||||||
|
|
||||||
For very special device, the `/dev/ttyAMA0` will not detect by udev and not mapped with docker. So you need explicit set this device for mapping to Home-Assistant. Execute this command on ssh add-on:
|
For some exceptional devices, the `/dev/ttyAMA0` will not be detected by udev and are therefor not mapped with docker.
|
||||||
|
So you need explicit set this device for mapping to Home-Assistant. Execute this command on ssh add-on:
|
||||||
```bash
|
```bash
|
||||||
$ curl -d '{"devices": ["ttyAMA0"]}' http://172.17.0.2/homeassistant/options
|
$ curl -d '{"devices": ["ttyAMA0"]}' http://172.17.0.2/homeassistant/options
|
||||||
```
|
```
|
||||||
After that you need change `usb_path` to `/dev/ttyAMA0`.
|
After that, you need change `usb_path` to `/dev/ttyAMA0`.
|
||||||
|
|
||||||
### HUSBZB-1:
|
### HUSBZB-1:
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -12,9 +12,9 @@ footer: true
|
|||||||
People are starting to present Home Assistant at meetings and get-togethers. Below you find a couple of bullet points for your presentation.
|
People are starting to present Home Assistant at meetings and get-togethers. Below you find a couple of bullet points for your presentation.
|
||||||
|
|
||||||
- [Numbers, numbers, numbers](/help/trivia/) and other details
|
- [Numbers, numbers, numbers](/help/trivia/) and other details
|
||||||
- Over 700 implementations
|
- Over 750 implementations
|
||||||
- Not depending on cloud services. We like to keep your privacy private
|
- Not depending on cloud services. We like to keep your privacy private
|
||||||
- Control all your devices from a single, mobile-friendly, interface
|
- Control all your devices from a single, mobile-friendly interface
|
||||||
- Written in Python3 with 94% test coverage
|
- Written in Python3 with 94% test coverage
|
||||||
- Active and helpful community
|
- Active and helpful community
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ This page contains only irrelevant and unhelpful information about Home Assistan
|
|||||||
|
|
||||||
### {% linkable_title Name %}
|
### {% linkable_title Name %}
|
||||||
|
|
||||||
Isn't it obvious? Home Assistant is the good soul that is assisting you in your home. It's also common to refer to Home Assistant simply as HA or hass (not to be confused with the German word "Hass", it's more like the abbreviation of **H**ome **A**ssistant **S**erver **S**ervice).
|
Isn't it obvious? Home Assistant is the good soul that is assisting you in your home. It's common to refer to Home Assistant simply as HA or `hass` (not to be confused with the German word "Hass", it's more like the abbreviation of **H**ome **A**ssistant **S**erver **S**ervice). [`hass`](/docs/tools/hass/) is also the name of the command-line part.
|
||||||
|
|
||||||
### {% linkable_title Website %}
|
### {% linkable_title Website %}
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 47 KiB |
Loading…
x
Reference in New Issue
Block a user