summaryrefslogtreecommitdiffstats
path: root/tach_detect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tach_detect.cpp')
-rw-r--r--tach_detect.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/tach_detect.cpp b/tach_detect.cpp
index e3d2389..5da1b48 100644
--- a/tach_detect.cpp
+++ b/tach_detect.cpp
@@ -2,6 +2,7 @@
#include <sdbusplus/bus.hpp>
#include "fan_enclosure.hpp"
#include "fan_detect_defs.hpp"
+#include "tach_sensor.hpp"
int main(void)
@@ -19,7 +20,14 @@ int main(void)
auto fan = std::make_unique<
phosphor::fan::presence::FanEnclosure>(bus,
fanProp);
- // TODO Add sensors to fan object
+ for (auto const &fanSensor: std::get<2>(fanProp))
+ {
+ auto sensor = std::make_unique<
+ phosphor::fan::presence::TachSensor>(bus,
+ fanSensor,
+ *fan);
+ fan->addSensor(std::move(sensor));
+ }
fans.push_back(std::move(fan));
}
}
OpenPOWER on IntegriCloud