mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-01 13:38:38 -04:00
AP_OSD: fix BLHAMPS current divisor
This commit is contained in:
parent
e9d6c47f76
commit
5b955333ce
@ -768,7 +768,7 @@ void AP_OSD_Screen::draw_blh_amps(uint8_t x, uint8_t y)
|
||||
return;
|
||||
}
|
||||
|
||||
float esc_amps = td.current;
|
||||
float esc_amps = td.current * 0.01;
|
||||
backend->write(x, y, false, "%4.1f%c", esc_amps, SYM_AMP);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user