UNPKG

homebridge-raspberry-pi-sensehat

Version:
15 lines (14 loc) 507 B
import type { PlatformAccessory } from 'homebridge'; import type { SensehatPlatform } from './sensehatPlatform.js'; /** * Platform Accessory "Raspberry Temperature" */ export declare class RaspberryTemperatureAccessory { private readonly platform; private readonly accessory; private temperatureService; private temperature; constructor(platform: SensehatPlatform, accessory: PlatformAccessory); getCurrentTemperature(): Promise<number>; getTemperature: () => Promise<void>; }