UNPKG

homebridge-jci-hitachi-platform

Version:

Homebridge platform plugin providing HomeKit support for Jci Hitachi air conditioners.

15 lines 872 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEVICE_STATUS_REFRESH_INTERVAL = exports.MAX_LOGIN_RETRY_DELAY = exports.LOGIN_RETRY_DELAY = exports.PLATFORM_NAME = exports.PLUGIN_NAME = void 0; // Name of the plugin (must match the `name` of the package.json). exports.PLUGIN_NAME = 'homebridge-JciHitachi-platform'; // The platform the plugin creates (see config.json). exports.PLATFORM_NAME = 'JciHitachi Platform'; // Base delay before the first reconnect attempt. 30 sec. exports.LOGIN_RETRY_DELAY = 30 * 1000; // Upper bound for the exponential reconnect backoff. We never stop retrying so the // plugin can recover on its own once the cloud comes back from maintenance. 10 min. exports.MAX_LOGIN_RETRY_DELAY = 600 * 1000; // 60 sec = 1 min exports.DEVICE_STATUS_REFRESH_INTERVAL = 60 * 1000; //# sourceMappingURL=settings.js.map