blob: 99a4e64d034c3e3ea1c3acef6a24b71b3bfdf84c (
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
33
|
#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(System::SystemTask* systemTask);
private:
System::SystemTask* systemTask = nullptr;
static void Ring(TimerHandle_t xTimer);
static void StopMotor(TimerHandle_t xTimer);
TimerHandle_t shortVibTimer;
TimerHandle_t longVibTimer;
};
}
}
|