Name Date Size #Lines LOC

..14-Jun-2024-

READMEH A D07-Mar-2021607 2113

build_utils.cppH A D07-Mar-20211.8 KiB7444

build_utils.hppH A D07-Mar-2021902 3216

builder.cppH A D17-Nov-20227.2 KiB200149

builder.hppH A D23-Jul-2022440 2313

buildjson.cppH A D12-Jan-20223 KiB12583

buildjson.hppH A D07-Mar-2021507 2711

host.cppH A D11-May-20232.9 KiB11063

host.hppH A D11-May-20231.9 KiB7249

manager.cppH A D07-Mar-20211.1 KiB4318

manager.hppH A D23-Jul-20221.6 KiB6946

pluggable.cppH A D07-Mar-20211,017 4320

pluggable.hppH A D07-Mar-2021837 3625

sensor.hppH A D11-May-20231.4 KiB7041

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