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.
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/PKG-INFO +1 -1
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api/__init__.py +1 -1
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api/client.py +0 -2
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api/const.py +0 -1
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api.egg-info/PKG-INFO +1 -1
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/pyproject.toml +1 -1
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/LICENSE +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api/py.typed +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api.egg-info/SOURCES.txt +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api.egg-info/dependency_links.txt +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api.egg-info/requires.txt +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/indevolt_api.egg-info/top_level.txt +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/readme.md +0 -0
- {indevolt_api-1.4.2 → indevolt_api-1.4.3}/setup.cfg +0 -0
|
@@ -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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|