blob: 38ea7ccf68f88d3b50da4c941224f4e7c3e90153 [file] [log] [blame]
Norman Jamese2765102015-08-19 22:00:55 -05001<node>
2 <interface name="org.openbmc.SensorInteger">
3 <method name="getValue">
4 <arg name="value" type="i" direction="out"/>
5 </method>
6 <method name="getUnits">
7 <arg name="units" type="s" direction="out"/>
8 </method>
9 <property name="value" type="i" access="read"/>
10 <property name="units" type="s" access="read"/>
11 <signal name="Changed">
12 <arg name="value" type="i"/>
13 </signal>
14 </interface>
15 <interface name="org.openbmc.SensorString">
16 <method name="getValue">
17 <arg name="value" type="s" direction="out"/>
18 </method>
19 <method name="getUnits">
20 <arg name="units" type="s" direction="out"/>
21 </method>
22 <property name="value" type="i" access="read"/>
23 <property name="units" type="s" access="read"/>
24 <signal name="Changed">
25 <arg name="value" type="s"/>
26 </signal>
27 </interface>
28 <interface name="org.openbmc.SensorIntegerSettable">
29 <method name="getValue">
30 <arg name="value" type="i" direction="out"/>
31 </method>
32 <method name="setValue">
33 <arg name="value" type="i" direction="in"/>
34 </method>
35 <method name="getUnits">
36 <arg name="units" type="s" direction="out"/>
37 </method>
38 <property name="value" type="i" access="read"/>
39 <property name="units" type="s" access="read"/>
40 <signal name="Changed">
41 <arg name="value" type="i"/>
42 </signal>
43 </interface>
44</node>