homebridge
    Preparing search index...

    Interface ColorControlState

    ColorControl cluster state Based on @matter/main/clusters ColorControl

    Note: We use a flexible interface to accommodate both ColorMode and EnhancedColorMode from Matter.js, which are distinct types in the spec but functionally compatible

    interface ColorControlState {
        colorMode?: number;
        colorTemperatureMireds?: number;
        colorTempPhysicalMaxMireds?: number;
        colorTempPhysicalMinMireds?: number;
        colorX?: number;
        colorY?: number;
        coupleColorTempToLevelMinMireds?: number;
        currentHue?: number;
        currentSaturation?: number;
        currentX?: number;
        currentY?: number;
        enhancedColorMode?: number;
        enhancedCurrentHue?: number;
        options?: number;
        transitionTime?: number;
    }
    Index

    Properties

    colorMode?: number
    colorTemperatureMireds?: number
    colorTempPhysicalMaxMireds?: number
    colorTempPhysicalMinMireds?: number
    colorX?: number
    colorY?: number
    coupleColorTempToLevelMinMireds?: number
    currentHue?: number
    currentSaturation?: number
    currentX?: number
    currentY?: number
    enhancedColorMode?: number
    enhancedCurrentHue?: number
    options?: number
    transitionTime?: number