File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1+ v0.2.7, 2022-04-09 Added debug data property for all entities.
12v0.2.6, 2022-04-08 Added support for lights that don't report state.
23 Added previously unmapped device states.
34v0.2.5, 2022-04-08 Added read_only attribute to controllable devices.
Original file line number Diff line number Diff line change 3838from .errors import UnexpectedDataStructure
3939from .errors import UnsupportedDevice
4040
41- __version__ = "0.2.6 "
41+ __version__ = "0.2.7 "
4242
4343
4444log = logging .getLogger (__name__ )
Original file line number Diff line number Diff line change @@ -176,6 +176,11 @@ def raw_state_text(self) -> str | None:
176176 """Return state description as reported by ADC."""
177177 return self ._attribs_raw .get ("displayStateText" )
178178
179+ @property
180+ def debug_data (self ) -> dict :
181+ """Return data that is helpful for debugging."""
182+ return self ._attribs_raw
183+
179184 # #
180185 # PLACEHOLDERS
181186 # #
You can’t perform that action at this time.
0 commit comments