AP_OSD: fix BLHAMPS current divisor

This commit is contained in:
vierfuffzig 2018-10-18 22:08:31 +02:00 committed by Andrew Tridgell
parent e9d6c47f76
commit 5b955333ce

View File

@ -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);
}
}