Skip to content

Commit

Permalink
Merge branch 'vedderb:master' into ci
Browse files Browse the repository at this point in the history
  • Loading branch information
darwinbeing authored Dec 4, 2023
2 parents 03f9011 + 9219abe commit 6e59e95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions QCodeEditor/resources/languages/lisp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@
<name>bufcpy</name>
<name>bufset-bit</name>
<name>buf-find</name>
<name>buf-resize</name>
<name>load-native-lib</name>
<name>unload-native-lib</name>
<name>uavcan-last-rawcmd</name>
Expand Down
2 changes: 1 addition & 1 deletion mobile/StatPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Item {
tripText.text =
"Time : " + new Date(val.count_time * 1000).toISOString().substr(11, 8) + "\n" +
"Distance : " + parseFloat(val.distance()).toFixed(2) + " m\n" +
"Efficiency : " + parseFloat(val.efficiency() * impFact).toFixed(3) + " " + efficiencyUnit + "\n" +
"Efficiency : " + parseFloat(val.efficiency() / impFact).toFixed(3) + " " + efficiencyUnit + "\n" +
"Energy : " + parseFloat(val.energy()).toFixed(3) + " Wh\n" +
"Ah : " + parseFloat(val.ah()).toFixed(3) + " Ah\n" +
"Speed Avg : " + parseFloat(val.speed_avg * 3.6 * impFact).toFixed(1) + " " + speedUnit + "\n" +
Expand Down

0 comments on commit 6e59e95

Please sign in to comment.