UNPKG

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.

15 lines 473 B
// Matterbridge plugin for Dyson robot vacuum and air treatment devices // Copyright © 2025-2026 Alexander Thoukydides import EventEmitter from 'events'; // A Dyson MQTT client export class DysonMqttClient extends EventEmitter { log; config; // Construct a new MQTT client constructor(log, config) { super({ captureRejections: true }); this.log = log; this.config = config; } } //# sourceMappingURL=dyson-mqtt-client-base.js.map