diff options
| author | Avamander <avamander@gmail.com> | 2020-10-02 19:16:48 (GMT) |
|---|---|---|
| committer | Avamander <avamander@gmail.com> | 2020-10-02 19:16:48 (GMT) |
| commit | 6c86d1d9d706706fcb6f214aba8259e61ed68755 (patch) | |
| tree | 2f4137a9916869cee18fd01449aa83ee586b9604 /src/components/Brightness/BrightnessController.h | |
| parent | 4daab2692692d47af24a9384eb0f402821527882 (diff) | |
Fixed all the includes that were broken due to the renames
Diffstat (limited to 'src/components/Brightness/BrightnessController.h')
| -rw-r--r-- | src/components/Brightness/BrightnessController.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/components/Brightness/BrightnessController.h b/src/components/Brightness/BrightnessController.h deleted file mode 100644 index b8354ec..0000000 --- a/src/components/Brightness/BrightnessController.h +++ /dev/null @@ -1,28 +0,0 @@ -#pragma once - -#include <cstdint> - -namespace Pinetime { - namespace Controllers { - class BrightnessController { - public: - enum class Levels {Off, Low, Medium, High}; - void Init(); - - void Set(Levels level); - Levels Level() const; - void Lower(); - void Higher(); - - void Backup(); - void Restore(); - - private: - static constexpr uint8_t pinLcdBacklight1 = 14; - static constexpr uint8_t pinLcdBacklight2 = 22; - static constexpr uint8_t pinLcdBacklight3 = 23; - Levels level = Levels::High; - Levels backupLevel = Levels::High; - }; - } -} |
