initial commit

This commit is contained in:
Dan Priece
2026-05-19 09:15:34 -04:00
commit f4201b974b
21 changed files with 2130 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef ChronoReading_H
#define ChronoReading_H
#include <Arduino.h>
#include "ChronoProfile.h"
class ChronoReading {
public:
// Constructor: Called when a ChronoReading object is created
ChronoReading();
ChronoReading(int fps, ChronoProfile profile);
// Public methods
int getFPS();
int getFPE();
ChronoProfile getProfile();
private:
float _calculateFPE(float fps, float weight);
int _fps;
ChronoProfile _profile;
};
#endif