Added previous arduino implementations.

This commit is contained in:
2026-08-07 13:29:57 +02:00
commit 2eb04509db
9 changed files with 179 additions and 0 deletions

16
ProblemBase.hpp Normal file
View File

@@ -0,0 +1,16 @@
#ifndef ProblemBase_h
#define ProblemBase_h
class ProblemBase {
public:
unsigned long output;
protected:
unsigned long input;
public:
virtual bool Step();
};
#endif