descriptionnone
repository URLhttps://github.com/olliw42/FrskyTelemetry.git
ownerfrskytelemetry@trashmail.net
last changeSat, 20 Jan 2018 22:27:29 +0000 (20 23:27 +0100)
last refreshWed, 12 Feb 2020 23:49:07 +0000 (13 00:49 +0100)
content tags
add:
README.md

Yaapu Frsky Telemetry script

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

Taranis X9D+

Taranis X7

Features

Installation

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.

Hardware requirements

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

Test Mode

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.

Notes

Speech sound files generated with https://soundoftext.com/

As of now only english is supported

shortlog
2018-01-20 Alessandro... Update README.mdmaster
2018-01-20 Alessandro... Update README.md
2018-01-20 yaapu modified: SCRIPTS/TELEMETRY/yaapu7.lua
2018-01-19 yaapu modified: SCRIPTS/TELEMETRY/yaapu7.lua
2018-01-19 yaapu modified: SCRIPTS/TELEMETRY/yaapu7.lua
2018-01-18 yaapuUpdate README.md
2018-01-18 yaapuadded instructions on how to enable test mode
2018-01-18 Alessandro... modified: SCRIPTS/TELEMETRY/yaapu7.luav1.0
2018-01-18 Alessandro... modified: SCRIPTS/TELEMETRY/yaapu7.lua
2018-01-18 Alessandro... modified: IMAGES/screenshot_x7.JPG
2018-01-18 Alessandro... Merge branch 'master' of https://github.com/yaapu/Frsky...
2018-01-18 Alessandro... modified: SCRIPTS/TELEMETRY/yaapu7.lua
2018-01-18 yaapuUpdate README.md
2018-01-18 yaapuUpdate README.md
2018-01-18 Alessandro... modified: IMAGES/screenshot_x7.JPG
2018-01-16 yaapu new file: IMAGES/screenshot_x7.JPG
...
tags
6 years ago v1.0 Initial public release
heads
6 years ago master