mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
Left pad OSD electrical power readout
This commit is contained in:
parent
8a1ba09ee8
commit
3013229918
2 changed files with 7 additions and 7 deletions
|
@ -572,7 +572,7 @@ static void osdDrawSingleElement(uint8_t item)
|
|||
}
|
||||
|
||||
case OSD_POWER:
|
||||
tfp_sprintf(buff, "%dW", getAmperage() * getBatteryVoltage() / 1000);
|
||||
tfp_sprintf(buff, "%4dW", getAmperage() * getBatteryVoltage() / 1000);
|
||||
break;
|
||||
|
||||
case OSD_PIDRATE_PROFILE:
|
||||
|
|
|
@ -616,7 +616,7 @@ TEST(OsdTest, TestElementPower)
|
|||
simulationBatteryVoltage = 100; // 10V
|
||||
|
||||
// and
|
||||
simulationBatteryAmperage = 0;
|
||||
simulationBatteryAmperage = 0; // 0A
|
||||
|
||||
// when
|
||||
displayClearScreen(&testDisplayPort);
|
||||
|
@ -626,7 +626,7 @@ TEST(OsdTest, TestElementPower)
|
|||
displayPortTestBufferSubstring(1, 10, " 0W");
|
||||
|
||||
// given
|
||||
simulationBatteryAmperage = 10; // 0.1AA
|
||||
simulationBatteryAmperage = 10; // 0.1A
|
||||
|
||||
// when
|
||||
displayClearScreen(&testDisplayPort);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue