Added previous arduino implementations.
This commit is contained in:
18
Problem2.hpp
Normal file
18
Problem2.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef Problem2_h
|
||||
#define Problem2_h
|
||||
|
||||
#include "ProblemBase.hpp"
|
||||
|
||||
class Problem2 : public ProblemBase {
|
||||
|
||||
private:
|
||||
unsigned long value1 = 0;
|
||||
unsigned long value2 = 1;
|
||||
unsigned long fibonacci;
|
||||
|
||||
public:
|
||||
Problem2();
|
||||
bool Step();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user