dirigera
Version:
A TypeScript client for IKEA's DIRIGERA smart home hub
42 lines (39 loc) • 960 B
text/typescript
import type {
CommonDeviceAttributes,
Device,
IdentifiableDeviceAttributes,
JoinableDeviceAttributes,
OtaUpdatableDeviceAttributes,
} from './Device.ts'
export interface LightAttributes
extends
CommonDeviceAttributes,
IdentifiableDeviceAttributes,
JoinableDeviceAttributes,
OtaUpdatableDeviceAttributes,
IdentifiableDeviceAttributes {
isOn: boolean
startupOnOff: 'startOn' | 'startPrevious' | 'startToggle'
lightLevel: number
colorHue?: number
colorSaturation?: number
colorTemperature?: number
colorTemperatureMin?: number
colorTemperatureMax?: number
startupTemperature?: number
colorMode?: 'temperature' | 'color'
deviceOnBehavior?: {
behavior: 'lastValue' | 'adaptiveProfile'
profileId: string
}
}
export interface Light extends Device {
type: 'light'
deviceType: 'light'
attributes: LightAttributes
isHidden: boolean
adaptiveProfile: {
id?: string
active?: boolean
}
}