The MMM-AquareaSmartCloud
module is a MagicMirror² addon. This module displays some of your data from a [https://www.aircon.panasonic.eu/DE_de/aquareaplus/aquarea-smart-cloud/](Panasonic Aquarea Cloud) Adapter on your Mirror.
- Run
git clone https://github.com/martinburheimtingstad/MMM-AquareaSmartCloud
from inside yourMagicMirror/modules
folder. - Then go into the modules direcory:
cd MMM-AquareaSmartCloud
. - Then run
npm install
to install dependencies.
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'MMM-AquareaSmartCloud',
position: 'bottom_right',
config: {
email: "user@domain.tld",
password: "password",
device_id: "XXXXXXXXXX",
refreshInterval: 1000 * 60 * 30,
updateInterval: 1000 * 60 * 30, // optional, default every 10 seconds
}
}
]
The following properties can be configured:
Option | Description | Example values |
---|---|---|
email |
Your Panasonic Smartcloud email adress |
Example: john.smith@domain.com
This value is REQUIRED |
password |
Your Panasonic Smartcloud password |
Example: password
This value is REQUIRED |
device_id |
Your heat pump device ID. If not supplied we will show the first device | Example: 79001434541304300000084453731303933831007B1313831373030343453731534369770210000
|
refreshInterval |
How often data is fetched from Panasonic (ms) | Example: 1800000
Default value: 1800000
This value is OPTIONAL |
updateInterval |
How often the UI is updated (ms) | Example: 1800000
Default value: 1800000
This value is OPTIONAL |