Intermediate changes

This commit is contained in:
watsonb8
2019-06-13 10:00:29 -04:00
parent d7fc6eba5d
commit 356589b1fe
3 changed files with 808 additions and 7 deletions

View File

@ -1 +1,22 @@
export const Greeter = (name: string) => `Hello ${name}`;
let Service: any, Characteristic: any;
export default function (homebridge: any) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
homebridge.registerPlatform(
'homebridge-harmony-watson',
'HarmonyHubMatrix',
HarmonyMatrixPlatform
);
};
class HarmonyMatrixPlatform {
log: any = {};
constructor(log: any, config: any) {
this.log('INFO - Registering Harmony Matrix Platform');
}
}