description | none |
repository URL | https://github.com/olliw42/FrskyTelemetry.git |
owner | frskytelemetry@trashmail.net |
last change | Sat, 20 Jan 2018 22:27:29 +0000 (20 23:27 +0100) |
last refresh | Wed, 12 Feb 2020 23:49:07 +0000 (13 00:49 +0100) |
mirror URL | git://repo.or.cz/FrskyTelemetry.git |
https://repo.or.cz/FrskyTelemetry.git | |
ssh://git@repo.or.cz/FrskyTelemetry.git | |
bundle info | FrskyTelemetry.git downloadable bundles |
content tags |
A lua based telemetry script for the Taranis X9D+ and X7 radio using the frsky passthrough protocol.
Requires OpenTX 2.2 and a recent release of arducoper, arduplane or rover.
Tested on a pixracer with copter 3.5.3 and on a pixhawk clone with copter 3.5.4
The script is quite big and compilation on your radio may fail. The safest way is to compile it on Companion and then copy the .luac compiled version to the SD card in the /SCRIPTS/TELEMETRY folder.
To enable sound files playback copy them to /SOUNDS/yaapu0/en folder.
Please refer to the arducopter wiki for information on how to configure your flight controller for passthrough protocol
For information on how to connect the FrSky equipment together, please refer to
The script can be run in TEST mode. By using TEST mode you can control the telemetry values by moving the radio sticks.
PLEASE DO NOT FLY IN THIS MODE
To enable TEST mode you need to uncomment some code and recompile the script.
the first change is in function telemetryEnabled which should be as below
local function telemetryEnabled()
if getValue("RxBt") == 0 then
noTelemetryData = 1
end
return true
--return noTelemetryData == 0
end
the second part that needs to be changed is in the run() function where the line symMode() must be uncommented
local function run(event)
...
processTelemetry()
lcd.clear()
symMode()
drawHud()
drawGrid()
drawBattery()
...
Now you can test how the script behaves by using your radio channels 1,2,3,4,10 and 12.
Speech sound files generated with https://soundoftext.com/
As of now only english is supported
6 years ago | v1.0 | Initial public release | tag | commitlog |
6 years ago | master | logtree |