Reducing lower limit for AC-charger (#574)

This commit is contained in:
MalteSchm 2024-01-01 17:06:58 +01:00 committed by GitHub
parent cbf7680836
commit 5bd3ce5a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@
// Wait time/current before shuting down the PSU / charger // Wait time/current before shuting down the PSU / charger
// This is set to allow the fan to run for some time // This is set to allow the fan to run for some time
#define HUAWEI_AUTO_MODE_SHUTDOWN_DELAY 60000 #define HUAWEI_AUTO_MODE_SHUTDOWN_DELAY 60000
#define HUAWEI_AUTO_MODE_SHUTDOWN_CURRENT 1.0 #define HUAWEI_AUTO_MODE_SHUTDOWN_CURRENT 0.75
// Updateinterval used to request new values from the PSU // Updateinterval used to request new values from the PSU
#define HUAWEI_DATA_REQUEST_INTERVAL_MS 2500 #define HUAWEI_DATA_REQUEST_INTERVAL_MS 2500

View File

@ -56,7 +56,7 @@
<div class="input-group"> <div class="input-group">
<input type="number" class="form-control" id="lowerPowerLimit" <input type="number" class="form-control" id="lowerPowerLimit"
placeholder="150" v-model="acChargerConfigList.lower_power_limit" placeholder="150" v-model="acChargerConfigList.lower_power_limit"
aria-describedby="lowerPowerLimitDescription" min="100" max="3000" required/> aria-describedby="lowerPowerLimitDescription" min="50" max="3000" required/>
<span class="input-group-text" id="lowerPowerLimitDescription">W</span> <span class="input-group-text" id="lowerPowerLimitDescription">W</span>
</div> </div>
</div> </div>