Iacopo Boccalari's Posts (1)

Sort by

Let your Taranis know when you arm your quad!

3689598762?profile=original

I, like many others, own a FrSky Taranis and I simply love it, I like how you can program any little detail and today I decided a regular timer wasn't enough, I simply wanted the Taranis to know when my quad is armed and when it is disarmed in order to log telemetry data only when the copter is in use and also to start the timer only when the motors are spinning. Before this I used to log data as soon as the radio was on and the timer was set to be proportional to the Throttle stick position.

Let's take a look at how I programmed the radio to know when I arm the copter.

Here is a screenshot of the custon switches tab:

3689598687?profile=original

I fly in mode 1 and arm my copter with throttle down and right aileron, if you fly in mode 2 you probably use the rudder stick instead of the aileron one, that means you will simply have to change "Ail" to "Rud", all the rest will be exactly the same.

Let's go through what I've done:

CS7 will be ON if throttle stick is down.

CS8 and 9 will be ON if 3 conditions are met: aileron stick must be full right or full left and CS7 must be ON (remember we want CS7 to be on when throttle is down), the third and last condition is a 1,5 seconds delay, this means the first 2 conditions (CS7 and Ail>98 or <-98) have to be both true for at least 1,5 seconds, if they are true for less than that time, the switch won't be triggered.

We now move onto the custom functions tab:

3689598767?profile=original

The way we set our custom switches makes them temporary, but we want our armed/disarmed state to be permanent, the solution I came up with is to use global variables.

CF6 sets global variable GV1 to 1 when CS8 is triggered, viceversa CF7 sets the variable to 0 if CS9 is triggered, this way, CS8 will be on for a fraction of time, but GV1 will stay on permanently, at least until CS9 is triggered.

Now that we set these 2 custom functions we can go back to the custom switches tab and set the last custon switch: CSA.
This is very simple, we simply check GV1 value and turn CSA ON if the value is greater than 0, so a value of 1 will trigger it ON, and a value of 0 will leave it OFF.

DONE!

Now it's up to you, you have a custom switch that mimicks the armed/disarmed state of your flight controller, you can use it for whatever you want, the way I used it is the following:

This is what you do to start logging telemetry to your SD card:

3689598694?profile=original

And this is to start a timer:

3689598803?profile=original

Enjoy and if there's a better way to do this or a cool way to use this custom switch other than logging and starting a timer, please let me know!

Iacopo

Read more…