aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/motor/MotorController.h
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-02-14 14:26:49 +0100
committerGitHub <noreply@github.com>2021-02-14 14:26:49 +0100
commit0ad10a381772f97cb227fba9e1121a833c5bd026 (patch)
tree6883f02d33cc22f539c73728bcd732cd5254c8c7 /src/components/motor/MotorController.h
parent6c03c970056c2aee833bfd195dcd9ca28520d37b (diff)
parent97a1c4b3d7be04ddb24fea096add41b44629a5f9 (diff)
Merge branch 'develop' into Hrs3300_SetGain_remove_warnings
Diffstat (limited to 'src/components/motor/MotorController.h')
-rw-r--r--src/components/motor/MotorController.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/motor/MotorController.h b/src/components/motor/MotorController.h
new file mode 100644
index 00000000..bdc20c0c
--- /dev/null
+++ b/src/components/motor/MotorController.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <cstdint>
+#include "app_timer.h"
+
+namespace Pinetime {
+ namespace Controllers {
+ static constexpr uint8_t pinMotor = 16;
+
+ class MotorController {
+ public:
+ void Init();
+ void SetDuration(uint8_t motorDuration);
+
+ private:
+ static void vibrate(void * p_context);
+ };
+ }
+}