homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
102 lines • 4.08 kB
JavaScript
;
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.DistanceSensor = void 0;
const MotionSensor_1 = require("./MotionSensor");
const utils = __importStar(require("./../Utils"));
//------------------------------------------------------------------------------
class DistanceSensor 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;
this.setName(name);
this.setStatusActive(false);
}
//---------------------------------------------------------------------------
updateDepth(depthmm, threshold, time) {
if (!Number.isFinite(depthmm)) {
this.platform.log.warn(`Cannot update ${this.name}, depth ${depthmm} is NaN`);
this.updateStatusActive(false);
return;
}
let depthStr;
let thresholdmm;
switch (this.platform.config?.units?.laserDistance) {
case 'mm':
thresholdmm = threshold;
depthStr = `${depthmm.toFixed(1)} mm`;
break;
case 'mt':
thresholdmm = threshold * 1000.0;
depthStr = `${(depthmm / 1000.0).toFixed(1)} m`;
break;
case 'ft':
thresholdmm = (threshold * 12.0) * 25.4;
depthStr = `${(depthmm / 25.4 / 12.0).toFixed(1)} ft`;
break;
default:
case 'in':
thresholdmm = threshold * 25.4;
depthStr = `${(depthmm / 25.4).toFixed(1)} in`;
break;
}
const staticNames = utils.truthy(this.platform.config?.additional?.staticNames);
this.updateStatusActive(true);
this.updateName(staticNames ? this.name : `${this.name} ${depthStr}`);
this.updateValue(depthStr);
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(depthmm >= thresholdmm);
}
}
exports.DistanceSensor = DistanceSensor;
//# sourceMappingURL=DistanceSensor.js.map