2021-01-16 04:11:53 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
static constexpr uint8_t pinMotor = 16;
|
|
|
|
|
|
|
|
class MotorController {
|
2021-01-16 04:49:37 +01:00
|
|
|
public:
|
|
|
|
void Init();
|
|
|
|
void SetDuration(uint8_t motorDuration);
|
|
|
|
|
2021-01-23 21:15:42 +01:00
|
|
|
APP_TIMER_DEF(vibTimer);
|
2021-01-16 04:49:37 +01:00
|
|
|
|
|
|
|
private:
|
2021-01-16 04:11:53 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|