Add native Z-Wave JS integration

This commit is contained in:
2026-05-05 13:09:56 +00:00
parent 97cba0a9a1
commit 2823a1c718
12 changed files with 1003 additions and 36 deletions
+2
View File
@@ -9,6 +9,7 @@ import { RokuIntegration } from './integrations/roku/index.js';
import { ShellyIntegration } from './integrations/shelly/index.js';
import { SonosIntegration } from './integrations/sonos/index.js';
import { WolfSmartsetIntegration } from './integrations/wolf_smartset/index.js';
import { ZwaveJsIntegration } from './integrations/zwave_js/index.js';
import { generatedHomeAssistantPortIntegrations } from './integrations/generated/index.js';
import { IntegrationRegistry } from './core/index.js';
@@ -20,6 +21,7 @@ export const integrations = [
new ShellyIntegration(),
new SonosIntegration(),
new WolfSmartsetIntegration(),
new ZwaveJsIntegration(),
];
export const createDefaultIntegrationRegistry = (): IntegrationRegistry => {