-
-
Notifications
You must be signed in to change notification settings - Fork 205
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
Convert ZWave binding to use ESH SerialPort classes #1152
Conversation
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/zwave-binding-updates/51080/658 |
@kaikreuzer is |
Will it have moved to a new (non-ESH) package and bundle name? |
I don't know - hence why I'm asking ;) However, I'm assuming, maybe incorrectly, that everything hasn't been refactored as the binding is still using all the original package names - if this has changed it would require a major overhaul of every binding. |
@kaikreuzer or @openhab/core-maintainers any idea about this? |
What is the issue? There are several other bindings using it, but using Import-Package instead of Require-Bundle in the manifest. |
As per the failed CI. |
I only get a 404 when clicking Details. Or is that the issue? 😄 |
It probably has expired and needs to be rerun.
… On 26 Mar 2019, at 22:49, Scott Rushworth ***@***.***> wrote:
I only get a 404 when clicking Details.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#1152 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AA_kQ4zkIseZP3jwbPg9mFOjyO9WCYvYks5vaqP6gaJpZM4bwJST>.
|
It looks like Jenkins is out of space again... openhab/openhab-core#639 (comment). |
Yes, it is. We did not change the namespaces for now. We just moved the code to a different location. |
META-INF/MANIFEST.MF
Outdated
@@ -49,3 +49,4 @@ Import-Package: com.google.common.collect, | |||
Service-Component: OSGI-INF/*.xml | |||
Export-Package: org.openhab.binding.zwave | |||
Bundle-ActivationPolicy: lazy | |||
Require-Bundle: org.eclipse.smarthome.io.transport.serial |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To fix the build just remove this Require-Bundle
manifest entry. Instead you should add org.eclipse.smarthome.io.transport.serial
to the Import-Package
entries.
Signed-off-by: Chris Jackson <[email protected]>
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/port-not-found-after-system-start-on-openhabianpi/73638/15 |
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/preparation-for-2-5m2/75738/22 |
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/zwave-zigbee-rfc2217-remote-serial-port-howto/81633/3 |
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/solved-zwave-zigbee-rfc2217-remote-serial-port-howto/81633/20 |
What is the current status of this? Shows as merged but I saw comments on the OpenHAB forum that it has been removed from the binding. Hoping to remote ZWave stick away from OH server, reliability would be important but reading about issues with the socat ZWave solution after connection losses. |
It is merged. |
This pull request has been mentioned on openHAB Community. There might be relevant details there: |
This modifies the ZWave binding to use the ESH SerialPort classes. This allows serial-over-ip- as per eclipse-archived/smarthome#5560.
I have only tested the binding with a real serial port - not with the IP extension, but that should be handled through the ESH libraries.
Signed-off-by: Chris Jackson [email protected]