Merge branch 'develop' of

https://github.com/JF002/InfiniTime into StepsApp
This commit is contained in:
Joaquim
2021-04-26 21:29:48 +01:00
177 changed files with 10107 additions and 10659 deletions

View File

@@ -12,7 +12,7 @@ namespace Pinetime {
namespace Applications {
namespace Screens {
class Motion : public Screen{
class Motion : public Screen {
public:
Motion(DisplayApp* app, Controllers::MotionController& motionController);
~Motion() override;
@@ -22,17 +22,16 @@ namespace Pinetime {
private:
Controllers::MotionController& motionController;
lv_obj_t * chart;
lv_chart_series_t * ser1;
lv_chart_series_t * ser2;
lv_chart_series_t * ser3;
lv_obj_t * label;
lv_obj_t* chart;
lv_chart_series_t* ser1;
lv_chart_series_t* ser2;
lv_chart_series_t* ser3;
lv_obj_t* label;
lv_obj_t* labelStep;
static constexpr uint8_t nbStepsBufferSize = 9;
char nbStepsBuffer[nbStepsBufferSize+1];
char nbStepsBuffer[nbStepsBufferSize + 1];
bool running = true;
};
}
}