homebridge-cmd4-advantageair
Version:
Catered shell script to integrate air conditioner control units by Advantage Air
23 lines (19 loc) • 381 B
JavaScript
;
module.exports =
{
default: function ( api )
{
api.registerPlatform( "cmd4AdvantageAir", Cmd4AdvantageAir );
}
}
// Platform definition
class Cmd4AdvantageAir
{
constructor( log, config, api )
{
this.log = log;
this.api = api;
this.config = config;
this.log.debug("cmd4AdvantageAir this.config %s", this.config);
}
}