Skip to content

Latest commit

 

History

History
71 lines (59 loc) · 1.82 KB

README.md

File metadata and controls

71 lines (59 loc) · 1.82 KB

MMM-max

Additional Module for MagicMirror² https://github.com/MichMich/MagicMirror/

Module: MMM max

This module displays your local MAX! heating temperatures from your MAX! cube.

Installation

  1. 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.
  2. Execute git submodule init
  3. Execute git submodule update
  4. Navigate into the subfolder 'maxcube' and execute npm install to install the node dependencies.

Using the module

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.
		}
	},
]

Configuration options

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

Base API

This Modul is using the maxcube library (https://github.com/ivesdebruycker/maxcube).