1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/*
* Sensor.h
*
* Created on: 7 May 2015
* Author: jeremy
*/
#ifndef RASPIDRUMS_SOURCE_IO_HDDSENSOR_H_
#define RASPIDRUMS_SOURCE_IO_HDDSENSOR_H_
#include "ISensor.h"
#include <string>
#include <vector>
namespace IO
{
class HddSensor : public ISensor
{
public:
explicit HddSensor(const std::string& filePath, size_t channel);
virtual ~HddSensor() = default;
virtual short GetData() final;
virtual void SetData(short value) final {}
private:
static const std::vector<std::string> dataFiles;
void ReadData();
std::string path;
std::vector<short> data;
unsigned int index;
size_t channel{};
};
}
#endif /* RASPIDRUMS_SOURCE_IO_HDDSENSOR_H_ */
|