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 the name says.

feature request

Good morning devs! Since my poor RPi 1 model B was getting crushed, I moved most of my Home Assistant to a seperate platform (old core 2 duo running Ubuntu...

@ikalchev do you have any docs covering thread safety? I know elaborated about how threads are used in #74, but it looks like characteristics `set_value()` is not really thread safe,...

bug

``` INFO:pyhap.accessory_driver:Loading Accessory state from `data` Traceback (most recent call last): File "D:/Projects/OnGoing/viper/temp.py", line 192, in driver.add_accessory(accessory=get_bridge(driver)) File "D:\Projects\OnGoing\viper\venv\lib\site-packages\pyhap\accessory_driver.py", line 330, in add_accessory self.load() File "D:\Projects\OnGoing\viper\venv\lib\site-packages\pyhap\accessory_driver.py", line 445, in load...

Should I remove the 2 following function too? - def set_position_state(self, value) - def set_current_position(self, value)

Hello, I am trying to implement a fake WindowCovering accessory (shutter) with HAP-python. I already have tested this with a copy of the busy_home.py file. You can check my **[shutter.py](https://github.com/lboue/HAP-python/blob/b6413081b045a247878afa59f99e62707a83cbd8/shutter.py)...

hi guys is it possible to add other, more generic sensor types (probably handled by services.json and characteristics.json) to have it categorized differently? for example - I've got methods reading...

Hi there, I'm trying to deploy HAP-python (git master) on Python 3.5 and coming up against a strange error that seems to be related to coroutine handling. I've trimmed down...

mypy does static analysis, and bandit does security auditing (of known vulnerabilities, and some suspect coding patterns). Both of these are currently showing some errors, which should be addressed, and...

I have written a simple accessory which publishes data from some sensors. It all works reliably if I start the code and leave it running, but if I stop the...