@switchbot/homebridge-switchbot
Version:
The SwitchBot plugin allows you to access your SwitchBot device(s) from HomeKit.
14 lines (11 loc) • 463 B
text/typescript
/* Copyright(C) 2021-2024, SwitchBot (https://github.com/SwitchBot). All rights reserved.
*
* index.ts: @switchbot/homebridge-switchbot plugin registration.
*/
import type { API } from 'homebridge'
import { SwitchBotPlatform } from './platform.js'
import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'
// Register our platform with homebridge.
export default (api: API): void => {
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, SwitchBotPlatform)
}