All Projects → Jc2k → aiohomekit

Jc2k / aiohomekit

Licence: Apache-2.0 license
asyncio for homekit

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to aiohomekit

Hap
Swift implementation of the Homekit Accessory Protocol
Stars: ✭ 309 (+735.14%)
Mutual labels:  homekit, hap
Esp32 Homekit
ESP-32 implementation of Apple Homekit Accessory Protocol(HAP)
Stars: ✭ 331 (+794.59%)
Mutual labels:  homekit, hap
HAS
Homekit Accessory Server
Stars: ✭ 53 (+43.24%)
Mutual labels:  homekit, hap
ESP8266-HomeKit-Air-Quality-Sensor-Elgato-Eve-Room
ESP8266 based  Homekit Indoor Air Quality sensor that acts like Eve Room🌱
Stars: ✭ 58 (+56.76%)
Mutual labels:  homekit, hap
Homebridge Http Switch
Powerful http switch for Homebridge: https://github.com/homebridge/homebridge
Stars: ✭ 111 (+200%)
Mutual labels:  homekit, hap
Hap Python
A python implementation of the HomeKit Accessory Protocol (HAP)
Stars: ✭ 381 (+929.73%)
Mutual labels:  homekit, hap
Homebridge
HomeKit support for the impatient
Stars: ✭ 19,073 (+51448.65%)
Mutual labels:  homekit, hap
Ruby home
Ruby HAP Server - HomeKit support for the Rubyist
Stars: ✭ 155 (+318.92%)
Mutual labels:  homekit, hap
Homekit Ws2812b Controller
ESP8266 based  Homekit controller for WS2812B lightstrips with WS2812FX support🌈
Stars: ✭ 110 (+197.3%)
Mutual labels:  homekit, hap
Secure Video Specification
Documentation and examples of the HomeKit Secure-Video Specification
Stars: ✭ 99 (+167.57%)
Mutual labels:  homekit, hap
Hc
hc is a lightweight framework to develop HomeKit accessories in Go.
Stars: ✭ 1,660 (+4386.49%)
Mutual labels:  homekit, hap
Hap Nodejs
Node.js implementation of the HomeKit Accessory Protocol (HAP)
Stars: ✭ 2,541 (+6767.57%)
Mutual labels:  homekit, hap
homekit-door
Raspberry Pi HomeKit Door Accessory
Stars: ✭ 22 (-40.54%)
Mutual labels:  homekit
VWsFriend
VW WeConnect visualization and control
Stars: ✭ 130 (+251.35%)
Mutual labels:  homekit
homebridge-music
Homebridge plugin for iTunes with AirPlay speakers
Stars: ✭ 92 (+148.65%)
Mutual labels:  homekit
homebridge-unifi-occupancy-sensor
An occupancy sensor for Homebridge and UniFi
Stars: ✭ 71 (+91.89%)
Mutual labels:  homekit
homebridge-zigbee
ZigBee Platform plugin for HomeBridge
Stars: ✭ 101 (+172.97%)
Mutual labels:  homekit
homebridge-z2m
Expose your Zigbee devices to HomeKit with ease, by integrating 🐝 Zigbee2MQTT with 🏠 Homebridge.
Stars: ✭ 197 (+432.43%)
Mutual labels:  homekit
homebridge-keylights
Yet another Homebridge plugin for Elgato Key Light and Key Light Air. https://homebridge.io
Stars: ✭ 40 (+8.11%)
Mutual labels:  homekit
homebridge-ESP8266-pojects
This is a directory where I want to share my own ESP8266 Smart Home projects.
Stars: ✭ 18 (-51.35%)
Mutual labels:  homekit

aiohomekit

CI codecov

This library implements the HomeKit protocol for controlling Homekit accessories using asyncio.

It's primary use is for with Home Assistant. We target the same versions of python as them and try to follow their code standards.

At the moment we don't offer any API guarantees. API stability and documentation will happen after we are happy with how things are working within Home Assistant.

Contributing

aiohomekit is primarily for use with Home Assistant. Lots of users are using it with devices from a wide array of vendors. As a community open source project we do not have the hardware or time resources to certify every device with multiple vendors projects. We may be conservative about larger changes or changes that are low level. We do ask where possible that any changes should be tested with a certified HomeKit implementations of shipping products, not just against emulators or other uncertified implementations.

Because API breaking changes would hamper our ability to quickly update Home Assistant to the latest code, if you can please submit a PR to update homekit_controller too. If they don't your PR maybe on hold until someone is available to write such a PR.

Please bear in mind that some shipping devices interpret the HAP specification loosely. In general we prefer to match the behaviour of real HAP controllers even where their behaviour is not strictly specified. Here are just some of the kinds of problems we've had to work around:

  • Despite the precise formatting of JSON being unspecified, there are devices in the wild that cannot handle spaces when parsing JSON. For example, {"foo": "bar"} vs {"foo":"bar"}. This means we never use a "pretty" encoding of JSON.
  • Despite a boolean being explicitly defined as 0, 1, true or false in the spec, some devices only support 3 of the 4. This means booleans must be encoded as 0 or 1.
  • Some devices have shown themselves to be sensitive to headers being missing, in the wrong order or if there are extra headers. So we ensure that only the headers iOS sends are present, and that the casing and ordering is the same.
  • Some devices are sensitive to a HTTP message being split into separate TCP packets. So we take care to only write a full message to the network stack.

And so on. As a rule we need to be strict about what we send and loose about what we receive.

Device compatibility

aiohomekit is primarily tested via Home Assistant with a Phillips Hue bridge and an Eve Extend bridge. It is known to work to some extent with many more devices though these are not currently explicitly documented anywhere at the moment.

You can look at the problems your device has faced in the home-assistant issues list.

FAQ

How do I use this?

It's published on pypi as aiohomekit but its still under early development - proceed with caution.

The main consumer of the API is the homekit_controller in Home Assistant so that's the best place to get a sense of the API.

Does this support BLE accessories?

No. Eventually we hope to via aioble which provides an asyncio bluetooth abstraction that works on Linux, macOS and Windows.

Can i use this to make a homekit accessory?

No, this is just the client part. You should use one the of other implementations:

Why doesn't Home Assistant use library X instead?

At the time of writing this is the only python 3.7/3.8 asyncio HAP client with events support.

Why doesn't aiohomekit use library X instead?

Where possible aiohomekit uses libraries that are easy to install with pip, are ready available as wheels (including on Raspberry Pi via piwheels), are cross platform (including Windows) and are already used by Home Assistant. They should not introduce hard dependencies on uncommon system libraries. The intention here is to avoid any difficulty in the Home Assistant build process.

People are often alarmed at the hand rolled HTTP code and suggest using an existing HTTP library like aiohttp. High level HTTP libraries are pretty much a non-starter because:

  • Of the difficulty of adding in HAP session security without monkey patches.
  • They don't expect responses without requests (i.e. events).
  • As mentioned above, some of these devices are very sensitive. We don't care if your change is compliant with every spec if it still makes a real world device cry. We are not in a position to demand these devices be fixed. So instead we strive for byte-for-byte accuracy on our write path. Any library would need to give us that flexibility.
  • Some parts of the responses are actually not HTTP, even though they look it.

We are also just reluctant to make a change that large for something that is working with a lot of devices. There is a big chance of introducing a regression.

Of course a working proof of concept (using a popular well maintained library) that has been tested with something like a Tado internet bridge (including events) would be interesting.

Thanks

This library wouldn't have been possible without homekit_python, a synchronous implementation of both the client and server parts of HAP.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].