Enable buttons and the display.

Kind-of-sort-of usable-ish.
This commit is contained in:
2019-06-06 22:30:27 -07:00
parent 1cc2f7adf4
commit 125ddfb687
19 changed files with 937 additions and 196 deletions

View File

@@ -21,6 +21,7 @@
#pragma once
#include <functional>
#include "Task.h"
#include "ReturnCode.h"
@@ -59,7 +60,7 @@ public:
NOT_PRESSED
};
typedef void (*ChangeCallback)(ButtonState);
using ChangeCallback = std::function<void(ButtonState)>;
Common::Schedule::NextTime execute() override;