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

18
Problem1.hpp Normal file
View File

@@ -0,0 +1,18 @@
#ifndef Problem1_h
#define Problem1_h
#include "ProblemBase.hpp"
class Problem1 : public ProblemBase {
private:
unsigned long factor3 = 0;
unsigned long factor5 = 0;
unsigned long factor5_tick = 0;
public:
Problem1();
bool Step();
};
#endif