-
Notifications
You must be signed in to change notification settings - Fork 83
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
WindowCovering not working #56
Comments
here the json part generated for accessories that make home app to stop to work
|
Same here |
I'm also observing this; when I include a MockWindowCovering in the sample app, things fail horribly. It breaks the pairing and I have to delete the pairing info and start over with the sample app. It's really a catastrophic failure, and really quite weird. |
Seems like one of the characteristics is misconfigured; I've stripped it back to the required characteristics, and it works; |
Hmm, can you post your code here. I think I have the minimal code, but the problem still exists. |
in class WindowCoveringService i commented out following lines if (windowCovering instanceof HorizontalTiltingWindowCovering) { |
Thank you. Now it's working for me too... |
Including HoldPositionCharacteristic causes the pairing to become corrupted, to the extend that the windowcovering accessory must be removed and the brige pairing cleared and paired anew. It isn't clear why this optional characteristic causes such spectacular failure, but it definitely does. Resolves hap-java#56
The pattern for most accessories is to require only the required characteristics, and then allow the specification of optional characteristics via the inclusion of interfaces. This pattern was not followed with WindowCovering. Worse, for reasons currently not understood, the inclusion of the HoldPositionCharacteristic causes the homekit pairing with the bridge to be completely unresponsive. (See issue hap-java#56) Change is made in a backwards compatible way, so that existing implementations that depend on WindowCovering as implemented will continue to function Addresses hap-java#56
The pattern for most accessories is to require only the required characteristics, and then allow the specification of optional characteristics via the inclusion of interfaces. This pattern was not followed with WindowCovering. Worse, for reasons currently not understood, the inclusion of the HoldPositionCharacteristic causes the homekit pairing with the bridge to be completely unresponsive. (See issue hap-java#56) Change is made in a backwards compatible way, so that existing implementations that depend on WindowCovering as implemented will continue to function Addresses hap-java#56
The pattern for most accessories is to require only the required characteristics, and then allow the specification of optional characteristics via the inclusion of interfaces. This pattern was not followed with WindowCovering. Worse, for reasons currently not understood, the inclusion of the HoldPositionCharacteristic causes the homekit pairing with the bridge to be completely unresponsive. (See issue hap-java#56) Change is made in a backwards compatible way, so that existing implementations that depend on WindowCovering as implemented will continue to function Addresses hap-java#56
I've narrowed it down to |
@jrburk I still have no idea why HoldPositionCharacteristic is causing this. The latest release will use BasicWindowCovering, in the meantime. |
Any news on window coverings? I have horizontal tilting window coverings. HorizontalTiltingWindowCovering extends WindowCovering. WindowCovering is deprecated. |
Problem is that the characteristic is write only. |
Looks like |
Great find! Would you mind opening up a pull request? |
fixed in #101 |
WindowCovering was not working for me. I get the message "Could not add home" in the home app. commenting out following lines in WindowCoveringService solved the issue
/**
addCharacteristic(new HoldPositionCharacteristic(windowCovering));
*/
still unsure what is wrong with that characteristics.
The text was updated successfully, but these errors were encountered: