Files
LR-EnviroStation/app/src/SensorSampler.hpp
T
dragonfly2046 7f17e56e34
Build / Build app and tests (ubuntu-24.04) (push) Failing after 2m32s
Documentation / Build (1.14.0) (push) Failing after 15s
Documentation / Build (1.9.6) (push) Successful in 12s
Documentation / Deploy (push) Has been skipped
Add thread wrapper
2026-04-23 21:37:09 -07:00

25 lines
321 B
C++

#ifndef SENSOR_SAMPLER_HPP
#define SENSOR_SAMPLER_HPP
#include "ThreadWrapper.hpp"
namespace app {
class SensorSampler : public ThreadWrapper<SensorSampler> {
public:
SensorSampler() = default;
~SensorSampler() = default;
void init();
void run();
void finalize();
private:
};
} // namespace app
#endif