daikin-controller
Version:
Control Daikin Air Conditioner devices using nodejs
37 lines (36 loc) • 787 B
TypeScript
export declare const Power: {
[key: string]: boolean;
};
export declare const Mode: {
[key: string]: number;
};
export declare enum SpecialModeState {
OFF = 0,
ON = 1
}
export declare enum SpecialModeKind {
STREAMER = 0,// Flash STREAMER Air-Purifier
POWERFUL = 1,// POWERFUL Operation
ECONO = 2
}
export declare const SpecialModeResponse: {
[key: string]: string;
};
export declare const FanRate: {
[key: string]: number | 'A' | 'B';
};
export declare const FanDirection: {
[key: string]: number;
};
export declare const ErrorCode: {
[key: string]: number;
};
export declare const Type: {
[key: string]: string;
};
export declare const AdpMode: {
[key: string]: string;
};
export declare const Method: {
[key: string]: string;
};