Skip to content

Commit

Permalink
fix: alternator voltage is getting set to the wrong value (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbender9 authored Sep 13, 2018
1 parent d3b2df6 commit 097ef91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conversions/engineParameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module.exports = (app, plugin) => {
"Oil pressure": oilPres === null ? undefined : oilPres / 100,
"Oil temperature": oilTemp === null ? undefined : oilTemp,
"Temperature": temp === null ? undefined : temp,
"Alternator Potential": altVolt === null ? undefined : temp,
"Alternator Potential": altVolt === null ? undefined : altVolt,
"Fuel Rate": fuelRate ===null ? undefined : fuelRate / 3600 * 1000,
"Total Engine hours": runTime === null ? undefined : runTime,
"Coolant Pressure": coolPres === null ? undefined : coolPres / 100,
Expand Down

0 comments on commit 097ef91

Please sign in to comment.