homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
132 lines • 5.79 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 () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.WindSensor = void 0;
const MotionSensor_1 = require("./MotionSensor");
const utils = __importStar(require("./../Utils"));
//------------------------------------------------------------------------------
class WindSensor extends MotionSensor_1.MotionSensor {
platform;
accessory;
id;
name;
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('Speed') || name.includes('speed') || name.includes('Gust') || name.includes('gust')) {
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);
}
//----------------------------------------------------------------------------
updateDirection(windDir, time) {
if (!Number.isFinite(windDir)) {
this.platform.log.warn(`Cannot update ${this.name}, direction ${windDir} is NaN`);
this.updateStatusActive(false);
return;
}
const windDirStr = `${windDir.toFixed(0)}° (${utils.toWindSector(windDir)})`;
const staticNames = utils.truthy(this.platform.config?.additional?.staticNames);
this.updateStatusActive(true);
this.updateName(staticNames ? this.name : `${this.name} ${windDirStr}`);
this.updateValue(windDirStr);
this.updateTime(time);
}
//----------------------------------------------------------------------------
updateSpeed(windSpeedmph, threshold, time) {
if (!Number.isFinite(windSpeedmph)) {
this.platform.log.warn(`Cannot update ${this.name}, speed ${windSpeedmph} is NaN`);
this.updateStatusActive(false);
return;
}
let speedStr;
let thresholdmph;
switch (this.platform.config?.units?.wind) {
case 'kts':
thresholdmph = threshold * 1.15078;
speedStr = `${utils.toKts(windSpeedmph).toFixed(1)} kts`;
break;
case 'kph':
thresholdmph = threshold * 0.621371;
speedStr = `${utils.toKph(windSpeedmph).toFixed(1)} kph`;
break;
case 'mps':
thresholdmph = threshold * 2.23694;
speedStr = `${utils.toMps(windSpeedmph).toFixed(1)} mps`;
break;
default:
case 'mph':
thresholdmph = threshold;
speedStr = `${windSpeedmph.toFixed(1)} mph`;
break;
}
const staticNames = utils.truthy(this.platform.config?.additional?.staticNames);
this.updateStatusActive(true);
this.updateName(staticNames ? this.name : `${this.name} ${speedStr}`);
this.updateValue(speedStr);
this.updateIntensity(windSpeedmph);
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(windSpeedmph >= thresholdmph);
}
//----------------------------------------------------------------------------
updateIntensity(windSpeedmph) {
const beaufort = (utils.toBeafort(windSpeedmph)).description;
this.platform.log.debug(`Setting ${this.name} intensity to ${beaufort}`);
this.service.updateCharacteristic(utils.CHAR_INTENSITY_NAME, beaufort);
}
}
exports.WindSensor = WindSensor;
//# sourceMappingURL=WindSensor.js.map