King KR-87 ADF radio markup
It's a little funky to use right now because the FRQ and timer buttons should be momentary action. As it stands you need to do 2 clicks to send on/off. If anybody can think of a workaround, we could use one. For now the ADF and BFO buttons just toggle the annunciators. For ANT mode, I just need to wire up the ADF needle. Two clicks on FRQ flip flops the selected and standby freqs. Two clicks of FLT/ET will change the standby display to timer mode and another two will flip between FLT and ET. If you click and the annunciator flashes briefly but the display does not change, you need to click FRQ -one time- to get the button in phase. ET mode has a count down mode, this is where it really gets tricky. On the real thing, you hold the SET/RST button for 2 seconds. Here you must click one time, wait for the display to flash then click one more time. Now you can set the time to count down. Right clicking the dial will set minutes, middle click (I know, I'll make it a keyboard modifier later) sets hours. As usual the left side decreases and right side increases. Once you have the desired time set, click the SET/RST button twice in rapid succession. Two rapid clicks will reset the elapsed timer when it's counting down, but also while you are setting it (when display is flashing). When the count down timer reaches zero, it starts counting up again. It -should- flash for 15 seconds and set off a warning tone, but for now it doesn't. The unit is also equipped with an on/off/volume knob. Whne the unit is powered down the timers are reset. TODO: Add labeling Wire up ADF needle Prettier face
This commit is contained in:
parent
b0e9bebdfc
commit
e08a89a37c
1 changed files with 913 additions and 0 deletions
913
Aircraft/Instruments/kr-87adf.xml
Normal file
913
Aircraft/Instruments/kr-87adf.xml
Normal file
|
@ -0,0 +1,913 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!--
|
||||
King KR-87 ADF radio instrument.
|
||||
John Check <j4strngs@rockfish.net>
|
||||
July 2002
|
||||
|
||||
This is an instrument configuration file for the open-source flight
|
||||
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
|
||||
FlightGear property list defining the instrument's layers and actions.
|
||||
|
||||
Each instrument is composed of layers stacked on top of each other.
|
||||
A layer may be a texture (with transparent parts to show the layers
|
||||
underneath), text, or a special layer that switches between two
|
||||
others (say, to turn an indicator light on or off). Each layer can
|
||||
move independently in proportion to a property value, and text
|
||||
can be generated from property values as well: all of the layer's
|
||||
movements are defined as transformations.
|
||||
|
||||
Actions are hotspots on the instrument that will respond to a mouse
|
||||
click. Actions always modify the values of properties, either by
|
||||
adjusting them, toggling them, or swaping them with other
|
||||
properties' values.
|
||||
-->
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<name>ADF Radio</name>
|
||||
<w-base>256</w-base>
|
||||
<h-base>52</h-base>
|
||||
|
||||
<layers>
|
||||
|
||||
<layer>
|
||||
<name>background</name>
|
||||
<texture>
|
||||
<path>Aircraft/Instruments/Textures/kr-87adf.rgb</path>
|
||||
<x1>0.0</x1>
|
||||
<y1>0.80</y1>
|
||||
<x2>1.0</x2>
|
||||
<y2>1.0</y2>
|
||||
</texture>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>ADF annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/adf</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>ADF</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-110</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>ANT annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/ant</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>ANT</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-110</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Selected FRQ display</name>
|
||||
<condition>
|
||||
<greater-than>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<value>0.0</value>
|
||||
</greater-than>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>14</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>number-value</type>
|
||||
<property>/radios/kr-87/outputs/selected-khz</property>
|
||||
<format>%4.0f</format>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-85</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>BFO annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/bfo</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>BFO</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-50</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>13</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Standby FRQ annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/frq</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>FRQ</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-45</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>0</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Standby FRQ display</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/frq</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/stby</property>
|
||||
<value>0</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>14</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>number-value</type>
|
||||
<property>/radios/kr-87/outputs/standby-khz</property>
|
||||
<format>%4.0f</format>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-10</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Flight Timer display</name>
|
||||
<condition>
|
||||
<greater-than>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<value>0.0</value>
|
||||
</greater-than>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/stby</property>
|
||||
<value>1</value>
|
||||
</equals>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/flt</property>
|
||||
<value>1</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>14</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>text-value</type>
|
||||
<property>/radios/kr-87/outputs/timer-string</property>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-10</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Elapsed Timer display</name>
|
||||
<condition>
|
||||
<greater-than>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<value>0.0</value>
|
||||
</greater-than>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/stby</property>
|
||||
<value>1</value>
|
||||
</equals>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/et</property>
|
||||
<value>1</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>14</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>text-value</type>
|
||||
<property>/radios/kr-87/outputs/timer-string</property>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-10</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
|
||||
<layer>
|
||||
<name>Flight Time annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/flt</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>FLT</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>40</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>13</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Elapsed Time annunciator</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/annunciators/et</property>
|
||||
<value>true</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>1.0</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>ET</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>45</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>0</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<!-- knobs -->
|
||||
|
||||
<layer>
|
||||
<name>freq/time adjust</name>
|
||||
<texture>
|
||||
<path>Aircraft/Instruments/Textures/blister.rgb</path>
|
||||
<x1>0.0</x1>
|
||||
<y1>0.75</y1>
|
||||
<x2>0.25</x2>
|
||||
<y2>1.0</y2>
|
||||
</texture>
|
||||
<h>32</h>
|
||||
<w>32</w>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>100</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>ident on|off|volume knob</name>
|
||||
<texture>
|
||||
<path>Aircraft/Instruments/Textures/blister.rgb</path>
|
||||
<x1>0.0</x1>
|
||||
<y1>0.75</y1>
|
||||
<x2>0.25</x2>
|
||||
<y2>1.0</y2>
|
||||
</texture>
|
||||
<w>15</w>
|
||||
<h>15</h>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>70</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-16</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
<layer>
|
||||
<name>ident knob pointer</name>
|
||||
<texture>
|
||||
<path>Aircraft/Instruments/Textures/blister.rgb</path>
|
||||
<x1>0.0</x1>
|
||||
<y1>0.1640625</y1>
|
||||
<x2>0.1</x2>
|
||||
<y2>0.328125</y2>
|
||||
</texture>
|
||||
<w>2</w>
|
||||
<h>6</h>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>70</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-16</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<min>0</min>
|
||||
<max>2</max>
|
||||
<scale>140</scale>
|
||||
<offset>-140</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>3</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
|
||||
<!-- button labels- this is temporary -->
|
||||
<layer>
|
||||
<name>ADF button label</name>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.0</red>
|
||||
<green>0.0</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>ADF</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-94</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-19</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>BFO button label</name>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.0</red>
|
||||
<green>0.0</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>BFO</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-69</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-19</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>FRQ button label</name>
|
||||
<type>text</type>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.0</red>
|
||||
<green>0.0</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>FRQ</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-44</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-19</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>FLT button label</name>
|
||||
<type>text</type>
|
||||
<point-size>4</point-size>
|
||||
<color>
|
||||
<red>0.0</red>
|
||||
<green>0.0</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>FLT
|
||||
/ET</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-16</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-15</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>SET/RST button label</name>
|
||||
<type>text</type>
|
||||
<point-size>4</point-size>
|
||||
<color>
|
||||
<red>0.0</red>
|
||||
<green>0.0</green>
|
||||
<blue>0.0</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>literal</type>
|
||||
<text>SET
|
||||
/RST</text>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>10</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-15</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<!-- end labels -->
|
||||
|
||||
</layers>
|
||||
|
||||
<actions>
|
||||
|
||||
<!-- buttons -->
|
||||
<action>
|
||||
<name>ADF button</name>
|
||||
<button>0</button>
|
||||
<x>-97</x>
|
||||
<y>-24</y>
|
||||
<w>18</w>
|
||||
<h>14</h>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/radios/kr-87/inputs/adf-btn</property>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>BFO button</name>
|
||||
<button>0</button>
|
||||
<x>-77</x>
|
||||
<y>-24</y>
|
||||
<w>18</w>
|
||||
<h>14</h>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/radios/kr-87/inputs/bfo-btn</property>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>FRQ button</name>
|
||||
<button>0</button>
|
||||
<x>-45</x>
|
||||
<y>-24</y>
|
||||
<w>18</w>
|
||||
<h>14</h>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/radios/kr-87/inputs/frq-btn</property>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>Flight timer/ Elapsed timer button</name>
|
||||
<button>0</button>
|
||||
<x>-20</x>
|
||||
<y>-24</y>
|
||||
<w>18</w>
|
||||
<h>14</h>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/radios/kr-87/inputs/flt-et-btn</property>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>Timer set reset</name>
|
||||
<button>0</button>
|
||||
<x>7</x>
|
||||
<y>-24</y>
|
||||
<w>18</w>
|
||||
<h>14</h>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/radios/kr-87/inputs/set-rst-btn</property>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<!-- end buttons -->
|
||||
|
||||
<action>
|
||||
<name>timer set seconds down</name>
|
||||
<button>0</button>
|
||||
<x>89</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/elapsed-timer</property>
|
||||
<step>-1</step>
|
||||
<min>1.0</min>
|
||||
<max>216000.0</max>
|
||||
<wrap>0</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>timer set seconds up</name>
|
||||
<button>0</button>
|
||||
<x>100</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/elapsed-timer</property>
|
||||
<step>1</step>
|
||||
<min>1.0</min>
|
||||
<max>216000.0</max>
|
||||
<wrap>0</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>timer set hours down</name>
|
||||
<button>1</button>
|
||||
<x>89</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/elapsed-timer</property>
|
||||
<step>-60</step>
|
||||
<min>1.0</min>
|
||||
<max>3599.0</max>
|
||||
<wrap>0</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>timer set hours up</name>
|
||||
<button>1</button>
|
||||
<x>100</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/elapsed-timer</property>
|
||||
<step>60</step>
|
||||
<min>1.0</min>
|
||||
<max>3599.0</max>
|
||||
<wrap>0</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>small frequency decrease</name>
|
||||
<button>0</button>
|
||||
<x>89</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<not-equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</not-equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/selected-khz</property>
|
||||
<step>-1</step>
|
||||
<min>100</min>
|
||||
<max>1299</max>
|
||||
<wrap>1</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
<action>
|
||||
<name>small increase</name>
|
||||
<button>0</button>
|
||||
<x>100</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<not-equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</not-equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/selected-khz</property>
|
||||
<step>1</step>
|
||||
<min>100</min>
|
||||
<max>1299</max>
|
||||
<wrap>1</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
|
||||
<action>
|
||||
<name>large decrease</name>
|
||||
<button>1</button>
|
||||
<x>89</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<not-equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</not-equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/selected-khz</property>
|
||||
<step>-25</step>
|
||||
<min>100</min>
|
||||
<max>1299</max>
|
||||
<wrap>1</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
|
||||
<action>
|
||||
<name>large increase</name>
|
||||
<button>1</button>
|
||||
<x>100</x>
|
||||
<y>-12</y>
|
||||
<w>12</w>
|
||||
<h>24</h>
|
||||
<condition>
|
||||
<not-equals>
|
||||
<property>/radios/kr-87/modes/count</property>
|
||||
<value>2</value>
|
||||
</not-equals>
|
||||
</condition>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/outputs/selected-khz</property>
|
||||
<step>25</step>
|
||||
<min>100</min>
|
||||
<max>1299</max>
|
||||
<wrap>1</wrap>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
|
||||
<action>
|
||||
<name>ident on|volume increase</name>
|
||||
<button>0</button>
|
||||
<x>70</x>
|
||||
<y>-24</y>
|
||||
<w>8</w>
|
||||
<h>16</h>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<step>0.5</step>
|
||||
<min>0</min>
|
||||
<max>2</max>
|
||||
</binding>
|
||||
</action>
|
||||
<action>
|
||||
<name>ident volume decrease|off</name>
|
||||
<button>0</button>
|
||||
<x>62</x>
|
||||
<y>-24</y>
|
||||
<w>16</w>
|
||||
<h>8</h>
|
||||
<binding>
|
||||
<command>property-adjust</command>
|
||||
<property>/radios/kr-87/inputs/on-off-volume</property>
|
||||
<step>-0.5</step>
|
||||
<min>0</min>
|
||||
<max>2</max>
|
||||
</binding>
|
||||
</action>
|
||||
|
||||
</actions>
|
||||
|
||||
</PropertyList>
|
Loading…
Reference in a new issue