From 91197145c37ee4b984a2dd7cba17defd04763c42 Mon Sep 17 00:00:00 2001 From: Victor Vostrikov <1998617+gorynychzmey@users.noreply.github.com> Date: Wed, 12 Feb 2020 08:45:08 +0100 Subject: [PATCH] Multiple Tado accounts (#11992) * Rebased to next * :pencil2: Tweak Co-authored-by: Franck Nijhof --- source/_integrations/tado.markdown | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/source/_integrations/tado.markdown b/source/_integrations/tado.markdown index d66cc6bf56e..d707c665000 100644 --- a/source/_integrations/tado.markdown +++ b/source/_integrations/tado.markdown @@ -26,10 +26,21 @@ There is currently support for the following device types within Home Assistant: To use your tado thermostats in your installation, add the following to your `configuration.yaml` file: ```yaml -# Example configuration.yaml entry +# Example configuration.yaml entry with multiple accounts tado: - username: YOUR_USERNAME - password: YOUR_PASSWORD + - username: YOUR_USERNAME1 + password: YOUR_PASSWORD1 + - username: YOUR_USERNAME2 + password: YOUR_PASSWORD2 +``` + +In case of single account works as well: + +```yaml +# Example configuration.yaml entry with single account +tado: + username: YOUR_USERNAME + password: YOUR_PASSWORD ``` {% configuration %}