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