Skip to content

Commit

Permalink
Fix bug in charge target setting (#62)
Browse files Browse the repository at this point in the history
* Fix target time setting

* Version bump
  • Loading branch information
dan-r authored Feb 15, 2024
1 parent 7980117 commit 484ece4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ohme/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Component constants"""
DOMAIN = "ohme"
USER_AGENT = "dan-r-homeassistant-ohme"
INTEGRATION_VERSION = "0.7.0"
INTEGRATION_VERSION = "0.7.1"
CONFIG_VERSION = 1
ENTITY_TYPES = ["sensor", "binary_sensor", "switch", "button", "number", "time"]

Expand Down
1 change: 1 addition & 0 deletions custom_components/ohme/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ def charge_graph_in_slot(charge_start, points, skip_format=False):

def time_next_occurs(hour, minute):
"""Find when this time next occurs."""
current = datetime.now()
target = current.replace(hour=hour, minute=minute, second=0, microsecond=0)
if target <= datetime.now():
target = target + timedelta(days=1)
Expand Down

0 comments on commit 484ece4

Please sign in to comment.