just frequency nothing else

This commit is contained in:
rusefillc 2022-10-24 21:12:58 -04:00
parent 50e470b710
commit 381b7dc213
1 changed files with 1 additions and 5 deletions

View File

@ -13,11 +13,7 @@ static FrequencySensor auxSpeed2(SensorType::AuxSpeed2, MS2NT(500));
static class : public SensorConverter {
public:
SensorResult convert(float frequency) const override {
auto hz = frequency;
auto rpm = hz * 60;
return rpm;
return frequency;
}
} converter;