indevolt-api 1.4.2__tar.gz → 1.4.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: indevolt-api
3
- Version: 1.4.2
3
+ Version: 1.4.3
4
4
  Summary: Python API client for Indevolt devices
5
5
  Author: A. Gideonse
6
6
  License: MIT
@@ -21,7 +21,7 @@ from .const import (
21
21
  IndevoltSystem,
22
22
  )
23
23
 
24
- __version__ = "1.4.2"
24
+ __version__ = "1.4.3"
25
25
 
26
26
  __all__ = [
27
27
  "IndevoltAPI",
@@ -327,7 +327,6 @@ class IndevoltAPI:
327
327
  Returns True on success, False if the command was rejected.
328
328
  Raises ValueError if power or target_soc are out of range.
329
329
  """
330
- self.check_charge_limits(power, target_soc, self.generation)
331
330
  try:
332
331
  return await self.set_data(
333
332
  str(SET_REALTIME_ACTION),
@@ -343,7 +342,6 @@ class IndevoltAPI:
343
342
  Returns True on success, False if the command was rejected.
344
343
  Raises ValueError if power or target_soc are out of range.
345
344
  """
346
- self.check_discharge_limits(power, target_soc, self.generation)
347
345
  try:
348
346
  return await self.set_data(
349
347
  str(SET_REALTIME_ACTION),
@@ -28,7 +28,6 @@ class IndevoltEnergyMode(IntEnum):
28
28
  class IndevoltConfig(IntEnum):
29
29
  """Register keys for configurable device settings (read and write)."""
30
30
 
31
- WRITE_REALTIME_ACTION = 47015
32
31
  WRITE_ENERGY_MODE = 47005
33
32
  WRITE_DISCHARGE_LIMIT = 1142
34
33
  WRITE_MAX_AC_OUTPUT_POWER = 1147
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: indevolt-api
3
- Version: 1.4.2
3
+ Version: 1.4.3
4
4
  Summary: Python API client for Indevolt devices
5
5
  Author: A. Gideonse
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "indevolt-api"
7
- version = "1.4.2"
7
+ version = "1.4.3"
8
8
  description = "Python API client for Indevolt devices"
9
9
  readme = "readme.md"
10
10
  authors = [
File without changes
File without changes
File without changes