homebridge-ecowitt-weather-sensors
Version:
Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)
77 lines • 3.65 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.CarbonDioxideSensor = void 0;
const Sensor_1 = require("./Sensor");
const utils = __importStar(require("./../Utils"));
//------------------------------------------------------------------------------
class CarbonDioxideSensor extends Sensor_1.Sensor {
constructor(platform, accessory, id, name) {
super(platform, accessory, accessory.services.filter(s => s.subtype === platform.serviceUuid(id))[0]
|| accessory.addService(platform.Service.CarbonDioxideSensor, name, platform.serviceUuid(id)));
this.platform = platform;
this.accessory = accessory;
this.id = id;
this.name = name;
this.setName(name);
this.setStatusActive(false);
}
//---------------------------------------------------------------------------
update(co2, time) {
var _a, _b;
if (!Number.isFinite(co2)) {
this.platform.log.warn(`Cannot update ${this.name}, CO₂ ${co2} is NaN`);
this.updateStatusActive(false);
return;
}
if (co2 < 0) {
this.platform.log.warn(`CO2 below the minimum of 0ppm for ${this.id}`);
co2 = 0;
}
else if (co2 > 100000) {
this.platform.log.warn(`CO2 above the maximum of 100000ppm for ${this.id}`);
co2 = 100000;
}
const co2Str = `${co2.toFixed(0)}ppm`;
const staticNames = utils.truthy((_b = (_a = this.platform.config) === null || _a === void 0 ? void 0 : _a.additional) === null || _b === void 0 ? void 0 : _b.staticNames);
this.updateName(staticNames ? this.name : `${this.name} ${co2Str}`);
this.updateLevel(+co2.toFixed(0));
this.updateDetected(co2 >= 1000); // 1000 ppm is generally accepted the safe limit
this.updateStatusActive(true);
this.updateTime(time);
}
//---------------------------------------------------------------------------
updateDetected(detected) {
this.service.updateCharacteristic(this.platform.Characteristic.CarbonDioxideDetected, detected
? this.platform.Characteristic.CarbonDioxideDetected.CO2_LEVELS_ABNORMAL
: this.platform.Characteristic.CarbonDioxideDetected.CO2_LEVELS_NORMAL);
}
//---------------------------------------------------------------------------
updateLevel(co2) {
this.service.updateCharacteristic(this.platform.Characteristic.CarbonDioxideLevel, co2);
}
}
exports.CarbonDioxideSensor = CarbonDioxideSensor;
//# sourceMappingURL=CarbonDioxideSensor.js.map