UNPKG

domoticz-api

Version:

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

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