Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | H A D | 08-Mar-2018 | 607 | 21 | 13 | |
build_utils.cpp | H A D | 27-Jun-2025 | 1.8 KiB | 76 | 45 | |
build_utils.hpp | H A D | 07-Aug-2020 | 902 | 32 | 16 | |
builder.cpp | H A D | 29-Aug-2025 | 7.2 KiB | 201 | 149 | |
builder.hpp | H A D | 27-Jun-2025 | 398 | 22 | 12 | |
buildjson.cpp | H A D | 29-Aug-2025 | 3.2 KiB | 133 | 90 | |
buildjson.hpp | H A D | 01-Feb-2025 | 508 | 27 | 11 | |
host.cpp | H A D | 29-Aug-2025 | 3.4 KiB | 131 | 81 | |
host.hpp | H A D | 29-Aug-2025 | 2 KiB | 76 | 53 | |
manager.cpp | H A D | 27-Jun-2025 | 1.1 KiB | 44 | 19 | |
manager.hpp | H A D | 27-Jun-2025 | 1.7 KiB | 70 | 47 | |
pluggable.cpp | H A D | 29-Aug-2025 | 1.4 KiB | 65 | 37 | |
pluggable.hpp | H A D | 29-Aug-2025 | 996 | 40 | 29 | |
sensor.hpp | H A D | 29-Aug-2025 | 1.7 KiB | 84 | 53 |
README
1# HostSensor 2 3A HostSensor object is one whose value is received from the host over IPMI (or 4some other mechanism). These sensors create dbus objects in the following 5namespace: 6 /xyz/openbmc_projects/extsensors/{namespace}/{sensorname} 7 8You can update them by setting the Value in Sensor.Value as a set or update 9property dbus call. 10 11# SensorManager 12 13There is a SensorManager object whose job is to hold all the sensors. 14 15# PluggableSensor 16 17The PluggableSensor is an object that receives a reader and writer and is 18therefore meant to be used for a variety of sensor types that aren't 19HostSensors. 20 21