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.
Files changed (27) hide show
  1. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/PKG-INFO +1 -1
  2. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/__init__.py +3 -3
  3. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/_version.py +2 -2
  4. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/dependabot.yml +0 -0
  5. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/workflows/check-format.yml +0 -0
  6. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.github/workflows/pypi-publish.yml +0 -0
  7. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/.gitignore +0 -0
  8. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/LICENSE +0 -0
  9. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/README.md +0 -0
  10. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/000000.json +0 -0
  11. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/140100.json +0 -0
  12. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160150.json +0 -0
  13. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160151.json +0 -0
  14. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/160152.json +0 -0
  15. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200100.json +0 -0
  16. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200103.json +0 -0
  17. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200110.json +0 -0
  18. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200113.json +0 -0
  19. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200300.json +0 -0
  20. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/200310.json +0 -0
  21. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/210300.json +0 -0
  22. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/210900.json +0 -0
  23. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/configs/__init__.py +0 -0
  24. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/connection.py +0 -0
  25. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/exceptions.py +0 -0
  26. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/my_pv/py.typed +0 -0
  27. {my_pv-0.0.1.dev6 → my_pv-0.0.1.dev7}/pyproject.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: my-PV
3
- Version: 0.0.1.dev6
3
+ Version: 0.0.1.dev7
4
4
  Summary: Library to interface with my-PV devices.
5
5
  Project-URL: Homepage, https://my-pv.com/
6
6
  Project-URL: Repository, https://github.com/my-PV/py-mypv
@@ -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.get_data_value("ww1target")
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.dev6'
22
- __version_tuple__ = version_tuple = (0, 0, 1, 'dev6')
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