UNPKG

zwave-js

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

64 lines (63 loc) 2.37 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var ControllerStatistics_exports = {}; __export(ControllerStatistics_exports, { ControllerStatisticsHost: () => ControllerStatisticsHost }); module.exports = __toCommonJS(ControllerStatistics_exports); var import_shared = require("@zwave-js/shared"); var import_Statistics = require("../driver/Statistics.js"); class ControllerStatisticsHost extends import_Statistics.StatisticsHost { static { __name(this, "ControllerStatisticsHost"); } createEmpty() { return { messagesTX: 0, messagesRX: 0, messagesDroppedRX: 0, NAK: 0, CAN: 0, timeoutACK: 0, timeoutResponse: 0, timeoutCallback: 0, messagesDroppedTX: 0 }; } transformBeforeEmit(statistics) { const ret = (0, import_shared.cloneDeep)(statistics); if (ret.backgroundRSSI) { ret.backgroundRSSI.channel0.average = Math.round(ret.backgroundRSSI.channel0.average); ret.backgroundRSSI.channel1.average = Math.round(ret.backgroundRSSI.channel1.average); if (ret.backgroundRSSI.channel2) { ret.backgroundRSSI.channel2.average = Math.round(ret.backgroundRSSI.channel2.average); } if (ret.backgroundRSSI.channel3) { ret.backgroundRSSI.channel3.average = Math.round(ret.backgroundRSSI.channel3.average); } } return ret; } } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { ControllerStatisticsHost }); //# sourceMappingURL=ControllerStatistics.js.map