diff --git a/Lua_Telemetry/DisplayApmPosition/SCRIPTS/TELEMETRY/speed.lua b/Lua_Telemetry/DisplayApmPosition/SCRIPTS/TELEMETRY/speed.lua deleted file mode 100644 index 94e9b7f..0000000 --- a/Lua_Telemetry/DisplayApmPosition/SCRIPTS/TELEMETRY/speed.lua +++ /dev/null @@ -1,9 +0,0 @@ - local function run(event) - lcd.clear() - lcd.drawText(1,1,"GSpd: ",MIDSIZE) - lcd.drawNumber(lcd.getLastPos(),1,getValue("GSpd")*10,MIDSIZE+LEFT+PREC1) - lcd.drawText(1,20,"ASpd: ",MIDSIZE) - lcd.drawNumber(lcd.getLastPos(),20,getValue("ASpd")*10,MIDSIZE+LEFT+PREC1) - end - - return {run=run}