blob: 6d5344f2a18976db1e2f5dccec636b57813ac02d (
plain) (
blame)
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
|
<?xml version="1.0"?>
<!--
license:CC0
copyright-holders:Patrick Mackinlay
Silicon Graphics Personal IRIS.
TODO: confirm sequence/layout of LEDs
-->
<mamelayout version="2">
<element name="led" defstate="1">
<disk state="1">
<color red="0.0" green="0.2" blue="0.0" />
</disk>
<disk state="0">
<color red="0.0" green="1.0" blue="0.0" />
</disk>
</element>
<view name="Graphics">
<screen index="0">
<bounds x="0" y="0" width="1280" height="1024" />
</screen>
<repeat count="5">
<param name="n" start="0" increment="1" />
<param name="x" start="1250" increment="-20" />
<element name="led~n~" ref="led">
<bounds x="~x~" y="1024" width="10" height="10" />
</element>
</repeat>
</view>
</mamelayout>
|