UNPKG

homebridge-ecowitt-weather-sensors

Version:

Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)

75 lines 3.45 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Sensor = void 0; const utils = __importStar(require("./../Utils")); //------------------------------------------------------------------------------ class Sensor { constructor(platform, accessory, service) { this.platform = platform; this.accessory = accessory; this.service = service; if (!this.service.testCharacteristic(this.platform.Characteristic.ConfiguredName)) { this.service.addCharacteristic(this.platform.Characteristic.ConfiguredName); } // custom characteristic for last updated timestamp if (!this.service.testCharacteristic(utils.CHAR_TIME_NAME)) { this.service.addCharacteristic(new this.platform.api.hap.Characteristic(utils.CHAR_TIME_NAME, utils.CHAR_TIME_UUID, { format: "string" /* Formats.STRING */, perms: ["pr" /* Perms.PAIRED_READ */, "ev" /* Perms.NOTIFY */], })); } } //--------------------------------------------------------------------------- setName(name) { this.service.setCharacteristic(this.platform.Characteristic.ConfiguredName, name); this.service.setCharacteristic(this.platform.Characteristic.Name, name); } updateName(name) { this.service.updateCharacteristic(this.platform.Characteristic.ConfiguredName, name); this.service.updateCharacteristic(this.platform.Characteristic.Name, name); } //--------------------------------------------------------------------------- setStatusActive(active) { this.service.setCharacteristic(this.platform.Characteristic.StatusActive, active); } updateStatusActive(active) { this.service.updateCharacteristic(this.platform.Characteristic.StatusActive, active); } //--------------------------------------------------------------------------- removeService() { this.accessory.removeService(this.service); } //--------------------------------------------------------------------------- hideService(hide) { this.service.setHiddenService(hide); } //--------------------------------------------------------------------------- updateTime(time) { this.service.updateCharacteristic(utils.CHAR_TIME_NAME, `${time} UTC`); } } exports.Sensor = Sensor; //# sourceMappingURL=Sensor.js.map