cleaned up the code and reduced the size of the diff by removing things like additional whitespaces
This commit is contained in:
parent
5da65494b3
commit
56af4a0b83
6 changed files with 14 additions and 19 deletions
|
|
@ -21,7 +21,7 @@ void MotorController::Init() {
|
|||
isBusy = false;
|
||||
}
|
||||
|
||||
void MotorController::RunForDuration(uint8_t motorDuration) {
|
||||
void MotorController::runForDuration(uint8_t motorDuration) {
|
||||
|
||||
if (settingsController.GetVibrationStatus() == Controllers::Settings::Vibration::OFF || isBusy)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ namespace Pinetime {
|
|||
public:
|
||||
MotorController(Controllers::Settings& settingsController);
|
||||
void Init();
|
||||
void RunForDuration(uint8_t motorDuration);
|
||||
void runForDuration(uint8_t motorDuration);
|
||||
void startRunning(uint8_t motorDuration);
|
||||
void stopRunning();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue