Additional Module for MagicMirror² https://github.com/MichMich/MagicMirror/
This module displays your local MAX! heating temperatures from your MAX! cube.
- Navigate into your MagicMirror's modules folder and execute git clone https://github.com/mirko3000/MMM-max.git. A new folder will appear navigate into it.
- Execute git submodule init
- Execute git submodule update
- Navigate into the subfolder 'maxcube' and execute npm install to install the node dependencies.
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'MMM-max',
position: 'bottom_left',
header: 'Heizung / Temperatur', // This is optional
config: {
// See 'Configuration options' for more information.
}
},
]
The following properties can be configured:
Option | Description |
---|---|
maxIP |
The IP address of your local MAX! cube. Possible values: 192.168.1.100
Default value: none
|
updateInterval |
The update interval in minutes. Possible values: 5
Default value: 5
|
twoColLayout |
Defines the layout either in a single or 2-column layout. In false the single column layout is used. Possible values: true
Default value: false
|
This Modul is using the maxcube library (https://github.com/ivesdebruycker/maxcube).