Initial commit

This commit is contained in:
2022-07-12 16:34:41 +02:00
commit e7947dc769
14 changed files with 1287 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { API } from 'homebridge'
import { PLATFORM_NAME } from './settings'
import { domoticaPlatform } from './platform'
export = (api: API) => {
api.registerPlatform(PLATFORM_NAME, domoticaPlatform)
}