summaryrefslogtreecommitdiff
path: root/src/components/motor/MotorController.h
blob: 01fe9304dd0044e4c49174f41d6dba214ab77623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <cstdint>

namespace Pinetime {
  namespace Controllers {
    static constexpr uint8_t pinMotor = 16;

    class MotorController {
      public:
        void Init();
        void SetDuration(uint8_t motorDuration);

        APP_TIMER_DEF(vibTimer);

      private:

    };
  }
}