Minor fixes

This commit is contained in:
schmelczerandras 2020-04-20 17:33:58 +02:00
commit 3da2a7a7c2
5 changed files with 16 additions and 6 deletions

View file

@ -7,6 +7,9 @@
// FrameFunction gets previousFrameTime (in milliseconds) as argument
typedef bool (*FrameFunction)(uint8_t);
// Shut down the machine
void powerOff();
// Call function every frameLengthInMilliseconds while it returns true
void startFrameLoop(FrameFunction function, uint8_t frameLengthInMilliseconds);