Some precommit fixes

This commit is contained in:
Cabooman 2024-01-30 09:18:03 +01:00
parent 957a91e55e
commit 527bc19649
4 changed files with 10 additions and 8 deletions

View file

@ -4,13 +4,13 @@
#include <Arduino.h>
class MyTimer {
public:
public:
MyTimer(unsigned long interval);
bool elapsed();
private:
private:
unsigned long interval;
unsigned long previousMillis;
};
#endif // __MYTIMER_H__
#endif // __MYTIMER_H__