my-PV 0.0.1.dev6__tar.gz → 0.0.1.dev7__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.dev6 → my_pv-0.0.1.dev7}/PKG-INFO +1 -1
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/__init__.py +3 -3
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/_version.py +2 -2
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/dependabot.yml +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/workflows/check-format.yml +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/workflows/pypi-publish.yml +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.gitignore +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/LICENSE +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/README.md +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/000000.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/140100.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160150.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160151.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160152.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200100.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200103.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200110.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200113.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200300.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200310.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/210300.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/210900.json +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/__init__.py +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/connection.py +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/exceptions.py +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/py.typed +0 -0
- {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/pyproject.toml +0 -0
|
@@ -482,12 +482,12 @@ class MyPVDevice(ABC):
|
|
|
482
482
|
return await self._connection.send_command(command, value)
|
|
483
483
|
|
|
484
484
|
@property
|
|
485
|
-
def current_temperature(self) -> float:
|
|
485
|
+
def current_temperature(self) -> float | None:
|
|
486
486
|
return self.get_data_value("temp1")
|
|
487
487
|
|
|
488
488
|
@property
|
|
489
|
-
def target_temperature(self) -> float:
|
|
490
|
-
return self.
|
|
489
|
+
def target_temperature(self) -> float | None:
|
|
490
|
+
return self.get_setup_value("ww1target")
|
|
491
491
|
|
|
492
492
|
async def set_target_temperature(self, temperature: float) -> bool:
|
|
493
493
|
return await self.set_setup_value("ww1target", temperature)
|
|
@@ -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.dev7'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 1, 'dev7')
|
|
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
|