/node-weishaupt-api

Node module to interact with Weishaupt Heater over WCM-COM 1.0 home module

Primary LanguageTypeScriptMIT LicenseMIT

Node-Weishaupt-API

NPM version Downloads Build Status

A node module for the local Weishaupt WCM-COM 1.0 home API entirely written in TypeScript.

Disclaimer

The developers of this module are in no way endorsed by or affiliated with Weishaupt GmbH, or any associated subsidiaries, logos or trademarks.

Installation

npm install weisshaupt-api --production

Example

import { Weishaupt } from 'weishaupt-api';

const api = new Weishaupt({ url: 'http://192.168.144.162' });

(async () => {
    const res = await api.getHomeParameters();
    console.log(res);

    console.log('----------------------');

    const res2 = await api.getWTCGProcessParameters();
    console.log(res2);

    console.log('----------------------');

    const res3 = await api.getWCMSOLProcessParameters();
    console.log(res3);
})();

Changelog

0.1.2 (2022-09-18)

  • (foxriver76) fixed some types

0.1.0 (2022-09-18)

  • (foxriver76) throw meaningful error if server is busy

0.0.2

  • (foxriver76) added units for the values

0.0.1

  • (foxriver76) initial release