A module for MagicMirror² designed to pull data from a Daikin AirBase wifi controller and display it on the mirror. As far as I can tell this device is only in the Australian/New Zealand market so this module would only be relevant to users there. Essentially if you use the Daikin Airbase app on your phone to access your air conditioner then this module should work with it.
Navigate into your MagicMirror's modules
folder and execute git clone https://github.com/matt-thurling/MMM-DaikinAirbase
To use this module, add the following configuration block to the modules array in the config/config.js
file:
let config = {
modules: [
{
module: 'MMM-DaikinAirbase',
position: 'top_right',
config: {
ipAddress: '10.1.1.99', // replace with the ip address of your airbase
}
},
],
};
Option | Description |
---|---|
ipAddress |
Required Local IP address of the Daikin Device. |
updateInterval |
Optional How often the content will be fetched. Type: int (milliseconds) Default 30000 (1/2 minute) |
animationSpeed |
Optional Speed of the update animation. Type: int (milliseconds) Default 1000 milliseconds (1 second) |
This module was originally forked from the MMM-Daikin module built by Kyrill Meyer which made use of a node module for accessing the Daikin device which unfortunately did not support the Daikin Airbase. Luckily the Airbase API is fairly basic so not too difficult to get working.