Removed unnecessary option for final v1.0

This commit is contained in:
2025-06-16 15:15:58 +02:00
parent df4b62fd47
commit 5d94b00bb1
2 changed files with 1 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ power_target_min = float(os.getenv('POWER_TARGET_MIN', 0))
power_target_max = float(os.getenv('POWER_TARGET_MAX', 100))
power_damping_factor = float(os.getenv('POWER_DAMPING_FACTOR', 0.3))
power_limit_change_treshold = float(os.getenv('POWER_LIMIT_CHANGE_TRESHOLD', 0.5))
power_limit_type = int(os.getenv('POWER_LIMIT_TYPE', 1))
power_limit_type = 1 # only set the limit temporary to avoid memory damage; see also: https://github.com/tbnobody/OpenDTU/discussions/742
dry_run = bool(int(os.getenv('DRY_RUN', 1)))
# some checks for the correctness of supplied data