1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 01:35:21 +03:00

10200mAh as a maximum for Consumption in Telemetry Bars

This commit is contained in:
bsongis 2014-05-05 10:53:59 +02:00
parent be3c674fe5
commit 2810323cc7
2 changed files with 3 additions and 3 deletions

View file

@ -2145,7 +2145,7 @@ getvalue_t convert8bitsTelemValue(uint8_t channel, ls_telemetry_value_t value)
result = value * 5;
break;
case TELEM_CONSUMPTION:
result = value * 20;
result = value * 40;
break;
case TELEM_VSPEED:
result = ((getvalue_t)value - 125) * 10;