iobroker.shelly
Version:
Integrate your Shelly devices into ioBroker via MQTT or CoAP
21 lines (14 loc) • 392 B
JavaScript
;
const shellyHelperGen2 = require('../gen2-helper');
/**
* Shelly 1L Gen 3 / shelly1lg3
*
* https://shelly-api-docs.shelly.cloud/gen2/Devices/Gen3/Shelly1LG3
*/
const shelly1lg3 = {};
shellyHelperGen2.addSwitch(shelly1lg3, 0, false);
shellyHelperGen2.addInput(shelly1lg3, 0);
shellyHelperGen2.addPlusAddon(shelly1lg3);
module.exports = {
shelly1lg3: shelly1lg3,
};