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.
20 lines (19 loc) • 721 B
TypeScript
/// <reference types="node" />
import { GW_FRAME_CFM } from "./common.js";
export declare class SoftwareVersion {
readonly CommandVersion: number;
readonly MainVersion: number;
readonly SubVersion: number;
readonly BranchID: number;
readonly Build: number;
readonly MicroBuild: number;
constructor(CommandVersion: number, MainVersion: number, SubVersion: number, BranchID: number, Build: number, MicroBuild: number);
toString(): string;
}
export declare class GW_GET_VERSION_CFM extends GW_FRAME_CFM {
readonly SoftwareVersion: SoftwareVersion;
readonly HardwareVersion: number;
readonly ProductGroup: number;
readonly ProductType: number;
constructor(Data: Buffer);
}