UNPKG

@pietrolubini/homebridge-ecoflow

Version:
11 lines (10 loc) 540 B
import { EcoFlowAccessoryBase } from '@ecoflow/accessories/ecoFlowAccessoryBase'; import { ServiceBase } from '@ecoflow/services/serviceBase'; import { Characteristic } from 'homebridge'; export declare class TemperatureSensorService extends ServiceBase { protected readonly ecoFlowAccessory: EcoFlowAccessoryBase; private currentTemperature; constructor(ecoFlowAccessory: EcoFlowAccessoryBase, serviceSubType?: string); protected addCharacteristics(): Characteristic[]; updateCurrentTemperature(value: number): void; }