@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
17 lines • 621 B
TypeScript
import { DeviceOpState } from '../../../states';
import { DeviceModel } from '../../../devices.model';
export declare enum RGBModes {
SCENE = 4,
MUSIC = 14
}
export declare const SceneModeStateName: 'sceneMode';
export type SceneModeStateName = typeof SceneModeStateName;
export type SceneMode = {
sceneId?: number;
sceneParamId?: number;
};
export declare class SceneModeState extends DeviceOpState<SceneModeStateName, SceneMode> {
constructor(device: DeviceModel, opType?: number, identifier?: number[]);
parseOpCommand(opCommand: number[]): void;
}
//# sourceMappingURL=rgb-light.modes.d.ts.map