node-red-contrib-ewelink-cube
Version:
Node-RED integration with eWeLink Cube
20 lines (19 loc) • 807 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ECategory = void 0;
var ECategory;
(function (ECategory) {
ECategory["PLUG"] = "plug";
ECategory["SWITCH"] = "switch";
ECategory["LIGHT"] = "light";
ECategory["CURTAIN"] = "curtain";
ECategory["CONTACT_SENSOR"] = "contactSensor";
ECategory["MOTION_SENSOR"] = "motionSensor";
ECategory["TEMPERATURE_SENSOR"] = "temperatureSensor";
ECategory["HUMIDITY_SENSOR"] = "humiditySensor";
ECategory["TEMPERATURE_HUMIDITY_SENSOR"] = "temperatureAndHumiditySensor";
ECategory["WATER_LEAK_DETECTOR"] = "waterLeakDetector";
ECategory["SMOKE_DETECTOR"] = "smokeDetector";
ECategory["BUTTON"] = "button";
})(ECategory || (ECategory = {}));
exports.ECategory = ECategory;
;