homebridge-eightsleepthermostat
Version:
Homebridge thermostat accessory for the Eight Sleep Pod smart bed.
18 lines • 860 B
TypeScript
import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge';
import { EightSleepConnection } from './eightSleepConnection';
export declare class EightSleepThermostatPlatform implements DynamicPlatformPlugin {
readonly log: Logger;
readonly config: PlatformConfig;
readonly api: API;
readonly Service: typeof Service;
readonly Characteristic: typeof Characteristic;
readonly accessories: PlatformAccessory[];
connection?: EightSleepConnection;
constructor(log: Logger, config: PlatformConfig, api: API);
/**
* REQUIRED - Homebridge will call "configureAccessory" method once for each restored cached accessory
*/
configureAccessory(accessory: PlatformAccessory): void;
discoverDevices(): Promise<void>;
}
//# sourceMappingURL=platform.d.ts.map