Add include guards and use explicit inclusions

This commit is contained in:
Robert Marshall 2022-08-18 21:56:17 +01:00
parent aaa30cd2aa
commit 6b600e021e
7 changed files with 34 additions and 2 deletions

View file

@ -1,3 +1,6 @@
#ifndef Timer_cpp
#define Timer_cpp
#include <Arduino.h>
#include <functional>
@ -31,3 +34,5 @@ public:
}
}
};
#endif