python-qube-heatpump 1.5.0__tar.gz → 1.5.2__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.
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/PKG-INFO +1 -1
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/pyproject.toml +1 -1
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/sensors.py +1 -7
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/workflows/ci.yml +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/workflows/python-publish.yml +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.gitignore +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/AGENTS.md +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/CLAUDE.md +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/LICENSE +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/README.md +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/docs/202506_modbus-lijst-qube.pdf +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/pytest.ini +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/__init__.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/client.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/const.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/__init__.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/base.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/binary_sensors.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/switches.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/models.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/py.typed +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/tests/conftest.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/tests/test_client.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/tests/test_const.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/tests/test_entities.py +0 -0
- {python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/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.5.
|
|
3
|
+
Version: 1.5.2
|
|
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
|
|
@@ -124,7 +124,6 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
124
124
|
data_type=DataType.FLOAT32,
|
|
125
125
|
platform=Platform.SENSOR,
|
|
126
126
|
unit="%",
|
|
127
|
-
scale=100.0,
|
|
128
127
|
),
|
|
129
128
|
EntityDef(
|
|
130
129
|
key="aout_srcpmp_val",
|
|
@@ -134,7 +133,6 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
134
133
|
data_type=DataType.FLOAT32,
|
|
135
134
|
platform=Platform.SENSOR,
|
|
136
135
|
unit="%",
|
|
137
|
-
scale=100.0,
|
|
138
136
|
),
|
|
139
137
|
EntityDef(
|
|
140
138
|
key="aout_srcvalve_val",
|
|
@@ -144,7 +142,6 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
144
142
|
data_type=DataType.FLOAT32,
|
|
145
143
|
platform=Platform.SENSOR,
|
|
146
144
|
unit="%",
|
|
147
|
-
scale=100.0,
|
|
148
145
|
),
|
|
149
146
|
EntityDef(
|
|
150
147
|
key="dhw_regreq",
|
|
@@ -154,7 +151,6 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
154
151
|
data_type=DataType.FLOAT32,
|
|
155
152
|
platform=Platform.SENSOR,
|
|
156
153
|
unit="%",
|
|
157
|
-
scale=100.0,
|
|
158
154
|
),
|
|
159
155
|
EntityDef(
|
|
160
156
|
key="comppwrreq",
|
|
@@ -164,7 +160,6 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
164
160
|
data_type=DataType.FLOAT32,
|
|
165
161
|
platform=Platform.SENSOR,
|
|
166
162
|
unit="%",
|
|
167
|
-
scale=100.0,
|
|
168
163
|
),
|
|
169
164
|
EntityDef(
|
|
170
165
|
key="flow",
|
|
@@ -299,8 +294,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
299
294
|
input_type=InputType.INPUT_REGISTER,
|
|
300
295
|
data_type=DataType.FLOAT32,
|
|
301
296
|
platform=Platform.SENSOR,
|
|
302
|
-
unit="
|
|
303
|
-
scale=60.0,
|
|
297
|
+
unit="rps",
|
|
304
298
|
),
|
|
305
299
|
EntityDef(
|
|
306
300
|
key="dhw_setp",
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/ISSUE_TEMPLATE/bug_report.yml
RENAMED
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/ISSUE_TEMPLATE/feature_request.yml
RENAMED
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/.github/workflows/python-publish.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/__init__.py
RENAMED
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/entities/base.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.5.0 → python_qube_heatpump-1.5.2}/src/python_qube_heatpump/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|