my-PV 0.0.1.dev5__tar.gz → 0.0.1.dev6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/PKG-INFO +1 -1
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/__init__.py +11 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/_version.py +2 -2
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/.github/dependabot.yml +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/.github/workflows/check-format.yml +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/.github/workflows/pypi-publish.yml +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/.gitignore +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/LICENSE +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/README.md +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/000000.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/140100.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/160150.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/160151.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/160152.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200100.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200103.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200110.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200113.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200300.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/200310.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/210300.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/210900.json +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/configs/__init__.py +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/connection.py +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/exceptions.py +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/my_pv/py.typed +0 -0
- {my_pv-0.0.1.dev5 → my_pv-0.0.1.dev6}/pyproject.toml +0 -0
|
@@ -481,6 +481,17 @@ class MyPVDevice(ABC):
|
|
|
481
481
|
|
|
482
482
|
return await self._connection.send_command(command, value)
|
|
483
483
|
|
|
484
|
+
@property
|
|
485
|
+
def current_temperature(self) -> float:
|
|
486
|
+
return self.get_data_value("temp1")
|
|
487
|
+
|
|
488
|
+
@property
|
|
489
|
+
def target_temperature(self) -> float:
|
|
490
|
+
return self.get_data_value("ww1target")
|
|
491
|
+
|
|
492
|
+
async def set_target_temperature(self, temperature: float) -> bool:
|
|
493
|
+
return await self.set_setup_value("ww1target", temperature)
|
|
494
|
+
|
|
484
495
|
@property
|
|
485
496
|
def is_on(self) -> bool:
|
|
486
497
|
return self.get_setup_value("devmode")
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.0.1.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 0, 1, '
|
|
21
|
+
__version__ = version = '0.0.1.dev6'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 1, 'dev6')
|
|
23
23
|
|
|
24
24
|
__commit_id__ = commit_id = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|