A MagicMirror Module for your Tado Smart Thermostat.
- A symbol to show if the heater is currently active.
- The current temperature
- The target temperature
- The humidity
- The hot water temperature, if not available; the current power state
In your terminal, go to your MagicMirror's Module folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/WouterEekhout/MMM-Tado
Configure the module in your config.js
file.
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'MMM-Tado',
position: 'top_right', // This can be any of the regions.
config: {
username: 'your_tado_username',
password: 'your_tado_password',
updateInterval: 300000
}
}
]
The following properties can be configured:
Option | Description |
---|---|
username |
Required - Your Tado username. |
password |
Required - Your Tado password. |
updateInterval |
Optional - In milliseconds the update interval. Default: 300000 (5 minutes). |
This module is powered by the Tado API.
This module is highly inspired by the MMM-Toon module: https://github.com/MichMich/MMM-Toon.
The Tado client is inspired by: node-tado by dVelopment: https://github.com/dVelopment/node-tado