Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Support for Enkin - ZDM150 Dimmer Module #8860

Merged
merged 11 commits into from
Mar 1, 2025
Merged
12 changes: 12 additions & 0 deletions src/devices/enkin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {forcePowerSource, light} from "../lib/modernExtend";
import type {DefinitionWithExtend} from "../lib/types";

export const definitions: DefinitionWithExtend[] = [
{
zigbeeModel: ["ZDM150"],
model: "ZDM150",
vendor: "Enkin",
description: "150W Dimmer module",
extend: [light({powerOnBehavior: false, effect: false, configureReporting: true}), forcePowerSource({powerSource: "Mains (single phase)"})],
},
];
2 changes: 2 additions & 0 deletions src/devices/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ import {definitions as efekta} from "./efekta";
import {definitions as eglo} from "./eglo";
import {definitions as elko} from "./elko";
import {definitions as enbrighten} from "./enbrighten";
import {definitions as enkin} from "./enkin";
import {definitions as enocean} from "./enocean";
import {definitions as envilar} from "./envilar";
import {definitions as essentialb} from "./essentialb";
Expand Down Expand Up @@ -400,6 +401,7 @@ export default [
...elko,
...enbrighten,
...enocean,
...enkin,
...envilar,
...essentialb,
...essentials,
Expand Down