UNPKG

klf-200-api

Version:

This module provides a wrapper to the socket API of a Velux KLF-200 interface. You will need at least firmware 0.2.0.0.71 on your KLF interface for this library to work.

13 lines (12 loc) 414 B
import { GatewayCommand, GW_FRAME_NTF } from "./common.js"; export type SceneListEntry = { SceneID: number; Name: string; }; export declare class GW_GET_SCENE_LIST_NTF extends GW_FRAME_NTF { readonly Command: GatewayCommand.GW_GET_SCENE_LIST_NTF; readonly NumberOfScenes: number; readonly NumberOfRemainingScenes: number; readonly Scenes: SceneListEntry[]; constructor(Data: Buffer); }