-
-
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
[daikin] Fix Special Mode and Streamer support #12324
Conversation
This pull request has been mentioned on openHAB Community. There might be relevant details there: |
1193bc4
to
73c3dcb
Compare
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
73c3dcb
to
adfd120
Compare
.../org.openhab.binding.daikin/src/main/java/org/openhab/binding/daikin/internal/api/Enums.java
Outdated
Show resolved
Hide resolved
...ding.daikin/src/main/java/org/openhab/binding/daikin/internal/handler/DaikinBaseHandler.java
Outdated
Show resolved
Hide resolved
This is a breaking change to be explained in release notes. |
Where is the "Release notes"? Is it something for the openhab maintainer (i.e. not me) to do? |
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
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.
LGTM
Look at this example: openhab/openhab-distro#1369 |
* [daikin] Fix Special Mode support Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au> Signed-off-by: Nick Waterton <n.waterton@outlook.com>
* [daikin] Fix Special Mode support Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [daikin] Fix Special Mode support Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [daikin] Fix Special Mode support Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au> Signed-off-by: Andras Uhrin <andras.uhrin@gmail.com>
* [daikin] Fix Special Mode support Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
This pull request has been mentioned on openHAB Community. There might be relevant details there: |
Some Daikin models have the ability to set
Currently:
specialmode
reports the current combination of modes set on the device: streamer / eco_streamer / powerful_streamer / eco / powerful / offspecialmode-powerful
channelThis PR introduced the following changes:
specialmode
channel now only reports NORMAL/ECO/POWERFUL, removing Streamer from this channel. This greatly simplifies the usage for this channel.specialmode
channel is changed from Read-only to Read/writespecialmode-powerful
channel is removed, since setting the powerful mode can now be done through thespecialmode
channelstreamer
is introduced to set the streamer modeThis makes the two features (streamer and normal/eco/powerful) more straight forward to deal with.
The issue / feature was reported/requested and tested here:
https://community.openhab.org/t/daikin-the-channel-specialmode-can-be-read-but-not-modified-from-oh-both-2-5-12-and-3-1/125561