UNPKG

@dotwee/homebridge-z2m

Version:

Expose your Zigbee devices to HomeKit with ease, by integrating Zigbee2MQTT with Homebridge.

16 lines 937 B
import { BasicAccessory } from '../interfaces'; import { ExposesEntryWithBinaryProperty, ExposesEntryWithProperty, ExposesKnownTypes } from '../../z2mModels'; import { Characteristic, Service } from 'homebridge'; import { BasicSensorHandler } from './basic'; export declare class AirPressureSensorHandler extends BasicSensorHandler { static readonly exposesName: string; static readonly exposesType: ExposesKnownTypes; private static readonly ServiceUUID; private static readonly CharacteristicUUID; private static readonly CharacteristicName; static AirPressureSensor(displayName: string, subtype?: string | undefined): Service; static get AirPressure(): Characteristic; constructor(expose: ExposesEntryWithProperty, allExposes: ExposesEntryWithBinaryProperty[], accessory: BasicAccessory); static generateIdentifier(endpoint: string | undefined): string; } //# sourceMappingURL=air_pressure.d.ts.map