python-qube-heatpump 1.4.5__tar.gz → 1.4.6__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.4.5 → python_qube_heatpump-1.4.6}/PKG-INFO +1 -1
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/pyproject.toml +1 -1
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/sensors.py +5 -2
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/workflows/ci.yml +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/workflows/python-publish.yml +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.gitignore +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/AGENTS.md +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/CLAUDE.md +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/LICENSE +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/README.md +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/pytest.ini +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/__init__.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/client.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/const.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/__init__.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/base.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/binary_sensors.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/switches.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/models.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/py.typed +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/tests/conftest.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/tests/test_client.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/tests/test_const.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/tests/test_entities.py +0 -0
- {python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/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.
|
|
3
|
+
Version: 1.4.6
|
|
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
|
|
@@ -122,7 +122,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
122
122
|
data_type=DataType.FLOAT32,
|
|
123
123
|
platform=Platform.SENSOR,
|
|
124
124
|
unit="%",
|
|
125
|
-
scale=-
|
|
125
|
+
scale=-100.0,
|
|
126
126
|
offset=100.0,
|
|
127
127
|
),
|
|
128
128
|
EntityDef(
|
|
@@ -133,7 +133,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
133
133
|
data_type=DataType.FLOAT32,
|
|
134
134
|
platform=Platform.SENSOR,
|
|
135
135
|
unit="%",
|
|
136
|
-
scale=-
|
|
136
|
+
scale=-100.0,
|
|
137
137
|
offset=100.0,
|
|
138
138
|
),
|
|
139
139
|
EntityDef(
|
|
@@ -144,6 +144,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
144
144
|
data_type=DataType.FLOAT32,
|
|
145
145
|
platform=Platform.SENSOR,
|
|
146
146
|
unit="%",
|
|
147
|
+
scale=100.0,
|
|
147
148
|
),
|
|
148
149
|
EntityDef(
|
|
149
150
|
key="dhw_regreq",
|
|
@@ -153,6 +154,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
153
154
|
data_type=DataType.FLOAT32,
|
|
154
155
|
platform=Platform.SENSOR,
|
|
155
156
|
unit="%",
|
|
157
|
+
scale=100.0,
|
|
156
158
|
),
|
|
157
159
|
EntityDef(
|
|
158
160
|
key="comppwrreq",
|
|
@@ -162,6 +164,7 @@ _SENSOR_DEFS: tuple[EntityDef, ...] = (
|
|
|
162
164
|
data_type=DataType.FLOAT32,
|
|
163
165
|
platform=Platform.SENSOR,
|
|
164
166
|
unit="%",
|
|
167
|
+
scale=100.0,
|
|
165
168
|
),
|
|
166
169
|
EntityDef(
|
|
167
170
|
key="flow",
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/ISSUE_TEMPLATE/bug_report.yml
RENAMED
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.github/ISSUE_TEMPLATE/feature_request.yml
RENAMED
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/.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
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/__init__.py
RENAMED
|
File without changes
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/src/python_qube_heatpump/entities/base.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_qube_heatpump-1.4.5 → python_qube_heatpump-1.4.6}/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
|