iobroker.shelly
Version:
Integrate your Shelly devices into ioBroker via MQTT or CoAP
20 lines (14 loc) • 375 B
JavaScript
;
const shellyHelperGen2 = require('../gen2-helper');
/**
* Shelly Pro 1 / shellypro1
*
* https://shelly-api-docs.shelly.cloud/gen2/Devices/Gen2/ShellyPro1
*/
const shellypro1 = {};
shellyHelperGen2.addSwitch(shellypro1, 0, false);
shellyHelperGen2.addInput(shellypro1, 0);
shellyHelperGen2.addInput(shellypro1, 1);
module.exports = {
shellypro1,
};