aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/motor/MotorController.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-02-14 14:19:30 +0100
committerJean-François Milants <jf@codingfield.com>2021-02-14 14:19:30 +0100
commit5fdfb2112e2f6413c4d01c74dd04492e27a6d406 (patch)
tree983bd7fb1780c433aa12331377e67ced9b46b3a8 /src/components/motor/MotorController.h
parent4c3803450e33e321dd2f90bdf62b9abe99f1e491 (diff)
parent1e2cc3ce91b402459790332b84e3f8dcbe5dc340 (diff)
Fix merge conflict.
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);
+ };
+ }
+}