Target Control Management
UUID: 00000122-0000-1000-8000-0026BB765291
Required Characteristics
Example
The example below is automatically generated and may not be a complete example of what is required to create a working "Target Control Management" Homebridge plugin. Note
// Example Target Control Management Plugin module.exports = (api) => { api.registerAccessory('ExampleTargetControlManagementPlugin', ExampleTargetControlManagementAccessory); }; class ExampleTargetControlManagementAccessory { constructor(log, config, api) { this.log = log; this.config = config; this.api = api; this.Service = this.api.hap.Service; this.Characteristic = this.api.hap.Characteristic; // extract name from config this.name = config.name; // create a new Target Control Management service this.service = new this.Service(this.Service.TargetControlManagement); // create handlers for required characteristics } }