27be1892ed
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>
21 lines
547 B
JavaScript
21 lines
547 B
JavaScript
'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);
|
|
};
|