A MagicMirror Module for your Toon® Smart Thermostat.
- A symbol to show if the heater is currently active.
- The target temperature.
- The current temperature.
- The current power consumption.
- The total power consumption for the current day.
- The total gas consumption for the current day.
In your terminal, go to your MagicMirror's Module folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/MichMich/MMM-Toon.git
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-Toon',
position: 'top_right', // This can be any of the regions.
config: {
apiKey: 'your_api_key', // Obtained from toonapi.com
apiSecret: 'your_api_secred', // Obtained from toonapi.com
username: 'your_toon_username',
password: 'your_toon_password'
}
}
]
The following properties can be configured:
Option | Description |
---|---|
apiKey |
Required - Your Toon API Key. Obtained from toonapi.com. |
apiSecret |
Required - Your Toon API Secret. Obtained from toonapi.com. |
username |
Required - Your Toon username. |
password |
Required - Your Toon password. |