Skip to content
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

Fix should_wait return value #156

Merged
merged 1 commit into from
Jul 17, 2020
Merged

Fix should_wait return value #156

merged 1 commit into from
Jul 17, 2020

Conversation

vlebourl
Copy link
Collaborator

No description provided.

@github-actions github-actions bot added the bug Something isn't working label Jul 17, 2020
@tetienne tetienne changed the title fix should_wait return value Fix should_wait return value Jul 17, 2020
@tetienne tetienne merged commit 6655d38 into master Jul 17, 2020
@tetienne tetienne deleted the fix/fix_should_wait branch July 17, 2020 10:08
iMicknl added a commit that referenced this pull request Jul 20, 2020
commit 997ccb0
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Mon Jul 20 09:41:08 2020 +0200

    Fix rescheduling update. (#158)

    * Fix rescheduling update.

    Replacing `self.schedule_update_ha_state(True)` by
    `self.hass.add_job(self.update)` actually does
    reschedule the update in a non blocking way.

    Adding `self.schedule_update_ha_state()` at the end
    tells HA to write down the newly polled state.

    * Add throttle to prevent too many calls.

commit db7e26c
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 21:59:38 2020 +0200

    Return None when no position state (#157)

commit 6655d38
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 12:07:59 2020 +0200

    Fix should_wait return value (#156)

commit 34b6832
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 10:05:53 2020 +0200

    Add cycle support for the cover platform (#147)

commit 2346ffd
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 10:02:19 2020 +0200

    Remove return from `apply_action` (#154)

commit ad90ae8
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 08:17:22 2020 +0200

    Add support for 'screen' uiClass. (#153)

    Closes github issue: #149

commit 3cc86dc
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Thu Jul 16 15:07:08 2020 +0200

    Add helper functions select_command and select_state (#148)

    * Add helper functions select_command and select_state

    Github issue #110
iMicknl added a commit that referenced this pull request Jul 20, 2020
commit 4e9e33d
Author: vlebourl <vlebourl@gmail.com>
Date:   Mon Jul 20 11:36:36 2020 +0200

    Removed private properties.

    * Removed private properties.
    * Removed update methods.
    * Removed __init__ when possible.
    * Moved classes to their own files.

    Github Issue: #151

commit 5b7a2fd
Author: vlebourl <vlebourl@gmail.com>
Date:   Mon Jul 20 10:40:05 2020 +0200

    Refactor climate.py

    * Added a base class for common properties.
    * Added setters to Somfy Smart Thermostat.

    Github Issue: #151

commit 00af2a1
Merge: 56ecc3e 997ccb0
Author: vlebourl <vlebourl@gmail.com>
Date:   Mon Jul 20 09:41:31 2020 +0200

    Merge branch 'master' into enhancement/refactor_climate_#151

commit 997ccb0
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Mon Jul 20 09:41:08 2020 +0200

    Fix rescheduling update. (#158)

    * Fix rescheduling update.

    Replacing `self.schedule_update_ha_state(True)` by
    `self.hass.add_job(self.update)` actually does
    reschedule the update in a non blocking way.

    Adding `self.schedule_update_ha_state()` at the end
    tells HA to write down the newly polled state.

    * Add throttle to prevent too many calls.

commit db7e26c
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 21:59:38 2020 +0200

    Return None when no position state (#157)

commit 56ecc3e
Author: vlebourl <vlebourl@gmail.com>
Date:   Fri Jul 17 17:20:48 2020 +0200

    first part of Somfy Smart Thermostat.

commit aebb31b
Author: Thibaut Etienne <thibaut@etienne.pw>
Date:   Fri Jul 17 12:13:28 2020 +0200

    Return None when no position state

commit b7502fc
Author: vlebourl <vlebourl@gmail.com>
Date:   Fri Jul 17 16:40:21 2020 +0200

    Remove options flow.

commit 69a6c7f
Author: vlebourl <vlebourl@gmail.com>
Date:   Fri Jul 17 16:11:57 2020 +0200

    Remove unused constants.

commit d64096c
Author: vlebourl <vlebourl@gmail.com>
Date:   Fri Jul 17 16:10:29 2020 +0200

    First commit for AtlanticElectricalHeater.

commit 6655d38
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 12:07:59 2020 +0200

    Fix should_wait return value (#156)

commit 34b6832
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 10:05:53 2020 +0200

    Add cycle support for the cover platform (#147)

commit 2346ffd
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 10:02:19 2020 +0200

    Remove return from `apply_action` (#154)

commit ad90ae8
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 08:17:22 2020 +0200

    Add support for 'screen' uiClass. (#153)

    Closes github issue: #149

commit 3cc86dc
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Thu Jul 16 15:07:08 2020 +0200

    Add helper functions select_command and select_state (#148)

    * Add helper functions select_command and select_state

    Github issue #110
iMicknl added a commit that referenced this pull request Jul 20, 2020
commit 997ccb0
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Mon Jul 20 09:41:08 2020 +0200

    Fix rescheduling update. (#158)

    * Fix rescheduling update.

    Replacing `self.schedule_update_ha_state(True)` by
    `self.hass.add_job(self.update)` actually does
    reschedule the update in a non blocking way.

    Adding `self.schedule_update_ha_state()` at the end
    tells HA to write down the newly polled state.

    * Add throttle to prevent too many calls.

commit db7e26c
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 21:59:38 2020 +0200

    Return None when no position state (#157)

commit 6655d38
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 12:07:59 2020 +0200

    Fix should_wait return value (#156)

commit 34b6832
Author: tetienne <thibaut@etienne.pw>
Date:   Fri Jul 17 10:05:53 2020 +0200

    Add cycle support for the cover platform (#147)

commit 2346ffd
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 10:02:19 2020 +0200

    Remove return from `apply_action` (#154)

commit ad90ae8
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Fri Jul 17 08:17:22 2020 +0200

    Add support for 'screen' uiClass. (#153)

    Closes github issue: #149

commit 3cc86dc
Author: Vincent Le Bourlot <vlebourl@gmail.com>
Date:   Thu Jul 16 15:07:08 2020 +0200

    Add helper functions select_command and select_state (#148)

    * Add helper functions select_command and select_state

    Github issue #110
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants