Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Voltage help-tips #4129

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -4838,6 +4838,15 @@
"powerBatteryWarning": {
"message": "Warning Cell Voltage"
},
"powerBatteryMinimumHelp": {
"message": "The voltage that is considered critically low, and will trigger the corresponding warnings. 'LAND NOW' warning in OSD and audible beeping if a beeper is soldered. Also assists in cell-count calculation."
},
"powerBatteryMaximumHelp": {
"message": "The voltage of a fully charged Cell. Assists with cell-count calculation."
},
"powerBatteryWarningHelp": {
"message": "The voltage that is considered low, and will trigger the corresponding warnings. 'LOW BATTERY' warning in OSD."
},
"powerCalibrationManagerButton": {
"message": "Calibration"
},
Expand Down
3 changes: 3 additions & 0 deletions src/tabs/power.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,19 @@
<label> <input type="number" name="mincellvoltage" step="0.1" min="1" max="5" /> <span
i18n="powerBatteryMinimum"></span>
</label>
<span class="helpicon cf_tip" i18n_title="powerBatteryMinimumHelp"></span>
</div>
<div class="number">
<label> <input type="number" name="maxcellvoltage" step="0.1" min="1" max="5" /> <span
i18n="powerBatteryMaximum"></span>
</label>
<span class="helpicon cf_tip" i18n_title="powerBatteryMaximumHelp"></span>
</div>
<div class="number">
<label> <input type="number" name="warningcellvoltage" step="0.1" min="1" max="5" /> <span
i18n="powerBatteryWarning"></span>
</label>
<span class="helpicon cf_tip" i18n_title="powerBatteryWarningHelp"></span>
</div>
<div class="number">
<label> <input type="number" name="capacity" step="1" min="0" max="20000" /> <span
Expand Down