-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[phc] Fix duplicate id in JRM channel definition #8191
Conversation
Signed-off-by: Jonas Hohaus <[email protected]>
Travis tests were successfulHey @gnlpfjh, |
@@ -94,25 +88,25 @@ | |||
<parameter name="upDownTime1" type="integer" min="1" max="65535"> | |||
<advanced>true</advanced> | |||
<label>Time Shutter 1</label> | |||
<description>The Time which the first shutter needs to move up/down.</description> | |||
<description>The time (in seconds) which the first shutter needs to move up/down.</description> |
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.
You can add the attribute unit="s"
to the `parameter element to specify this is in seconds. Then it's not needed to add the unit in the description. But you can change that in some future improvement.
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]> Signed-off-by: MPH80 <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]> Signed-off-by: Daan Meijer <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fixes a bug in the thing type definition, that has crept in openhab#6447. Signed-off-by: Jonas Hohaus <[email protected]>
Fix a bug in the thing type definition, that has crept in #6447.
While I removed the channel groups for JRM and DIM thing types I forgot that goup id is used in the Binding.
Aditionally I didn't change the channel ids so we have duplicate ids in the JRM type definition.
So we have to use the channel-groups for all thing-types again.
The bug was found in this thread: https://community.openhab.org/t/switch-from-peha-phc-to-new-automation-with-openhab2/61154/36
Signed-off-by: Jonas Hohaus [email protected]