blob: 8dfa2bdafb07c4ff3f1eb8aa0dd6da3cfa78af02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#pragma once
#include <FreeRTOS.h>
#include <timers.h>
#include <cstdint>
namespace Pinetime {
namespace System {
class SystemTask;
}
namespace Controllers {
class MotorController {
public:
MotorController() = default;
void RunForDuration(uint8_t motorDuration);
void StartRinging();
void StopRinging();
protected:
friend class Pinetime::System::SystemTask;
void Init();
private:
static void Ring(TimerHandle_t xTimer);
static void StopMotor(TimerHandle_t xTimer);
TimerHandle_t shortVibTimer;
TimerHandle_t longVibTimer;
};
}
}
|