initial commit

This commit is contained in:
Uwe Jakobeit
2026-03-30 09:41:19 +02:00
parent 7928ce3239
commit 00f8e9a751
76 changed files with 8341 additions and 1 deletions

20
app/filter.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef FILTER_H
#define FILTER_H
#pragma once
class PT1Filter {
private:
double output;
double filterFactor;
public:
PT1Filter(double tau, double dt);
double update(double input);
double step(double input);
void reset();
};
#endif // FILTER_H