diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-06-06 10:20:46 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-06-06 10:20:46 +1000 |
| commit | 8a2a2d226558d099243eea0aa9ae22b2791e0e0e (patch) | |
| tree | 16c3defdb167ea7f452e5ce96118b165acf6602f /src/ui/include | |
| parent | ee5f662f9bb150138545ca35ef5c4896eb74daea (diff) | |
| download | tangara-fw-8a2a2d226558d099243eea0aa9ae22b2791e0e0e.tar.gz | |
Get basic audio playback going again
Diffstat (limited to 'src/ui/include')
| -rw-r--r-- | src/ui/include/wheel_encoder.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ui/include/wheel_encoder.hpp b/src/ui/include/wheel_encoder.hpp index 0651ce0b..d4975db9 100644 --- a/src/ui/include/wheel_encoder.hpp +++ b/src/ui/include/wheel_encoder.hpp @@ -15,16 +15,16 @@ namespace ui { class TouchWheelEncoder { - public: - explicit TouchWheelEncoder(std::weak_ptr<drivers::RelativeWheel> wheel); + public: + explicit TouchWheelEncoder(std::weak_ptr<drivers::RelativeWheel> wheel); - auto Read(lv_indev_data_t *data) -> void; - auto registration() -> lv_indev_t* { return registration_; } + auto Read(lv_indev_data_t* data) -> void; + auto registration() -> lv_indev_t* { return registration_; } - private: - lv_indev_drv_t driver_; - lv_indev_t *registration_; - std::weak_ptr<drivers::RelativeWheel> wheel_; + private: + lv_indev_drv_t driver_; + lv_indev_t* registration_; + std::weak_ptr<drivers::RelativeWheel> wheel_; }; -} // namespace ui +} // namespace ui |
