summaryrefslogtreecommitdiff
path: root/src/components/motor/MotorController.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-04-09 18:47:24 (GMT)
committerJean-François Milants <jf@codingfield.com>2021-04-09 18:47:24 (GMT)
commit63584b6561cbc31095354b06e356f700dcf0e32b (patch)
treeb8ee17d8bfdc57c3b80b7c918f3431d198939856 /src/components/motor/MotorController.h
parent3934e9bef20c5c2ad393e20cfff3a5a1b0d24569 (diff)
parent9096d1db4c6be9f4a2cc8af99a994c219f25108c (diff)
Merge branch 'develop' into notification-title
# Conflicts: # src/displayapp/screens/Notifications.cpp
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);
};
}