blob: 53710e081860a9de4741ee047a05d03e0ba9e8bf [file] [log] [blame]
Brad Bishop45387d62016-11-10 21:58:58 -06001description: >
2 Implement to provide sensor readings. Objects implementing
3 Sensor.Value must be instantiated in the correct
4 hierarchy within the sensors namespace. The following sensor
5 hierarchies are recognized:
6 temperature
7 fan_tach
8 voltage
9 altitude
Brad Bishop6c4e2e92016-12-28 13:38:31 -050010 current
11 power
12 energy
Adrian Ambrożewiczff697932020-05-11 11:46:50 +020013 utilization
Brad Bishop45387d62016-11-10 21:58:58 -060014
15 Any service implementing Sensor.Value on one or more objects must
16 implement org.freedesktop.DBus.ObjectManager on the sensors namespace root.
17
18 All Sensor.Value properties are read-only.
19
20properties:
21 - name: Value
22 type: int64
23 description: >
24 The sensor reading.
James Feist8a3b49d2018-01-22 16:11:43 -080025 - name: MaxValue
26 type: int64
27 description: >
28 The Maximum supported sensor reading.
29 - name: MinValue
30 type: int64
31 description: >
32 The Minimum supported sensor reading.
Brad Bishop45387d62016-11-10 21:58:58 -060033 - name: Unit
34 type: enum[self.Unit]
35 description: >
Patrick Venture573f1822017-11-08 10:18:18 -080036 The unit of the reading. Immutable once set for a sensor.
Brad Bishop45387d62016-11-10 21:58:58 -060037 For objects in the temperature namespace, Unit must be "DegreesC".
38 For objects in the fan_tach namespace, Unit must be "RPMS".
39 For objects in the voltage namespace, Unit must be "Volts".
40 For objects in the altitude namespace, Unit must be "Meters".
Brad Bishop6c4e2e92016-12-28 13:38:31 -050041 For objects in the current namespace, Unit must be "Amperes".
42 For objects in the power namespace, Unit must be "Watts".
43 For objects in the energy namespace, Unit must be "Joules".
Adrian Ambrożewiczff697932020-05-11 11:46:50 +020044 For objects in the utilization namespace, Unit must be "Percent"
Brad Bishop45387d62016-11-10 21:58:58 -060045 - name: Scale
46 type: int64
47 description: >
48 The reading scaling factor N, where the actual reading is Value * 10^N.
Patrick Venture573f1822017-11-08 10:18:18 -080049 This is immutable once set for a sensor.
Brad Bishop45387d62016-11-10 21:58:58 -060050
51enumerations:
52 - name: Unit
53 description: >
54 A sensor reading unit.
55 values:
56 - name: DegreesC
57 description: >
58 Temperature as degrees Celsius.
59 - name: RPMS
60 description: >
61 Frequency of rotation as revolutions per minute.
62 - name: Volts
63 description: >
64 Electomotive force as volts.
65 - name: Meters
66 description: >
67 Length as meters.
Brad Bishop6c4e2e92016-12-28 13:38:31 -050068 - name: Amperes
69 description: >
70 Electrical charge flow rate as Amperes.
71 - name: Watts
72 description: >
73 Rate of energy transfer as Watts.
74 - name: Joules
75 description: >
76 Energy transfer as Joules.
Adrian Ambrożewiczff697932020-05-11 11:46:50 +020077 - name: Percent
78 description: >
79 Resource utilization as percentage.