Optional
bridgeOptional
lastAdd the given service instance to the Accessory.
Returns the service instance passed to the method call.
Adds a given service by calling the provided Service constructor with the provided constructor arguments.
A Service service constructor (e.g. Service.Switch).
Rest
...constructorArgs: ConstructorArgs<S>The arguments passed to the given constructor.
Returns the constructed service instance.
This method is used to set up a new Controller for this accessory. See Controller for a more detailed explanation what a Controller is and what it is capable of.
The controller can be passed as an instance of the class or as a constructor (without any necessary parameters) for a new Controller. Only one Controller of a given ControllerIdentifier can be configured for a given Accessory.
When called, it will be checked if there are any services and persistent data the Controller (for the given ControllerIdentifier) can be restored from. Otherwise, the Controller will be created with new services.
The Controller instance or constructor to the Controller with no required arguments.
Publishes this accessory on the local network for iOS clients to communicate with.
info.username
- formatted as a MAC address, like CC:22:3D:E3:CE:F6
, of this accessory.
Must be globally unique from all Accessories on your local network.info.pincode
- the 8-digit pin code for clients to use when pairing this Accessory.
Must be formatted as a string like 031-45-154
.info.category
- one of the values of the Accessory.Category
enum, like Accessory.Category.SWITCH
.
This is a hint to iOS clients about what "type" of Accessory this represents, so
that for instance an appropriate icon can be drawn for the user while adding a
new Accessory.Required info for publishing.
Optional
allowInsecureRequest: booleanWill allow unencrypted and unauthenticated access to the http server
This method will remove a given Controller from this accessory. The controller object will be restored to its initial state. This also means that any event handlers setup for the controller will be removed.
The controller which should be removed from the accessory.
Static
cleanupStatic
deserializeStatic
serialize
Bridge is a special type of HomeKit Accessory that hosts other Accessories "behind" it. This way you can simply publish() the Bridge (with a single HAPServer on a single port) and all bridged Accessories will be hosted automatically, instead of needed to publish() every single Accessory as a separate server.