Transfer Transport Management
UUID: 00000203-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 "Transfer Transport Management" Homebridge plugin. Note
// Example Transfer Transport Management Plugin module.exports = (api) => { api.registerAccessory('ExampleTransferTransportManagementPlugin', ExampleTransferTransportManagementAccessory); }; class ExampleTransferTransportManagementAccessory { 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 Transfer Transport Management service this.service = new this.Service(this.Service.TransferTransportManagement); // create handlers for required characteristics } }