-
-
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
[Freeboxos] New binding alternative to Freebox binding #12342
Conversation
@lolodomo : FYI, I have removed usage of hibernate validator. |
@lolodomo : I propose that we come back on this one once the v3.3 is out. |
@clinique - for a PR of this size, perhaps you can add some more context/description to the PR description? Also, without this context, the first question for me would be: Why introduce it as a new binding instead of updating/replacing the existing one - i.e., what are the differences and where do they overlap? Cc @lolodomo. |
|
We even have a discussion about that and this was my proposal. The new binding has many new features but also has some missing features compared to the current binding and breaking changes if I correctly remember. The idea was to remove the old binding the day the new binding can fully replace the old binding, keeping the two bindings in the distribution during 6 months. |
This pull request has been mentioned on openHAB Community. There might be relevant details there: |
Binding now published in the add-on market place. |
OK. What about the naming, where does the "OS" come from?
Would it be possible to implement those missing features, or are they somehow obsoleted? Otherwise they will still disappear when the old binding is finally removed.
I get that migration and breaking changes is always an issue with openHAB. Let me just brainstorm a little - sorry if you already went through those discussions previously: We now have Community Marketplace, which is sometimes used for pushing new binding versions before they make it into the openHAB distribution. Perhaps it could be used the other way around: Publishing the old "legacy" Freebox binding to marketplace. Then users needing a longer migration period and immediate compatibility when upgrading openHAB could simply uninstall the binding and install the legacy version from marketplace instead. This could be mentioned in the release notes for breaking changes. Would it work - and WDYT? This way the new version could still replace the old one without any naming issues, i.e. it could still be named "freebox". The general idea is that the current approach is to deliver a "legacy" version and a new version through the same openHAB distribution channel, where binding names must be unique. But it doesn't have to be that way, at least some other options could be explored. Secondly: Although I'm not sure if the new Netatmo binding was a success story in terms of migration, is the situation any different from that? I know we were forced to deliver a new version due to API changes, so it would eventually have broken anyway, but still interested in why you are seeking a different approach for Freebox compared to Netatmo. @kaikreuzer - tagging you in case you would be interested as they are also some general issues about binding migrations, breaking changes and approaches to this, and you might also have some feedback.
I was really hoping you would resume the review, @lolodomo. :-) I might have a quick look and post some lose comments here and there if you are interested, but currently I will probably not commit fully to reviewing this PR. |
@@ -0,0 +1,177 @@ | |||
# Freebox Binding |
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.
I guess it should be:
# Freebox Binding | |
# FreeboxOS Binding |
? But please see latest PR comments before changing anything.
|
||
## Binding configuration | ||
|
||
FreeboxOs binding has the following configuration parameters: |
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.
FreeboxOs or FreeboxOS?
That looks like a good idea. I think the marketplace was not yet existing when we had this discussion with @clinique ;) But in that case, I consider that at least the new binding should not remove any feature from the legacy binding. At least, we should discuss each of them. The problem with updating the current binding is that there are so many changes that the review is very hard. This is almost as if all the previous code is replaced by new code. So having a new binding named freeboxos will help everybody, the reviewers and the final users. |
That probably applies no matter how the migration is approached, assuming final action still would be to remove the "legacy" binding?
That's a separate concern. I'm sure we'll manage as reviewers to not look too much at diffs, but concentrate on the new code itself.
Assuming the binding rename was out of necessity in order to have both bindings exist simultaneously, this contradicts the idea of providing the legacy binding through Marketplace. So I'd propose to either:
|
Thanks, @jlaur. I agree that we should try to only have one version of a binding in the official distro at any time. The marketplace sounds like the best option to make alternative versions available. So once this PR is merged, the "old" binding should be moved to the marketplace. Wrt the name, I personally do not care too much - I think we could leave the name of the new one to be "freeboxos" as it is anyhow not compatible and people will have to recreate their things, if I understand it correctly. |
@lolodomo : when you'll have a minute, I would welcome a review. I would really like have this merged in OH4.0 Major functional additions/evolutions are :
This can not be merged until gson 2.10 is available in the core (end of february I guess). |
@ben12 : please take a look at this last version. I made huge modifications on the Home Node side - resulting in an important simplification of the configuration of Nodes. |
@fwolter : rebased and it builds. |
I can confirm that. |
Just to avoid confusion. There is one open point left.
|
Signed-off-by: clinique <gael@lhopital.org>
@fwolter : let me know your thoughts on this alternative implementation proposal. |
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.
The current implementation spawns a new thread pool, which should only be done in specific cases like creating a server thread listening on a socket or reading data from a serial interface.
We had a very similar case here #13570 (comment). I'm sure we can work out a viable solution, but I need a bit more context about the API returning PENDING. Is this returned on a regular basis or only in error cases? Can you somehow preemptively prevent the situation of receiving a PENDING?
|
||
while (track == Status.PENDING) { | ||
try { | ||
grantJob.wait(); |
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.
Are you sure this is working? You're calling wait()
on the Optional. However, wait()
shouldn't be used directly, and if so, it must be called in a loop. https://wiki.sei.cmu.edu/confluence/display/java/THI03-J.+Always+invoke+wait%28%29+and+await%28%29+methods+inside+a+loop You could call get()
on the ScheduledFuture
.
Here's the current process : |
Signed-off-by: clinique <gael@lhopital.org>
Signed-off-by: clinique <gael@lhopital.org>
What about moving the pairing code into Thing commands will fail as long as the Thing status detail is CONFIGURATION_PENDING, but this should be OK. During CONFIGURATION_PENDING, you could poll the API every 5s or so by scheduling another task via the framework's scheduler and finally set the Thing ONLINE without a Thing status detail or to OFFLINE when the API returned the TIMEOUT state. In the latter case you could set a Thing status detail message pointing the user to re-enable the Thing to start the pairing process again. Then, you don't need to block Thing commands when the granting process is ongoing. |
Thanks for your ideas. I'll have a look at this no later than tomorrow. |
Signed-off-by: clinique <gael@lhopital.org>
Signed-off-by: clinique <gael@lhopital.org>
Did you finish making all changes? |
Yes. Tested and working. |
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
Now, you could add your binding's logo to the openHAB website. See https://www.openhab.org/docs/developer/bindings/#add-your-binding-s-logo-to-the-openhab-website
Please make sure your sign-off contains your realname for future PRs.
Are you going to remove the legacy freebox binding from this repo and submit it to the marketplace? |
No ;) I will first intensively test the new binding and check that no feature from the original binding is missing. |
Please see #12342 (comment). I think the agreement was to upload the legacy binding the Community Marketplace and remove it from the distribution, so that 4.0 will only contain the new |
I did not remember about that ! |
* SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Adding i18n Signed-off-by: clinique <gael@lhopital.org> * Decreasing websocket logging level Signed-off-by: clinique <gael@lhopital.org> * SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Enhancing SAT report Signed-off-by: clinique <gael@lhopital.org> * I think that mvn spotless:apply has a problem with records - trying once again Signed-off-by: clinique <gael@lhopital.org> * Avoid requesting detailed information for a shutdown repeater. Signed-off-by: clinique <gael@lhopital.org> * Switched fan speed to RPM unit Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Divergence between eclipse and mvn spotless:apply Signed-off-by: clinique <gael@lhopital.org> * YASAT Signed-off-by: clinique <gael@lhopital.org> * Corrections following fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Pleasing SAT Signed-off-by: clinique <gael@lhopital.org> * Second fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Porting modifications introduced in PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Removing redundant null checks. Signed-off-by: clinique <gael@lhopital.org> * Rebased. Signed-off-by: clinique <gael@lhopital.org> * Trying to remove the last sleep. Signed-off-by: clinique <gael@lhopital.org> * Reporting modifications of PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Reverting to working and cleaner granting process Signed-off-by: clinique <gael@lhopital.org> * Removing last Thread:Sleep Signed-off-by: clinique <gael@lhopital.org> * spotless:apply Signed-off-by: clinique <gael@lhopital.org> --------- Signed-off-by: clinique <gael@lhopital.org> Co-authored-by: ben.12 <benmor_12@yahoo.fr>
@lolodomo, @clinique - what is the status here? We are about to release 4.0 with two overlapping bindings, which was not the intention. Cc @kaikreuzer |
* SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Adding i18n Signed-off-by: clinique <gael@lhopital.org> * Decreasing websocket logging level Signed-off-by: clinique <gael@lhopital.org> * SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Enhancing SAT report Signed-off-by: clinique <gael@lhopital.org> * I think that mvn spotless:apply has a problem with records - trying once again Signed-off-by: clinique <gael@lhopital.org> * Avoid requesting detailed information for a shutdown repeater. Signed-off-by: clinique <gael@lhopital.org> * Switched fan speed to RPM unit Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Divergence between eclipse and mvn spotless:apply Signed-off-by: clinique <gael@lhopital.org> * YASAT Signed-off-by: clinique <gael@lhopital.org> * Corrections following fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Pleasing SAT Signed-off-by: clinique <gael@lhopital.org> * Second fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Porting modifications introduced in PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Removing redundant null checks. Signed-off-by: clinique <gael@lhopital.org> * Rebased. Signed-off-by: clinique <gael@lhopital.org> * Trying to remove the last sleep. Signed-off-by: clinique <gael@lhopital.org> * Reporting modifications of PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Reverting to working and cleaner granting process Signed-off-by: clinique <gael@lhopital.org> * Removing last Thread:Sleep Signed-off-by: clinique <gael@lhopital.org> * spotless:apply Signed-off-by: clinique <gael@lhopital.org> --------- Signed-off-by: clinique <gael@lhopital.org> Co-authored-by: ben.12 <benmor_12@yahoo.fr> Signed-off-by: Matt Myers <mmyers75@icloud.com>
* SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Adding i18n Signed-off-by: clinique <gael@lhopital.org> * Decreasing websocket logging level Signed-off-by: clinique <gael@lhopital.org> * SAT warnings handling Signed-off-by: clinique <gael@lhopital.org> * Correcting potential NPE Signed-off-by: clinique <gael@lhopital.org> * Correcting a NPE on error Signed-off-by: clinique <gael@lhopital.org> * Active player request falls to incorrect API version Signed-off-by: clinique <gael@lhopital.org> * Reintroducing missing capability to send keys to player. Solving an NPE Signed-off-by: clinique <gael@lhopital.org> * Handling DUTY CYCLE more gracefully Signed-off-by: clinique <gael@lhopital.org> * Enhancing DUTY CYCLE Signed-off-by: clinique <gael@lhopital.org> * Moving to SNAPSHOT 3.4 Signed-off-by: clinique <gael@lhopital.org> * Adress inconsistencies in binding name Signed-off-by: clinique <gael@lhopital.org> * Discover Freebox Delta Home equipments(basic_shutter) * Clean previous test code * Fix "Unexpected command" * Fix thing comm error * README for basic shutter * Fix MR discusions and solve maven check errors and warnings * Fix MR discusions * Fix README.md * Enhancing logging to indentify source of erratic warn Signed-off-by: clinique <gael@lhopital.org> * Deny polling a device data when its API is needed and it is OFFLINE Signed-off-by: clinique <gael@lhopital.org> * Taking openhab#11833 in accound Signed-off-by: clinique <gael@lhopital.org> * Switching to Snapshot 4.0.0 Correcting apiDomain was not used as expected Code cleansing. Signed-off-by: clinique <gael@lhopital.org> * Implementing SHUTTER Home Node Signed-off-by: clinique <gael@lhopital.org> * Saving work before instroduction of ArrayListDeserializer Signed-off-by: clinique <gael@lhopital.org> * Enhanced deserialization to simplify code Signed-off-by: clinique <gael@lhopital.org> * Switching to Java 17 records Signed-off-by: clinique <gael@lhopital.org> * Switching to addons.xml, headers updated Signed-off-by: clinique <gael@lhopital.org> * Correcting two errors. Signed-off-by: clinique <gael@lhopital.org> * Enhance usage of global variables Signed-off-by: clinique <gael@lhopital.org> * Some code enhancement for base classes Signed-off-by: clinique <gael@lhopital.org> * solving SAT issues Signed-off-by: clinique <gael@lhopital.org> * Adding IliadBox compatibility Signed-off-by: clinique <gael@lhopital.org> * Commiting work Signed-off-by: clinique <gael@lhopital.org> * Saving work Signed-off-by: clinique <gael@lhopital.org> * Rebooting Home Node part Signed-off-by: clinique <gael@lhopital.org> * Spotless apply Signed-off-by: clinique <gael@lhopital.org> * Enhancing SAT report Signed-off-by: clinique <gael@lhopital.org> * I think that mvn spotless:apply has a problem with records - trying once again Signed-off-by: clinique <gael@lhopital.org> * Avoid requesting detailed information for a shutdown repeater. Signed-off-by: clinique <gael@lhopital.org> * Switched fan speed to RPM unit Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Correcting SAT Signed-off-by: clinique <gael@lhopital.org> * Divergence between eclipse and mvn spotless:apply Signed-off-by: clinique <gael@lhopital.org> * YASAT Signed-off-by: clinique <gael@lhopital.org> * Corrections following fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Pleasing SAT Signed-off-by: clinique <gael@lhopital.org> * Second fwolter code review Signed-off-by: clinique <gael@lhopital.org> * Porting modifications introduced in PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Removing redundant null checks. Signed-off-by: clinique <gael@lhopital.org> * Rebased. Signed-off-by: clinique <gael@lhopital.org> * Trying to remove the last sleep. Signed-off-by: clinique <gael@lhopital.org> * Reporting modifications of PR openhab#15121 Signed-off-by: clinique <gael@lhopital.org> * Reverting to working and cleaner granting process Signed-off-by: clinique <gael@lhopital.org> * Removing last Thread:Sleep Signed-off-by: clinique <gael@lhopital.org> * spotless:apply Signed-off-by: clinique <gael@lhopital.org> --------- Signed-off-by: clinique <gael@lhopital.org> Co-authored-by: ben.12 <benmor_12@yahoo.fr> Signed-off-by: Jørgen Austvik <jaustvik@acm.org>
Supersedes this PR