ilihack / LuaPilot_Taranis_Telemetry

This Script LuaPilot is a nice Telemetry screen for Taranis for Arducopter and more
GNU General Public License v2.0
37 stars 19 forks source link

OpenTX 2.2 #6

Closed Bingisser closed 7 years ago

Bingisser commented 7 years ago

With OpenTX 2.2 the Telemetry Script name must be 6 caracters or less. So change shorten the scriptname.

Something with speed calculation isn't correct. I change it the following way:

629 drawText(getLastPos(), 25, round(data.spd1.851), MIDSIZE) 630 drawText(getLastPos(), 29, "kmh", SMLSIZE) to 629 drawText(getLastPos(), 25, round(data.spd1.851*2), MIDSIZE) 630 drawText(getLastPos(), 29, "km/h", SMLSIZE)

Johnex commented 7 years ago

I can confirm that these 2 fixes are needed for the script to work on the just released OpenTX 2.2

ilihack commented 7 years ago

tank you Bingisser and Johnex 👍