2021-01-10 16:57:26 +00:00
|
|
|
#include <libs/lvgl/lvgl.h>
|
|
|
|
#include "HeartRate.h"
|
|
|
|
#include <components/heartrate/HeartRateController.h>
|
|
|
|
|
|
|
|
#include "../DisplayApp.h"
|
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
2021-01-17 09:39:46 +00:00
|
|
|
namespace {
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* ToString(Pinetime::Controllers::HeartRateController::States s) {
|
2021-01-17 09:39:46 +00:00
|
|
|
switch (s) {
|
|
|
|
case Pinetime::Controllers::HeartRateController::States::NotEnoughData:
|
|
|
|
return "Not enough data,\nplease wait...";
|
|
|
|
case Pinetime::Controllers::HeartRateController::States::NoTouch:
|
|
|
|
return "No touch detected";
|
|
|
|
case Pinetime::Controllers::HeartRateController::States::Running:
|
|
|
|
return "Measuring...";
|
|
|
|
case Pinetime::Controllers::HeartRateController::States::Stopped:
|
|
|
|
return "Stopped";
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static void btnStartStopEventHandler(lv_obj_t* obj, lv_event_t event) {
|
|
|
|
HeartRate* screen = static_cast<HeartRate*>(obj->user_data);
|
2021-01-17 09:39:46 +00:00
|
|
|
screen->OnStartStopEvent(event);
|
2021-01-10 16:57:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
HeartRate::HeartRate(Pinetime::Applications::DisplayApp* app,
|
|
|
|
Controllers::HeartRateController& heartRateController,
|
|
|
|
System::SystemTask& systemTask)
|
|
|
|
: Screen(app), heartRateController {heartRateController}, systemTask {systemTask} {
|
2021-04-18 11:50:38 +00:00
|
|
|
bool isHrRunning = heartRateController.State() != Controllers::HeartRateController::States::Stopped;
|
2021-04-04 02:08:51 +00:00
|
|
|
label_hr = lv_label_create(lv_scr_act(), nullptr);
|
2021-01-10 16:57:26 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_obj_set_style_local_text_font(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76);
|
2021-04-18 11:50:38 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
if (isHrRunning)
|
2021-04-18 11:50:38 +00:00
|
|
|
lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GREEN);
|
|
|
|
else
|
|
|
|
lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GRAY);
|
|
|
|
|
2021-01-10 16:57:26 +00:00
|
|
|
lv_label_set_text(label_hr, "000");
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_align(label_hr, nullptr, LV_ALIGN_CENTER, 0, -40);
|
2021-01-10 16:57:26 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
label_bpm = lv_label_create(lv_scr_act(), nullptr);
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text(label_bpm, "Heart rate BPM");
|
2021-01-10 16:57:26 +00:00
|
|
|
lv_obj_align(label_bpm, label_hr, LV_ALIGN_OUT_TOP_MID, 0, -20);
|
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
label_status = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_text_color(label_status, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x222222));
|
2021-01-10 16:57:26 +00:00
|
|
|
lv_label_set_text(label_status, ToString(Pinetime::Controllers::HeartRateController::States::NotEnoughData));
|
2021-04-18 17:28:14 +00:00
|
|
|
|
2021-01-17 09:39:46 +00:00
|
|
|
lv_obj_align(label_status, label_hr, LV_ALIGN_OUT_BOTTOM_MID, 0, 10);
|
2021-01-10 16:57:26 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
btn_startStop = lv_btn_create(lv_scr_act(), nullptr);
|
2021-01-17 09:39:46 +00:00
|
|
|
btn_startStop->user_data = this;
|
|
|
|
lv_obj_set_height(btn_startStop, 50);
|
|
|
|
lv_obj_set_event_cb(btn_startStop, btnStartStopEventHandler);
|
|
|
|
lv_obj_align(btn_startStop, nullptr, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
|
|
|
|
|
|
|
label_startStop = lv_label_create(btn_startStop, nullptr);
|
2021-04-18 11:50:38 +00:00
|
|
|
UpdateStartStopButton(isHrRunning);
|
2021-04-18 17:28:14 +00:00
|
|
|
if (isHrRunning)
|
2021-04-18 11:50:38 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::SystemTask::Messages::DisableSleeping);
|
2021-01-10 16:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HeartRate::~HeartRate() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
2021-04-04 02:08:51 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::SystemTask::Messages::EnableSleeping);
|
2021-01-10 16:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HeartRate::Refresh() {
|
|
|
|
|
|
|
|
auto state = heartRateController.State();
|
2021-04-18 17:28:14 +00:00
|
|
|
switch (state) {
|
2021-01-10 16:57:26 +00:00
|
|
|
case Controllers::HeartRateController::States::NoTouch:
|
|
|
|
case Controllers::HeartRateController::States::NotEnoughData:
|
2021-04-18 17:28:14 +00:00
|
|
|
// case Controllers::HeartRateController::States::Stopped:
|
2021-01-10 16:57:26 +00:00
|
|
|
lv_label_set_text(label_hr, "000");
|
|
|
|
break;
|
|
|
|
default:
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_text_fmt(label_hr, "%03d", heartRateController.HeartRate());
|
2021-01-10 16:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lv_label_set_text(label_status, ToString(state));
|
2021-01-17 09:39:46 +00:00
|
|
|
lv_obj_align(label_status, label_hr, LV_ALIGN_OUT_BOTTOM_MID, 0, 10);
|
2021-01-10 16:57:26 +00:00
|
|
|
|
|
|
|
return running;
|
|
|
|
}
|
|
|
|
|
2021-01-17 09:39:46 +00:00
|
|
|
void HeartRate::OnStartStopEvent(lv_event_t event) {
|
|
|
|
if (event == LV_EVENT_CLICKED) {
|
2021-04-18 17:28:14 +00:00
|
|
|
if (heartRateController.State() == Controllers::HeartRateController::States::Stopped) {
|
2021-01-17 09:39:46 +00:00
|
|
|
heartRateController.Start();
|
|
|
|
UpdateStartStopButton(heartRateController.State() != Controllers::HeartRateController::States::Stopped);
|
2021-04-04 02:08:51 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::SystemTask::Messages::DisableSleeping);
|
|
|
|
lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GREEN);
|
2021-04-18 17:28:14 +00:00
|
|
|
} else {
|
2021-01-17 09:39:46 +00:00
|
|
|
heartRateController.Stop();
|
|
|
|
UpdateStartStopButton(heartRateController.State() != Controllers::HeartRateController::States::Stopped);
|
2021-04-04 02:08:51 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::SystemTask::Messages::EnableSleeping);
|
|
|
|
lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GRAY);
|
2021-01-17 09:39:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HeartRate::UpdateStartStopButton(bool isRunning) {
|
2021-04-18 17:28:14 +00:00
|
|
|
if (isRunning)
|
2021-01-17 09:39:46 +00:00
|
|
|
lv_label_set_text(label_startStop, "Stop");
|
|
|
|
else
|
|
|
|
lv_label_set_text(label_startStop, "Start");
|
|
|
|
}
|