blob: 04b08b08ca351cd984cbdb1faedbb6425b8e4db2 (
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
|
#pragma once
#include <FreeRTOS.h>
#include <timers.h>
#include <cstdint>
namespace Pinetime {
namespace Controllers {
class MotorController {
public:
MotorController() = default;
void Init();
void RunForDuration(uint8_t motorDuration);
void Pulse(uint32_t interval, uint8_t repetitions);
void StartRinging();
void StopRinging();
bool IsRinging();
private:
static void Ring(TimerHandle_t xTimer);
static void RingWithLatch(TimerHandle_t xTimer);
static void StopMotor(TimerHandle_t xTimer);
TimerHandle_t shortVib;
TimerHandle_t longVib;
TimerHandle_t pulse;
uint8_t pulseLatch;
};
}
}
|