homebridge-ecobee-status
Version:
Homebridge plugin to control Ecobee thermostat Home/Away/Sleep status through HomeKit security system interface
11 lines • 369 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClimateState = void 0;
// types.ts
var ClimateState;
(function (ClimateState) {
ClimateState["HOME"] = "home";
ClimateState["AWAY"] = "away";
ClimateState["SLEEP"] = "sleep";
})(ClimateState || (exports.ClimateState = ClimateState = {}));
//# sourceMappingURL=types.js.map