diff --git a/atom.xml b/atom.xml index b3b9068813..18aef6776a 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
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:
$ pip install pyotp
-$ python -c 'import pyotp; print("Token: " + pyotp.random_base32())'
+$ pip3 install pyotp
+$ python3 -c 'import pyotp; print("Token:", pyotp.random_base32())'
+Token: IHEDPEBEVA2WVHB7
+
+
+To run in a Docker container:
+$ docker exec -it home-assistant python -c 'import pyotp; print("Token:", pyotp.random_base32())'
Token: IHEDPEBEVA2WVHB7
diff --git a/components/vacuum.roomba/index.html b/components/vacuum.roomba/index.html
index ddfb388de3..3fbb20b8fb 100644
--- a/components/vacuum.roomba/index.html
+++ b/components/vacuum.roomba/index.html
@@ -74,16 +74,14 @@
- The roomba
component allows you to control your Roomba.
+ The roomba
component allows you to control your iRobot Roomba vacuum.
-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.
+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.
-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:
# Example configuration.yaml entry
vacuum:
- platform: roomba
- name: My Roomba
host: IP_ADDRESS_OR_HOSTNAME
username: BLID
password: PASSWORD
@@ -92,16 +90,16 @@ with any Wi-Fi enabled Roomba like the 690, 890 or the 960.
Configuration variables:
- host (Required): Hostname or IP address of the Roomba.
- - username (Required): Username (BLID).
- - password (Required): Password.
- - certificate (Optional): Path to your certificate store (Default:
/etc/ssl/certs/ca-certificates.crt
)
- - continuous (Optional): Whether to operate in continuous mode (Default:
True
).
+ - username (Required): The username (BLID) fro your device.
+ - password (Required): The password for your device.
+ - name (Optional): The name of the vacuum.
+ - 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
.
-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
+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
-Retrieving your credentials
+ Retrieving your credentials
Please refer to here or here to retrieve both the BLID (username) and the password.
diff --git a/docs/frontend/browsers/index.html b/docs/frontend/browsers/index.html
index 2d25ed7578..55c92094ab 100644
--- a/docs/frontend/browsers/index.html
+++ b/docs/frontend/browsers/index.html
@@ -158,7 +158,7 @@
Firefox
- 49.0
+ 55.0
works
@@ -170,7 +170,7 @@
Chromium
- 53.0.2785.143
+ 60.0.3112.90
works
@@ -286,6 +286,7 @@
+There are reports that devices running with iOS prior to iOS 10, especially old iPads, are having trouble.