25 lines
589 B
C++
25 lines
589 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "app_timer.h"
|
|
#include "components/settings/Settings.h"
|
|
|
|
namespace Pinetime {
|
|
namespace Controllers {
|
|
static constexpr uint8_t pinMotor = 16;
|
|
|
|
class MotorController {
|
|
public:
|
|
MotorController(Controllers::Settings& settingsController);
|
|
void Init();
|
|
void RunForDuration(uint8_t motorDuration);
|
|
void StartRinging();
|
|
static void StopRinging();
|
|
|
|
private:
|
|
static void Ring(void* p_context);
|
|
Controllers::Settings& settingsController;
|
|
static void StopMotor(void* p_context);
|
|
};
|
|
}
|
|
}
|