UNPKG

homebridge-xiaomi-roborock-vacuum

Version:

Xiaomi Vacuum Cleaner - 1st (Mi Robot), 2nd (Roborock S50 + S55), 3rd Generation (Roborock S6) and S5 Max - plugin for Homebridge.

11 lines 377 B
"use strict"; const { Thing, BatteryLevel } = require("abstract-things"); module.exports = Thing.mixin((Parent) => class extends Parent.with(BatteryLevel) { propertyUpdated(key, value) { if (key === "batteryLevel") { this.updateBatteryLevel(value); } super.propertyUpdated(key, value); } }); //# sourceMappingURL=battery-level.js.map