Merge branch 'develop' into refresh_rework

This commit is contained in:
Riku Isokoski
2021-08-03 12:16:40 +03:00
40 changed files with 340 additions and 232 deletions

View File

@@ -18,7 +18,6 @@ namespace Pinetime {
~Motion() override;
void Refresh() override;
bool OnButtonPushed() override;
private:
Controllers::MotionController& motionController;
@@ -29,10 +28,6 @@ namespace Pinetime {
lv_obj_t* label;
lv_obj_t* labelStep;
static constexpr uint8_t nbStepsBufferSize = 9;
char nbStepsBuffer[nbStepsBufferSize + 1];
bool running = true;
lv_task_t* taskRefresh;
};
}