Intermediate changes
This commit is contained in:
23
src/index.ts
23
src/index.ts
@ -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');
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user