1.1.8 • Published 8 years ago

toonapp v1.1.8

Weekly downloads
2
License
Unlicense
Repository
github
Last release
8 years ago

toonapp

Unofficial node.js module to interact with Eneco Toon thermostat.

npm Build Status Dependency Status

Notice: this is not using the new official API, but instead the same endpoints as the iPhone app.

Example

// Set your Eneco account details
var toon = require ('toonapp') ({
  username: 'your@email.tld',
  password: 'account password'
});

// Set preset to Home
toon.setPreset (1, function (err, data) {
  if (err) {
    console.log (err);
    return;
  }

  // OK, now get full status
  toon.getState (console.log);
});

Installation

npm install toonapp

Methods

Each method requires a callback function to process the response data. This function receives two arguments: err and data. When something goes wrong err is an Error and data is not available. When all is good err is null and data is the parsed response.

function callback (err, data) {
  if (err) {
    console.log (err);
  } else {
    // process data
  }
}

Errors

messagedescriptionadditional
api errorThe API returned an errorerr.reason and err.errorCode
invalid responseThe API response was baderr.reason
request failedThe request can not be madeerr.reason

version

( callback )

Get base version info.

paramtyperequireddescription
callbackfunctionyesYour callback function
toon.version (console.log);
{ hostUrl: 'https://toonopafstand.eneco.nl',
  appVersion: '1.5',
  minDisplayVersion: 'qb2/ene/2.2.0' }

setPreset

( preset, callback )

Set Toon temperature to a preset.

paramtyperequireddescription
presetnumberyesPreset ID
callbackfunctionyesYour callback function
toon.setPreset (2, callback);

Presets

IDlabeladditional
0ComfortSee getState() .thermostatStates
1Thuis" "
2Slapen" "
3Weg" "
4VacationDisables schedule
5-unknown

setTemperature

( value, callback )

Set manual temperature, overriding scheduled preset until next program starts.

paramtyperequireddescription
valuenumberyesCelcius * 100, i.e. set 1845 for 18.45 C
callbackfunctionyesYour callback function
// 19.48 C, displayed as 19.5 on Toon
toon.setTemperature (1948, callback);

getState

( callback )

Get current status information, statistics, readings, etc.

paramtyperequireddescription
callbackfunctionyesYour callback function
toon.getState (function (err, data) {
  if (err) { return console.log (err); }
  // Current Watt/h from smart meter
  if (data.powerUsage) {
    console.log (data.powerUsage.value);
  }
});

Short example

Sometimes you get only a short response like below, the output can vary a lot. Most times the list is huge and for example thermostatInfo can be missing.

{ success: true,
  thermostatInfo: 
   { currentTemp: 2010,
     currentSetpoint: 2050,
     currentDisplayTemp: 2050,
     programState: 2,
     activeState: 0,
     nextProgram: 1,
     nextState: 3,
     nextTime: 1421940600,
     nextSetpoint: 1600,
     randomConfigId: 1804289383,
     errorFound: 255,
     zwaveOthermConnected: 0,
     burnerInfo: '1',
     otCommError: '0',
     currentModulationLevel: 7,
     haveOTBoiler: 1 },
  thermostatStates: 
   { state: 
      [ { id: 0, tempValue: 2050, dhw: 1 },
        { id: 1, tempValue: 1950, dhw: 1 },
        { id: 2, tempValue: 1700, dhw: 1 },
        { id: 3, tempValue: 1600, dhw: 1 },
        { id: 4, tempValue: 600, dhw: 0 },
        { id: 5, tempValue: 600, dhw: 1 } ] } }

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org

Author

Franklin van de Meent

1.1.8

8 years ago

1.1.7

8 years ago

1.1.6

8 years ago

1.1.5

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.1

9 years ago

1.0.0

9 years ago