Initial release — Dibby Wemo Manager v2.0.0
Desktop (Electron/Windows): device dashboard, DWM scheduling engine, native firmware rules editor, Windows background service, web remote, sunrise/sunset support. Homebridge plugin (homebridge-dibby-wemo v1.0.0): HomeKit switches for all local Wemo devices, custom UI with DWM rules, device rules, scheduler heartbeat, and location-based sunrise/sunset scheduling. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* homebridge-dibby-wemo
|
||||
*
|
||||
* Homebridge plugin entry point.
|
||||
*
|
||||
* Registers the DibbyWemo platform so Homebridge discovers Wemo devices and
|
||||
* exposes them to HomeKit as Switch accessories. Also runs the DWM scheduler
|
||||
* for local time-based automations — no Belkin cloud required.
|
||||
*/
|
||||
|
||||
const { WemoPlatform, PLUGIN_NAME, PLATFORM_NAME } = require('./lib/platform');
|
||||
|
||||
/**
|
||||
* @param {object} api - The Homebridge API object
|
||||
*/
|
||||
module.exports = (api) => {
|
||||
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, WemoPlatform);
|
||||
};
|
||||
Reference in New Issue
Block a user