matterbridge-dyson-robot
Version:
A Matterbridge plugin that connects Dyson robot vacuums and air treatment devices to the Matter smart home ecosystem via their local or cloud MQTT APIs.
8 lines • 372 B
JavaScript
// Matterbridge plugin for Dyson robot vacuum and air treatment devices
// Copyright © 2025-2026 Alexander Thoukydides
import { PlatformDyson } from './platform.js';
// Register the platform with Matterbridge
export default function initializePlugin(matterbridge, log, config) {
return new PlatformDyson(matterbridge, log, config);
}
//# sourceMappingURL=index.js.map