<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[SEL and CTL buttons on CHRONOMETR]]></title><description><![CDATA[<p dir="auto">I can't configure my yoke with the SEL and CTL buttons on CHRONOMETR. I'm using MFS2020 and FSUIPS 7. Anyone have any ideas? How do I assign them? For example, is it possible to write a script and what data should I use?</p>
]]></description><link>https://community.justflight.com/topic/10910/sel-and-ctl-buttons-on-chronometr</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Jul 2026 06:37:57 GMT</lastBuildDate><atom:link href="https://community.justflight.com/topic/10910.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Jul 2026 21:23:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SEL and CTL buttons on CHRONOMETR on Wed, 08 Jul 2026 22:51:34 GMT]]></title><description><![CDATA[<p dir="auto">The two buttons increment two variables that hold the state of the chronometer.  The SEL button increments <code>L:var_yokeChronoMode_L</code>, while CTL increments <code>L:var_yokeTimerMode_L</code>.  You will need these variables to wrap from 0-2, which is usually achieved with a modulo operator (percent sign).  If your scripts are in RPN, they will look like this:</p>
<pre><code>(L:var_yokeChronoMode_L, number) 1 + 3 % (&gt;L:var_yokeChronoMode_L, number)

(L:var_yokeTimerMode_L, number) 1 + 3 % (&gt;L:var_yokeTimerMode_L, number)
</code></pre>
<p dir="auto">I hope that helps!  Let me know if you have any questions.</p>
]]></description><link>https://community.justflight.com/post/52034</link><guid isPermaLink="true">https://community.justflight.com/post/52034</guid><dc:creator><![CDATA[Black Square]]></dc:creator><pubDate>Wed, 08 Jul 2026 22:51:34 GMT</pubDate></item></channel></rss>