HAP-python icon indicating copy to clipboard operation
HAP-python copied to clipboard

A python implementation of the HomeKit Accessory Protocol (HAP)

Results 92 HAP-python issues
Sort by recently updated
recently updated
newest added

As requested in the HA repository on issue [#14330](https://github.com/home-assistant/home-assistant/issues/14330) it would be awesome if HAP also support persistence, which is used e.g. on the eve app. Thanks a lot.

feature request

I have written my accessory and it runs perfectly fine when executed as: python3 hap/main.py Here is my /etc/systemd/system/HAP-python.service file: [Unit] Description = HAP-python daemon [Service] User = pi ExecStart...

"OptionalCharacteristics" from services.json - dont loading with pyhap/service.py 105 def from_dict(cls, name, json_dict, loader):

Hello, I've set up home assistant inside docker behind a firewall with homekit bridge and a camera. The problem is that while I can fetch screenshots (before tapping the camera...

Is it possible to use this to retrieve a [the current, live] video frame from an existing Homekit camera?

In the case of a camera accessory - cleanup is important for shutting down the live stream to free up the resource for another client to connect. In the case...

Since some versions I have the following problem: When I close the roller shutter via the physical Homematic actor the status in the Apple Home App is not correct: It...

Setup both HAP-Python (2.6.0) and homeassistant (0.99.3) on my Mac mini. homeassistant was unable to pair with the HAP-Python bridge (Mac mini Bridge). homeassistant was able to pair with Homebridge...

Tried to implement the camera accessory with according to the example from camera_main.py, where "get_snapshot" is not defined is thrown whenever there's a snapshot request. Implementing as a single accessory...

Hi, I am trying to follow the Http.py accessory example. This is what I tried: ``` def get_bridge(driver): bridge = HttpBridge('HTTP Bridge', ('', 51111)) temp_sensor = TemperatureSensor(driver, 'Basement Temperature') bridge.add_accessory(temp_sensor)...