UNPKG

domoticz-api

Version:

Advanced api based on your current Domoticz api with well formated results ;)

13 lines (10 loc) 235 B
"use strict"; var Device = require('../device'); class Power extends Device.Device { constructor(value) { super(); this.value = value; this.unity = "Watt" } } module.exports.Power = Power;