-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added doorbell service #25
base: master
Are you sure you want to change the base?
Conversation
|
components/homekit/esp_hap_apple_profiles/include/hap_apple_chars.h
Outdated
Show resolved
Hide resolved
713dbcc
to
d2f9e57
Compare
@Clovel Cleaned out the formatting errors I had so now you should be able to see the actual changes. I'm looking for guidance on how to handle the TLV8 config fields:
The reason I'm adding the video doorbell stuff on top of the plain doorbell service is that HAP doesn't really support standalone doorbells without video. Certain features are missing like HomePod chime configuration. So even if the doorbell doesn't have video, you need to provide a vestigial video and audio stream anyway. Any thoughts on how to approach this? |
Dropped the addition of both doorbell and video doorbell in favor of just the simpler doorbell first. |
@lukehoersten can you explain howto implement? I get the information "This accessory is not currently supported by the Homeapp." / "Dieses Gerät wird derzeit nicht von der Home-App unterstützt" on my iPhone (iOS 15.0.2). I tried
But I can raise the ring event and receive a notification on iPhone and AppleTV with:
Thx in advance |
Here's an example of how I use it: https://github.com/lukehoersten/esp-homekit-intercom Let me know if you have any questions with this concrete example. |
The video doorbell service depends on a doorbell service which in turn depends on more services and characteristics. I've implemented that whole tree of dependencies.
The video portion of the doorbell is important because that's how the Home app connects "chimes" on the HomePods to the doorbell. The doorbell service currently works on it's own but there's no way for the Home app to configure doorbell chimes then.
The video services with the respective tlv8 configs are only stubbed out and a WIP.
NOTE: This is a work in progress. I'm looking for feedback or help with the TLV8 configs etc. I also realize I've mistakenly auto formatted the files. I'll revert this at a later point.