This commit is contained in:
2024-03-07 15:51:44 +01:00
commit 68bb67e9af
11 changed files with 349 additions and 0 deletions

12
time.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef TIME_H_
#define TIME_H_
#include <stdint.h>
void timeInit();
uint32_t getMillis();
void ms_active_delay(uint16_t delay);
#endif /* TIME_H_ */