Fix configuration sample

This commit is contained in:
Fabian Affolter 2017-08-24 08:43:30 +02:00
parent b589e12b21
commit f77ddca248
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -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.