Merge pull request #7707 from mikeller/fix_hal_dshot
[betaflight.git] / docs / VTX.md
blob2dc9b1f3cf464f65ddf58bbce8f57b6825a207f6
1 # VTX
3 Cleanflight supports control of VTX modules.  
5 ## VTX Systems
7 Current support includes 
8 1. RTC6705 directly connected to the CPU (maybe via a PCB board interconnect, e.g. SPRACINGF3NEO)
9 2. IRC Tramp
10 3. TBS Smart Audio
12 ## VTX Button
14 If your FC has a button, excluding a BOOT buttons, then it can be used for VTX control.
16 Some boards like the SPRacingF3NEO have both a VTX module and a button.
17 Other boards like the SPRacingF3MINI have multiple buttons.
19 ### VTX Button usage
21 While the VTX button is held the STATUS 2 LED will flash N times per second indicating the action that will be taken when the button is released. The flashing starts as soon as the button is held. e.g. You press the button, count flashes and then release as appropriate.
23 | Duration      | Function                  | Flashes   |
24 |---------------|---------------------------|-----------|
25 | 25ms to 1s    | Cycle Channel             | 4         |
26 | 1s to 3s      | Cycle Band                | 3         |
27 | 3s to 5s      | Cycle Power and RF Power  | 2         |
28 | 5s or more    | Save FC settings          | 1         |
30 Example to cycle VTX power
31 ```
32 0 seconds       | 1 second      | 2 seconds     | 3 seconds     | 4 seconds     | 5 seconds     | 6 seconds or more |
33 [-HOLD BUTTON-----------------------------------|-RELEASE BUTTON-NOW------------|-RELEASED TO LATE TO CHANGE POWER -|
34 | 4 Flashes     | 3 flashes     | 3 flashes     | 2 flashes     | 2 flashes     | 1 flash       | 1 flash           |
35 ```
37 The VTX button works with ALL VTX systems including onboard RTC6705, Tramp and SmartAudio.
40 If the VTX can be turned off then POWER 0 will turn off the VTX and POWER 1 will set the VTX into it's lowest power output.
41 If the VTX cannot be turned off then POWER 0 will set the VTX into it's lowest power output.