summaryrefslogtreecommitdiff
path: root/src/components/motor/MotorController.h
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-04-09 18:43:39 (GMT)
committerGitHub <noreply@github.com>2021-04-09 18:43:39 (GMT)
commit17a37acaa81278cc8c782d84d994d4ca938ef006 (patch)
tree3c15890315a420417cd96b82103da80c84ed562d /src/components/motor/MotorController.h
parent04fc33e2d479161ec261f932b908dffbd73e227f (diff)
parent3685095da0d01f137692f80df2c267a8b90da715 (diff)
Merge pull request #258 from joaquimorg/BigRewrite
New settings menu and more...
Diffstat (limited to 'src/components/motor/MotorController.h')
-rw-r--r--src/components/motor/MotorController.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/motor/MotorController.h b/src/components/motor/MotorController.h
index bdc20c0..2f2e034 100644
--- a/src/components/motor/MotorController.h
+++ b/src/components/motor/MotorController.h
@@ -2,6 +2,7 @@
#include <cstdint>
#include "app_timer.h"
+#include "components/settings/Settings.h"
namespace Pinetime {
namespace Controllers {
@@ -9,10 +10,12 @@ namespace Pinetime {
class MotorController {
public:
+ MotorController( Controllers::Settings &settingsController );
void Init();
void SetDuration(uint8_t motorDuration);
private:
+ Controllers::Settings& settingsController;
static void vibrate(void * p_context);
};
}