Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/devices/awox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@ export const definitions: DefinitionWithExtend[] = [
description: "Dimmable filament lamp",
extend: [m.light()],
},
{
zigbeeModel: ["EZMB-RGB-TW-CLB"],
model: "EZMB-RGB-TW-CLB",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a better model number written on the device or product site?

vendor: "AwoX",
description: "EGLO Zigbee RGB+TW Ceiling light",
extend: [
m.deviceEndpoints({endpoints: {"1": 1, "3": 3}}),
Copy link
Owner

@Koenkk Koenkk Oct 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this can be removed (please check if everything works fine without). Same goes for meta: {multiEndpoint: true},

m.light({colorTemp: {range: [153, 370]}, color: {modes: ["xy", "hs"], enhancedHue: true}}),
m.commandsOnOff(),
m.commandsLevelCtrl(),
m.commandsColorCtrl(),
],
meta: {multiEndpoint: true},
},
{
zigbeeModel: ["TLSR82xx"],
model: "33951/33948",
Expand Down