UNPKG

domoticz-api

Version:

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

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