forked from jamesfowkes/cryptology-jewel-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptology-jewel-light.xml
45 lines (38 loc) · 1.32 KB
/
cryptology-jewel-light.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0"?>
<board type="Arduino Nano" name="Jewel Light">
<info>
A simple three-switch puzzle with LED indication and relay output
</info>
<devices>
<device name="RelayOutput" type="Digital Output">
<setting id="pin" name="Output" value="5"/>
</device>
<device name="Inputs" type="Debounced Input" count="3">
<setting id="pin" name="Input" values="A0|A1|A2"/>
<setting id="debounce_time" all_values="50"/>
<setting id="pullup" all_values="true"/>
<setting id="invert" all_values="true"/>
</device>
<device name="LEDOutputs" type="Digital Output" count="3">
<setting id="pin" name="Output" values="2|3|4"/>
</device>
</devices>
<parameters>
<parameter name="TriggerHold" type="Integer">
<setting id="clip" value="false"/>
<setting id="min" value="10"/>
<setting id="max" value="20000"/>
<setting id="use_eeprom" value="true"/>
</parameter>
</parameters>
<modules>
<module>Oneshot Timer</module>
</modules>
<custom_code>
<file>application.cpp</file>
</custom_code>
<logging>
<log_module>APPLICATION</log_module>
</logging>
<raat protocol="simple"></raat>
</board>