-
Notifications
You must be signed in to change notification settings - Fork 20
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
#263 observe deep sleep and keep sensors always available #264
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5,6 +5,11 @@ | |||||||||||||||||||||||||||||||||||
from dataclasses import dataclass | ||||||||||||||||||||||||||||||||||||
import logging | ||||||||||||||||||||||||||||||||||||
from typing import Any | ||||||||||||||||||||||||||||||||||||
import time | ||||||||||||||||||||||||||||||||||||
import json | ||||||||||||||||||||||||||||||||||||
from .utils import ( | ||||||||||||||||||||||||||||||||||||
get_value_by_path, | ||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
from .mqtt import ReceiveMessage, TasmotaMQTTClient | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
@@ -36,6 +41,7 @@ class TasmotaAvailabilityConfig(TasmotaEntityConfig): | |||||||||||||||||||||||||||||||||||
availability_topic: str | ||||||||||||||||||||||||||||||||||||
availability_offline: str | ||||||||||||||||||||||||||||||||||||
availability_online: str | ||||||||||||||||||||||||||||||||||||
sleep_state_topic: str | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
class TasmotaEntity: | ||||||||||||||||||||||||||||||||||||
|
@@ -98,27 +104,65 @@ def __init__(self, **kwds: Any): | |||||||||||||||||||||||||||||||||||
self._on_availability_callback: Callable[ | ||||||||||||||||||||||||||||||||||||
[bool], Coroutine[Any, Any, None] | ||||||||||||||||||||||||||||||||||||
] | None = None | ||||||||||||||||||||||||||||||||||||
self.uses_deep_sleep = False | ||||||||||||||||||||||||||||||||||||
self.deep_sleep_interval = None | ||||||||||||||||||||||||||||||||||||
self.last_up=0 | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please give this a better name, maybe |
||||||||||||||||||||||||||||||||||||
self.available=None | ||||||||||||||||||||||||||||||||||||
super().__init__(**kwds) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
def get_availability_topics(self) -> dict: | ||||||||||||||||||||||||||||||||||||
"""Return MQTT topics to subscribe to for availability state.""" | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
async def availability_message_received(msg: ReceiveMessage) -> None: | ||||||||||||||||||||||||||||||||||||
"""Handle a new received MQTT availability message.""" | ||||||||||||||||||||||||||||||||||||
last_up_retain=self.last_up | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This variable is never used |
||||||||||||||||||||||||||||||||||||
if msg.payload == self._cfg.availability_online: | ||||||||||||||||||||||||||||||||||||
if self.last_up and self.deep_sleep_interval is None: | ||||||||||||||||||||||||||||||||||||
self.deep_sleep_interval = int(time.time() - self.last_up) | ||||||||||||||||||||||||||||||||||||
await self.poll_status() | ||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||
self.last_up=time.time() | ||||||||||||||||||||||||||||||||||||
available=self.available | ||||||||||||||||||||||||||||||||||||
if msg.payload == self._cfg.availability_online: | ||||||||||||||||||||||||||||||||||||
available=True | ||||||||||||||||||||||||||||||||||||
if msg.payload == self._cfg.availability_offline and not(self.uses_deep_sleep): | ||||||||||||||||||||||||||||||||||||
if not(self.uses_deep_sleep): | ||||||||||||||||||||||||||||||||||||
available=False | ||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||
_LOGGER.debug("inhibit deep sleep %s", msg.topic) | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't we start a timer here, which if it expires sets availability to You can use this timer class: Lines 17 to 33 in 8a19e8d
|
||||||||||||||||||||||||||||||||||||
if not self._on_availability_callback: | ||||||||||||||||||||||||||||||||||||
self.available=available | ||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||
if msg.payload == self._cfg.availability_online: | ||||||||||||||||||||||||||||||||||||
await self._on_availability_callback(True) | ||||||||||||||||||||||||||||||||||||
if msg.payload == self._cfg.availability_offline: | ||||||||||||||||||||||||||||||||||||
await self._on_availability_callback(False) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
if self.available != available: | ||||||||||||||||||||||||||||||||||||
await self._on_availability_callback(available) | ||||||||||||||||||||||||||||||||||||
self.available=available | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
async def sleep_state_message_received(msg: ReceiveMessage) -> None: | ||||||||||||||||||||||||||||||||||||
"""Handle state messages to indicate deep sleep.""" | ||||||||||||||||||||||||||||||||||||
#try: | ||||||||||||||||||||||||||||||||||||
# payload = json.loads(msg.payload) | ||||||||||||||||||||||||||||||||||||
#except json.decoder.JSONDecodeError: | ||||||||||||||||||||||||||||||||||||
# return | ||||||||||||||||||||||||||||||||||||
_LOGGER.debug("sleep state %s -> %s", msg.topic, msg.payload) | ||||||||||||||||||||||||||||||||||||
state = get_value_by_path(msg.payload, ["StatusPRM","RestartReason"]) | ||||||||||||||||||||||||||||||||||||
if state is not None: | ||||||||||||||||||||||||||||||||||||
state=str(state).lower() | ||||||||||||||||||||||||||||||||||||
if state.startswith('deep sleep'): | ||||||||||||||||||||||||||||||||||||
if not(self.uses_deep_sleep): | ||||||||||||||||||||||||||||||||||||
_LOGGER.debug("switching to deep sleep mode %s", msg.topic) | ||||||||||||||||||||||||||||||||||||
self.deep_sleep_interval=None | ||||||||||||||||||||||||||||||||||||
self.uses_deep_sleep=True | ||||||||||||||||||||||||||||||||||||
Comment on lines
+140
to
+154
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of detecting a device's support for deep sleep when it wakes up from deep sleep, we should detect it from the device's discovery message: https://github.com/arendst/Tasmota/pull/19134/files#diff-fe970b21f48758677cb799d64f0ac866cbbe0aa48eb3e0f6aaa52c22ef73c735R189 |
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
topics = { | ||||||||||||||||||||||||||||||||||||
"availability_topic": { | ||||||||||||||||||||||||||||||||||||
"event_loop_safe": True, | ||||||||||||||||||||||||||||||||||||
"msg_callback": availability_message_received, | ||||||||||||||||||||||||||||||||||||
"topic": self._cfg.availability_topic, | ||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||
"sleep_state_topic": { | ||||||||||||||||||||||||||||||||||||
"event_loop_safe": True, | ||||||||||||||||||||||||||||||||||||
"msg_callback": sleep_state_message_received, | ||||||||||||||||||||||||||||||||||||
"topic": self._cfg.sleep_state_topic, | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
return topics | ||||||||||||||||||||||||||||||||||||
|
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.
This seems unrelated to this PR?