You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const endpoint = new Endpoint(
ExtendedColorLightDevice.with(BridgedDeviceBasicInformationServer),
{
id: `COL-1}`,
bridgedDeviceBasicInformation: {
nodeLabel: nodename, // Main end user name for the device
productName: nodename,
productLabel: nodename,
serialNumber: `node-matter-${uniqueId}-1}`,
reachable: true,
},
colorControl: {
coupleColorTempToLevelMinMireds: 0x00FA,
startUpColorTemperatureMireds: 0x00FA,
featureMap: {
hueSaturation: true,
enhancedHue: false,
colorLoop: false,
xy: true,
colorTemperature: true
},
colorMode: 0,
enhancedColorMode: 0
}
},
);
This seems to have an effect like the featureMap global attribute seems to be set like provided, but the real features and also typing do not know certain features (e.g. in this case hue should not be enabled).
We need to make sure providing "global attribute names" here do not have an effect.
The text was updated successfully, but these errors were encountered:
When someone does this
This seems to have an effect like the featureMap global attribute seems to be set like provided, but the real features and also typing do not know certain features (e.g. in this case hue should not be enabled).
We need to make sure providing "global attribute names" here do not have an effect.
The text was updated successfully, but these errors were encountered: