python-qube-heatpump 1.4.4__py3-none-any.whl → 1.4.5__py3-none-any.whl

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.
@@ -217,11 +217,6 @@ class QubeClient:
217
217
  else:
218
218
  count = 1
219
219
 
220
- _LOGGER.debug(
221
- "read_entity: key=%s addr=%s input_type=%s data_type=%s count=%s",
222
- entity.key, entity.address, entity.input_type, data_type_str, count
223
- )
224
-
225
220
  try:
226
221
  # Read based on input type (use string comparison for safety)
227
222
  input_type_str = entity.input_type.value if entity.input_type else None
@@ -260,19 +255,11 @@ class QubeClient:
260
255
  regs = result.registers
261
256
  val: float | int = 0
262
257
 
263
- _LOGGER.debug(
264
- "read_entity: key=%s raw_regs=%s", entity.key, regs
265
- )
266
-
267
258
  # Decode based on data type (use string comparison for safety)
268
259
  # Qube uses big endian word order (ABCD): regs[0]=MSW, regs[1]=LSW
269
260
  if data_type_str == "float32":
270
261
  int_val = (regs[0] << 16) | regs[1]
271
262
  val = struct.unpack(">f", struct.pack(">I", int_val))[0]
272
- _LOGGER.debug(
273
- "read_entity: key=%s float32 int_val=%s decoded=%s",
274
- entity.key, int_val, val
275
- )
276
263
  elif data_type_str == "int16":
277
264
  val = regs[0]
278
265
  if val > 32767:
@@ -294,11 +281,6 @@ class QubeClient:
294
281
  if entity.offset is not None:
295
282
  val = val + entity.offset
296
283
 
297
- _LOGGER.debug(
298
- "read_entity: key=%s final_value=%s (scale=%s, offset=%s)",
299
- entity.key, val, entity.scale, entity.offset
300
- )
301
-
302
284
  return val
303
285
 
304
286
  except Exception as e:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-qube-heatpump
3
- Version: 1.4.4
3
+ Version: 1.4.5
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
@@ -1,5 +1,5 @@
1
1
  python_qube_heatpump/__init__.py,sha256=VnHFpnpnRzpxmNPAGM29FQkrcPcBAaIniWjHu68-7WA,669
2
- python_qube_heatpump/client.py,sha256=PYI62fwMg9nIUo4JpbXCfhRPGZSWYd2PimlVcI1-2dk,17344
2
+ python_qube_heatpump/client.py,sha256=BMkUMa08hUOqtGw96rGv_mhdXC29U55dwxLrGL72StU,16695
3
3
  python_qube_heatpump/const.py,sha256=oAwKCIpmXPh5dRwX1dhdmGTJZKMlTVDnspUqAgYGZk0,4651
4
4
  python_qube_heatpump/models.py,sha256=vbJdY93JkQ6ea30qhGjuCknUxRJqTiz0mTjPsb2r4xk,1841
5
5
  python_qube_heatpump/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -8,7 +8,7 @@ python_qube_heatpump/entities/base.py,sha256=5itTSm6cxklHsPr1qz3UWmr1kYBeCVOAugk
8
8
  python_qube_heatpump/entities/binary_sensors.py,sha256=lsYC0MEHjJ7JmJUgYzdHndkrZ1Ekxz4j9HqYDMEE_IA,7649
9
9
  python_qube_heatpump/entities/sensors.py,sha256=Lros4QS1xzapR26n40GeAUDyiBipKGPuHyWDUbzgIiw,13176
10
10
  python_qube_heatpump/entities/switches.py,sha256=MAaK-63dgVZEm9Ch_CW7umYM_mPqMoPYl8i0ZpZIaYE,1676
11
- python_qube_heatpump-1.4.4.dist-info/METADATA,sha256=_L2vi_wKTyqg7KY79uz0cA0QI3QjiVOa_LKn8B0UXgA,951
12
- python_qube_heatpump-1.4.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
13
- python_qube_heatpump-1.4.4.dist-info/licenses/LICENSE,sha256=qpuQXN7QwpILG9GYcmqrd3Ax5CxBZUBoT295xTgKnOM,1062
14
- python_qube_heatpump-1.4.4.dist-info/RECORD,,
11
+ python_qube_heatpump-1.4.5.dist-info/METADATA,sha256=HOyA_-qZGiFEnhoxAd7GBmEErpOb7g-ecsmz_uSwjTY,951
12
+ python_qube_heatpump-1.4.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
13
+ python_qube_heatpump-1.4.5.dist-info/licenses/LICENSE,sha256=qpuQXN7QwpILG9GYcmqrd3Ax5CxBZUBoT295xTgKnOM,1062
14
+ python_qube_heatpump-1.4.5.dist-info/RECORD,,