Skip to content

Commit

Permalink
Reducing lower limit for AC-charger (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
MalteSchm authored Jan 1, 2024
1 parent cbf7680 commit 5bd3ce5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/Huawei_can.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
// Wait time/current before shuting down the PSU / charger
// This is set to allow the fan to run for some time
#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
#define HUAWEI_DATA_REQUEST_INTERVAL_MS 2500
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/views/AcChargerAdminView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div class="input-group">
<input type="number" class="form-control" id="lowerPowerLimit"
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>
</div>
</div>
Expand Down

0 comments on commit 5bd3ce5

Please sign in to comment.