14 lines
248 B
C
14 lines
248 B
C
|
#pragma once
|
||
|
|
||
|
#include "sensor_converter_func.h"
|
||
|
|
||
|
struct IdentityFunction : public SensorConverter {
|
||
|
SensorResult convert(float raw) const {
|
||
|
return raw;
|
||
|
}
|
||
|
|
||
|
void showInfo(float testRawValue) const;
|
||
|
};
|
||
|
|
||
|
extern IdentityFunction identityFunction;
|