1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 09:15:38 +03:00

Fixes #3043: unit for Air speed sensor set to knots

This commit is contained in:
Damjan Adamic 2015-12-13 20:38:04 +01:00
parent 034221a78e
commit aa2ca4f729
2 changed files with 5 additions and 5 deletions

View file

@ -940,7 +940,7 @@ Timestamp</string>
</font>
</property>
<property name="text">
<string>KmH</string>
<string>knots</string>
</property>
</widget>
</item>
@ -1120,7 +1120,7 @@ Timestamp</string>
</font>
</property>
<property name="text">
<string>KmH</string>
<string>km/h</string>
</property>
</widget>
</item>
@ -1282,7 +1282,7 @@ Timestamp</string>
</font>
</property>
<property name="text">
<string>Deg. C</string>
<string>°C</string>
</property>
</widget>
</item>
@ -1573,7 +1573,7 @@ Timestamp</string>
</font>
</property>
<property name="text">
<string>Meter/Sec.</string>
<string>m/s</string>
</property>
</widget>
</item>

View file

@ -75,7 +75,7 @@ const FrSkySportSensor sportSensors[] = {
{ ACCZ_FIRST_ID, ACCZ_LAST_ID, ZSTR_ACCZ, UNIT_G, 2 },
{ CURR_FIRST_ID, CURR_LAST_ID, ZSTR_CURR, UNIT_AMPS, 1 },
{ VFAS_FIRST_ID, VFAS_LAST_ID, ZSTR_VFAS, UNIT_VOLTS, 2 },
{ AIR_SPEED_FIRST_ID, AIR_SPEED_LAST_ID, ZSTR_ASPD, UNIT_KMH, 1 },
{ AIR_SPEED_FIRST_ID, AIR_SPEED_LAST_ID, ZSTR_ASPD, UNIT_KTS, 1 },
{ GPS_SPEED_FIRST_ID, GPS_SPEED_LAST_ID, ZSTR_GSPD, UNIT_KTS, 3 },
{ CELLS_FIRST_ID, CELLS_LAST_ID, ZSTR_CELLS, UNIT_CELLS, 2 },
{ GPS_ALT_FIRST_ID, GPS_ALT_LAST_ID, ZSTR_GPSALT, UNIT_METERS, 2 },