hb-velux-tools
Version:
Homebridge Velux Tools
16 lines (10 loc) • 379 B
JavaScript
// velux.js
//
// Command line interface to Velux Integra KLF 200 gateway.
// Copyright © 2025 Erik Baauw. All rights reserved.
import { createRequire } from 'node:module'
import { VeluxTool } from 'hb-velux-tools/VeluxTool'
const require = createRequire(import.meta.url)
const packageJson = require('../package.json')
new VeluxTool(packageJson).main()