UNPKG

homebridge-sony-adcp-projector

Version:

Homebridge accessory to control Sony projectors over ADCP (IP). Exposes a HomeKit Television tile with input sources.

10 lines (7 loc) 266 B
// index.js const SonyProjectorPlatform = require("./platform"); const PLUGIN_NAME = "homebridge-sony-adcp-projector"; const PLATFORM_NAME = "SonyProjector"; module.exports = (api) => { api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, SonyProjectorPlatform); };