homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
142 lines • 6.46 kB
JavaScript
"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.RainSensor = void 0;
const MotionSensor_1 = require("./MotionSensor");
const utils = __importStar(require("./../Utils"));
//------------------------------------------------------------------------------
class RainSensor extends MotionSensor_1.MotionSensor {
constructor(platform, accessory, id, name) {
super(platform, accessory, id, name);
this.platform = platform;
this.accessory = accessory;
this.id = id;
this.name = name;
// custom characteristic for intensity string
if (name.includes('Rate') || name.includes('rate')) {
if (!this.service.testCharacteristic(utils.CHAR_INTENSITY_NAME)) {
this.service.addCharacteristic(new this.platform.api.hap.Characteristic(utils.CHAR_INTENSITY_NAME, utils.CHAR_INTENSITY_UUID, {
format: "string" /* Formats.STRING */,
perms: ["pr" /* Perms.PAIRED_READ */, "ev" /* Perms.NOTIFY */],
}));
}
}
this.setName(name);
this.setStatusActive(false);
}
//----------------------------------------------------------------------------
updateRate(ratein, threshold, time) {
var _a, _b, _c, _d;
if (!Number.isFinite(ratein)) {
this.platform.log.warn(`Cannot update ${this.name}, rate ${ratein} is NaN`);
this.updateStatusActive(false);
return;
}
let ratemm;
let rateStr;
let thresholdmm;
switch ((_b = (_a = this.platform.config) === null || _a === void 0 ? void 0 : _a.units) === null || _b === void 0 ? void 0 : _b.rain) {
case 'mm':
ratemm = ratein * 25.4;
thresholdmm = threshold;
rateStr = `${ratemm.toFixed(1)} mm/hour`;
break;
default:
case 'in':
ratemm = ratein * 25.4;
thresholdmm = threshold * 25.4;
rateStr = `${ratein.toFixed(1)} in/hour`;
break;
}
const staticNames = utils.truthy((_d = (_c = this.platform.config) === null || _c === void 0 ? void 0 : _c.additional) === null || _d === void 0 ? void 0 : _d.staticNames);
this.updateStatusActive(true);
this.updateName(staticNames ? this.name : `${this.name} ${rateStr}`);
this.updateValue(rateStr);
this.updateIntensity(ratemm);
this.updateTime(time);
if (!Number.isFinite(threshold)) {
if (typeof threshold === 'undefined') {
this.platform.log.debug(`Cannot update ${this.name} threshold detection, threshold is not set`);
}
else {
this.platform.log.warn(`Cannot update ${this.name} threshold detection, threshold ${threshold} is NaN. `
+ 'Verify plugin configuration');
}
this.updateMotionDetected(false);
return;
}
this.updateMotionDetected(ratemm >= thresholdmm);
}
//----------------------------------------------------------------------------
updateTotal(totalin, threshold, time) {
var _a, _b, _c, _d;
if (!Number.isFinite(totalin)) {
this.platform.log.warn(`Cannot update ${this.name}, total ${totalin} is NaN`);
this.updateStatusActive(false);
return;
}
let totalmm;
let totalStr;
let thresholdmm;
switch ((_b = (_a = this.platform.config) === null || _a === void 0 ? void 0 : _a.units) === null || _b === void 0 ? void 0 : _b.rain) {
case 'mm':
totalmm = totalin * 25.4;
thresholdmm = threshold;
totalStr = `${totalmm.toFixed(1)} mm`;
break;
default:
case 'in':
totalmm = totalin * 25.4;
thresholdmm = threshold * 25.4;
totalStr = `${totalin.toFixed(1)} in`;
break;
}
const staticNames = utils.truthy((_d = (_c = this.platform.config) === null || _c === void 0 ? void 0 : _c.additional) === null || _d === void 0 ? void 0 : _d.staticNames);
this.updateStatusActive(true);
this.updateName(staticNames ? this.name : `${this.name} ${totalStr}`);
this.updateValue(totalStr);
this.updateTime(time);
if (!Number.isFinite(threshold)) {
if (typeof threshold === 'undefined') {
this.platform.log.debug(`Cannot update ${this.name} threshold detection, threshold is not set`);
}
else {
this.platform.log.warn(`Cannot update ${this.name} threshold detection, threshold ${threshold} is NaN. `
+ 'Verify plugin configuration');
}
this.updateMotionDetected(false);
return;
}
this.updateMotionDetected(totalmm >= thresholdmm);
}
//----------------------------------------------------------------------------
updateIntensity(ratemm) {
const intensity = utils.toRainIntensity(ratemm);
this.platform.log.debug(`Setting ${this.name} intensity to ${intensity}`);
this.service.updateCharacteristic(utils.CHAR_INTENSITY_NAME, intensity);
}
}
exports.RainSensor = RainSensor;
//# sourceMappingURL=RainSensor.js.map