python-qube-heatpump 1.4.5__tar.gz → 1.4.7__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 (28) hide show
  1. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/PKG-INFO +1 -1
  2. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/pyproject.toml +1 -1
  3. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/entities/sensors.py +5 -4
  4. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  5. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  6. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  7. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.github/workflows/ci.yml +0 -0
  8. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.github/workflows/python-publish.yml +0 -0
  9. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/.gitignore +0 -0
  10. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/AGENTS.md +0 -0
  11. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/CLAUDE.md +0 -0
  12. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/LICENSE +0 -0
  13. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/README.md +0 -0
  14. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/pytest.ini +0 -0
  15. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/__init__.py +0 -0
  16. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/client.py +0 -0
  17. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/const.py +0 -0
  18. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/entities/__init__.py +0 -0
  19. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/entities/base.py +0 -0
  20. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/entities/binary_sensors.py +0 -0
  21. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/entities/switches.py +0 -0
  22. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/models.py +0 -0
  23. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/src/python_qube_heatpump/py.typed +0 -0
  24. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/tests/conftest.py +0 -0
  25. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/tests/test_client.py +0 -0
  26. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/tests/test_const.py +0 -0
  27. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/tests/test_entities.py +0 -0
  28. {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.7}/tests/test_models.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-qube-heatpump
3
- Version: 1.4.5
3
+ Version: 1.4.7
4
4
  Summary: Async Modbus client for Qube Heat Pumps
5
5
  Project-URL: Homepage, https://github.com/MattieGit/python-qube-heatpump
6
6
  Project-URL: Bug Tracker, https://github.com/MattieGit/python-qube-heatpump/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "python-qube-heatpump"
7
- version = "1.4.5"
7
+ version = "1.4.7"
8
8
  authors = [
9
9
  { name="MattieGit", email="6250046+MattieGit@users.noreply.github.com" },
10
10
  ]
@@ -122,8 +122,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
122
122
  data_type=DataType.FLOAT32,
123
123
  platform=Platform.SENSOR,
124
124
  unit="%",
125
- scale=-1.0,
126
- offset=100.0,
125
+ scale=100.0,
127
126
  ),
128
127
  EntityDef(
129
128
  key="aout_srcpmp_val",
@@ -133,8 +132,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
133
132
  data_type=DataType.FLOAT32,
134
133
  platform=Platform.SENSOR,
135
134
  unit="%",
136
- scale=-1.0,
137
- offset=100.0,
135
+ scale=100.0,
138
136
  ),
139
137
  EntityDef(
140
138
  key="aout_srcvalve_val",
@@ -144,6 +142,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
144
142
  data_type=DataType.FLOAT32,
145
143
  platform=Platform.SENSOR,
146
144
  unit="%",
145
+ scale=100.0,
147
146
  ),
148
147
  EntityDef(
149
148
  key="dhw_regreq",
@@ -153,6 +152,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
153
152
  data_type=DataType.FLOAT32,
154
153
  platform=Platform.SENSOR,
155
154
  unit="%",
155
+ scale=100.0,
156
156
  ),
157
157
  EntityDef(
158
158
  key="comppwrreq",
@@ -162,6 +162,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
162
162
  data_type=DataType.FLOAT32,
163
163
  platform=Platform.SENSOR,
164
164
  unit="%",
165
+ scale=100.0,
165
166
  ),
166
167
  EntityDef(
167
168
  key="flow",