copy digital clock in to new screen and wire it up
This commit is contained in:
		
							parent
							
								
									3a7dfdba8e
								
							
						
					
					
						commit
						9241d4783c
					
				@ -433,6 +433,7 @@ list(APPEND SOURCE_FILES
 | 
			
		||||
        displayapp/screens/WatchFaceTerminal.cpp
 | 
			
		||||
        displayapp/screens/WatchFacePineTimeStyle.cpp
 | 
			
		||||
        displayapp/screens/WatchFaceCasioStyleG7710.cpp
 | 
			
		||||
        displayapp/screens/WatchFaceFuzzy.cpp
 | 
			
		||||
 | 
			
		||||
        ##
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -9,6 +9,7 @@ namespace Pinetime {
 | 
			
		||||
      Terminal = 3,
 | 
			
		||||
      Infineat = 4,
 | 
			
		||||
      CasioStyleG7710 = 5,
 | 
			
		||||
      Fuzzy = 6,
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -11,6 +11,7 @@
 | 
			
		||||
#include "displayapp/screens/WatchFaceTerminal.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceInfineat.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceAnalog.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceFuzzy.h"
 | 
			
		||||
#include "displayapp/screens/WatchFacePineTimeStyle.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceCasioStyleG7710.h"
 | 
			
		||||
 | 
			
		||||
@ -55,6 +56,9 @@ Clock::Clock(Controllers::DateTime& dateTimeController,
 | 
			
		||||
        case WatchFace::CasioStyleG7710:
 | 
			
		||||
          return WatchFaceCasioStyleG7710();
 | 
			
		||||
          break;
 | 
			
		||||
        case WatchFace::Fuzzy:
 | 
			
		||||
          return WatchFaceFuzzy();
 | 
			
		||||
          break;
 | 
			
		||||
      }
 | 
			
		||||
      return WatchFaceDigitalScreen();
 | 
			
		||||
    }()} {
 | 
			
		||||
@ -131,3 +135,13 @@ std::unique_ptr<Screen> Clock::WatchFaceCasioStyleG7710() {
 | 
			
		||||
                                                             motionController,
 | 
			
		||||
                                                             filesystem);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
std::unique_ptr<Screen> Clock::WatchFaceFuzzy() {
 | 
			
		||||
  return std::make_unique<Screens::WatchFaceFuzzy>(dateTimeController,
 | 
			
		||||
                                                   batteryController,
 | 
			
		||||
                                                   bleController,
 | 
			
		||||
                                                   notificationManager,
 | 
			
		||||
                                                   settingsController,
 | 
			
		||||
                                                   heartRateController,
 | 
			
		||||
                                                   motionController);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -54,6 +54,7 @@ namespace Pinetime {
 | 
			
		||||
        std::unique_ptr<Screen> WatchFaceTerminalScreen();
 | 
			
		||||
        std::unique_ptr<Screen> WatchFaceInfineatScreen();
 | 
			
		||||
        std::unique_ptr<Screen> WatchFaceCasioStyleG7710();
 | 
			
		||||
        std::unique_ptr<Screen> WatchFaceFuzzy();
 | 
			
		||||
      };
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										156
									
								
								src/displayapp/screens/WatchFaceFuzzy.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										156
									
								
								src/displayapp/screens/WatchFaceFuzzy.cpp
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,156 @@
 | 
			
		||||
#include "displayapp/screens/WatchFaceFuzzy.h"
 | 
			
		||||
 | 
			
		||||
#include <lvgl/lvgl.h>
 | 
			
		||||
#include <cstdio>
 | 
			
		||||
#include "displayapp/screens/NotificationIcon.h"
 | 
			
		||||
#include "displayapp/screens/Symbols.h"
 | 
			
		||||
#include "components/battery/BatteryController.h"
 | 
			
		||||
#include "components/ble/BleController.h"
 | 
			
		||||
#include "components/ble/NotificationManager.h"
 | 
			
		||||
#include "components/heartrate/HeartRateController.h"
 | 
			
		||||
#include "components/motion/MotionController.h"
 | 
			
		||||
#include "components/settings/Settings.h"
 | 
			
		||||
 | 
			
		||||
using namespace Pinetime::Applications::Screens;
 | 
			
		||||
 | 
			
		||||
WatchFaceFuzzy::WatchFaceFuzzy(Controllers::DateTime& dateTimeController,
 | 
			
		||||
                               const Controllers::Battery& batteryController,
 | 
			
		||||
                                   const Controllers::Ble& bleController,
 | 
			
		||||
                                   Controllers::NotificationManager& notificationManager,
 | 
			
		||||
                                   Controllers::Settings& settingsController,
 | 
			
		||||
                                   Controllers::HeartRateController& heartRateController,
 | 
			
		||||
                                   Controllers::MotionController& motionController)
 | 
			
		||||
  : currentDateTime {{}},
 | 
			
		||||
    dateTimeController {dateTimeController},
 | 
			
		||||
    notificationManager {notificationManager},
 | 
			
		||||
    settingsController {settingsController},
 | 
			
		||||
    heartRateController {heartRateController},
 | 
			
		||||
    motionController {motionController},
 | 
			
		||||
    statusIcons(batteryController, bleController) {
 | 
			
		||||
 | 
			
		||||
  statusIcons.Create();
 | 
			
		||||
 | 
			
		||||
  notificationIcon = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_LIME);
 | 
			
		||||
  lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(false));
 | 
			
		||||
  lv_obj_align(notificationIcon, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0);
 | 
			
		||||
 | 
			
		||||
  label_date = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_align(label_date, lv_scr_act(), LV_ALIGN_CENTER, 0, 60);
 | 
			
		||||
  lv_obj_set_style_local_text_color(label_date, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x999999));
 | 
			
		||||
 | 
			
		||||
  label_time = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_set_style_local_text_font(label_time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_extrabold_compressed);
 | 
			
		||||
 | 
			
		||||
  lv_obj_align(label_time, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, 0, 0);
 | 
			
		||||
 | 
			
		||||
  label_time_ampm = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_label_set_text_static(label_time_ampm, "");
 | 
			
		||||
  lv_obj_align(label_time_ampm, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, -30, -55);
 | 
			
		||||
 | 
			
		||||
  heartbeatIcon = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_label_set_text_static(heartbeatIcon, Symbols::heartBeat);
 | 
			
		||||
  lv_obj_set_style_local_text_color(heartbeatIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xCE1B1B));
 | 
			
		||||
  lv_obj_align(heartbeatIcon, lv_scr_act(), LV_ALIGN_IN_BOTTOM_LEFT, 0, 0);
 | 
			
		||||
 | 
			
		||||
  heartbeatValue = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_set_style_local_text_color(heartbeatValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xCE1B1B));
 | 
			
		||||
  lv_label_set_text_static(heartbeatValue, "");
 | 
			
		||||
  lv_obj_align(heartbeatValue, heartbeatIcon, LV_ALIGN_OUT_RIGHT_MID, 5, 0);
 | 
			
		||||
 | 
			
		||||
  stepValue = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_set_style_local_text_color(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FFE7));
 | 
			
		||||
  lv_label_set_text_static(stepValue, "0");
 | 
			
		||||
  lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0);
 | 
			
		||||
 | 
			
		||||
  stepIcon = lv_label_create(lv_scr_act(), nullptr);
 | 
			
		||||
  lv_obj_set_style_local_text_color(stepIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FFE7));
 | 
			
		||||
  lv_label_set_text_static(stepIcon, Symbols::shoe);
 | 
			
		||||
  lv_obj_align(stepIcon, stepValue, LV_ALIGN_OUT_LEFT_MID, -5, 0);
 | 
			
		||||
 | 
			
		||||
  taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
 | 
			
		||||
  Refresh();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
WatchFaceFuzzy::~WatchFaceFuzzy() {
 | 
			
		||||
  lv_task_del(taskRefresh);
 | 
			
		||||
  lv_obj_clean(lv_scr_act());
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void WatchFaceFuzzy::Refresh() {
 | 
			
		||||
  statusIcons.Update();
 | 
			
		||||
 | 
			
		||||
  notificationState = notificationManager.AreNewNotificationsAvailable();
 | 
			
		||||
  if (notificationState.IsUpdated()) {
 | 
			
		||||
    lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(notificationState.Get()));
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  currentDateTime = std::chrono::time_point_cast<std::chrono::minutes>(dateTimeController.CurrentDateTime());
 | 
			
		||||
 | 
			
		||||
  if (currentDateTime.IsUpdated()) {
 | 
			
		||||
    uint8_t hour = dateTimeController.Hours();
 | 
			
		||||
    uint8_t minute = dateTimeController.Minutes();
 | 
			
		||||
 | 
			
		||||
    if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) {
 | 
			
		||||
      char ampmChar[3] = "AM";
 | 
			
		||||
      if (hour == 0) {
 | 
			
		||||
        hour = 12;
 | 
			
		||||
      } else if (hour == 12) {
 | 
			
		||||
        ampmChar[0] = 'P';
 | 
			
		||||
      } else if (hour > 12) {
 | 
			
		||||
        hour = hour - 12;
 | 
			
		||||
        ampmChar[0] = 'P';
 | 
			
		||||
      }
 | 
			
		||||
      lv_label_set_text(label_time_ampm, ampmChar);
 | 
			
		||||
      lv_label_set_text_fmt(label_time, "%2d:%02d", hour, minute);
 | 
			
		||||
      lv_obj_align(label_time, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, 0, 0);
 | 
			
		||||
    } else {
 | 
			
		||||
      lv_label_set_text_fmt(label_time, "%02d:%02d", hour, minute);
 | 
			
		||||
      lv_obj_align(label_time, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    currentDate = std::chrono::time_point_cast<days>(currentDateTime.Get());
 | 
			
		||||
    if (currentDate.IsUpdated()) {
 | 
			
		||||
      uint16_t year = dateTimeController.Year();
 | 
			
		||||
      uint8_t day = dateTimeController.Day();
 | 
			
		||||
      if (settingsController.GetClockType() == Controllers::Settings::ClockType::H24) {
 | 
			
		||||
        lv_label_set_text_fmt(label_date,
 | 
			
		||||
                              "%s %d %s %d",
 | 
			
		||||
                              dateTimeController.DayOfWeekShortToString(),
 | 
			
		||||
                              day,
 | 
			
		||||
                              dateTimeController.MonthShortToString(),
 | 
			
		||||
                              year);
 | 
			
		||||
      } else {
 | 
			
		||||
        lv_label_set_text_fmt(label_date,
 | 
			
		||||
                              "%s %s %d %d",
 | 
			
		||||
                              dateTimeController.DayOfWeekShortToString(),
 | 
			
		||||
                              dateTimeController.MonthShortToString(),
 | 
			
		||||
                              day,
 | 
			
		||||
                              year);
 | 
			
		||||
      }
 | 
			
		||||
      lv_obj_realign(label_date);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  heartbeat = heartRateController.HeartRate();
 | 
			
		||||
  heartbeatRunning = heartRateController.State() != Controllers::HeartRateController::States::Stopped;
 | 
			
		||||
  if (heartbeat.IsUpdated() || heartbeatRunning.IsUpdated()) {
 | 
			
		||||
    if (heartbeatRunning.Get()) {
 | 
			
		||||
      lv_obj_set_style_local_text_color(heartbeatIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xCE1B1B));
 | 
			
		||||
      lv_label_set_text_fmt(heartbeatValue, "%d", heartbeat.Get());
 | 
			
		||||
    } else {
 | 
			
		||||
      lv_obj_set_style_local_text_color(heartbeatIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x1B1B1B));
 | 
			
		||||
      lv_label_set_text_static(heartbeatValue, "");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    lv_obj_realign(heartbeatIcon);
 | 
			
		||||
    lv_obj_realign(heartbeatValue);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  stepCount = motionController.NbSteps();
 | 
			
		||||
  if (stepCount.IsUpdated()) {
 | 
			
		||||
    lv_label_set_text_fmt(stepValue, "%lu", stepCount.Get());
 | 
			
		||||
    lv_obj_realign(stepValue);
 | 
			
		||||
    lv_obj_realign(stepIcon);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										75
									
								
								src/displayapp/screens/WatchFaceFuzzy.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								src/displayapp/screens/WatchFaceFuzzy.h
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,75 @@
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include <lvgl/src/lv_core/lv_obj.h>
 | 
			
		||||
#include <chrono>
 | 
			
		||||
#include <cstdint>
 | 
			
		||||
#include <memory>
 | 
			
		||||
#include "displayapp/screens/Screen.h"
 | 
			
		||||
#include "components/datetime/DateTimeController.h"
 | 
			
		||||
#include "components/ble/BleController.h"
 | 
			
		||||
#include "displayapp/widgets/StatusIcons.h"
 | 
			
		||||
#include "utility/DirtyValue.h"
 | 
			
		||||
 | 
			
		||||
namespace Pinetime {
 | 
			
		||||
  namespace Controllers {
 | 
			
		||||
    class Settings;
 | 
			
		||||
    class Battery;
 | 
			
		||||
    class Ble;
 | 
			
		||||
    class NotificationManager;
 | 
			
		||||
    class HeartRateController;
 | 
			
		||||
    class MotionController;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  namespace Applications {
 | 
			
		||||
    namespace Screens {
 | 
			
		||||
 | 
			
		||||
      class WatchFaceFuzzy : public Screen {
 | 
			
		||||
      public:
 | 
			
		||||
        WatchFaceFuzzy(Controllers::DateTime& dateTimeController,
 | 
			
		||||
                       const Controllers::Battery& batteryController,
 | 
			
		||||
                       const Controllers::Ble& bleController,
 | 
			
		||||
                       Controllers::NotificationManager& notificationManager,
 | 
			
		||||
                       Controllers::Settings& settingsController,
 | 
			
		||||
                       Controllers::HeartRateController& heartRateController,
 | 
			
		||||
                       Controllers::MotionController& motionController);
 | 
			
		||||
        ~WatchFaceFuzzy() override;
 | 
			
		||||
 | 
			
		||||
        void Refresh() override;
 | 
			
		||||
 | 
			
		||||
      private:
 | 
			
		||||
        uint8_t displayedHour = -1;
 | 
			
		||||
        uint8_t displayedMinute = -1;
 | 
			
		||||
 | 
			
		||||
        Utility::DirtyValue<uint8_t> batteryPercentRemaining {};
 | 
			
		||||
        Utility::DirtyValue<bool> powerPresent {};
 | 
			
		||||
        Utility::DirtyValue<bool> bleState {};
 | 
			
		||||
        Utility::DirtyValue<bool> bleRadioEnabled {};
 | 
			
		||||
        Utility::DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::minutes>> currentDateTime {};
 | 
			
		||||
        Utility::DirtyValue<uint32_t> stepCount {};
 | 
			
		||||
        Utility::DirtyValue<uint8_t> heartbeat {};
 | 
			
		||||
        Utility::DirtyValue<bool> heartbeatRunning {};
 | 
			
		||||
        Utility::DirtyValue<bool> notificationState {};
 | 
			
		||||
        using days = std::chrono::duration<int32_t, std::ratio<86400>>; // TODO: days is standard in c++20
 | 
			
		||||
        Utility::DirtyValue<std::chrono::time_point<std::chrono::system_clock, days>> currentDate;
 | 
			
		||||
 | 
			
		||||
        lv_obj_t* label_time;
 | 
			
		||||
        lv_obj_t* label_time_ampm;
 | 
			
		||||
        lv_obj_t* label_date;
 | 
			
		||||
        lv_obj_t* heartbeatIcon;
 | 
			
		||||
        lv_obj_t* heartbeatValue;
 | 
			
		||||
        lv_obj_t* stepIcon;
 | 
			
		||||
        lv_obj_t* stepValue;
 | 
			
		||||
        lv_obj_t* notificationIcon;
 | 
			
		||||
 | 
			
		||||
        Controllers::DateTime& dateTimeController;
 | 
			
		||||
        Controllers::NotificationManager& notificationManager;
 | 
			
		||||
        Controllers::Settings& settingsController;
 | 
			
		||||
        Controllers::HeartRateController& heartRateController;
 | 
			
		||||
        Controllers::MotionController& motionController;
 | 
			
		||||
 | 
			
		||||
        lv_task_t* taskRefresh;
 | 
			
		||||
        Widgets::StatusIcons statusIcons;
 | 
			
		||||
      };
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -11,6 +11,7 @@
 | 
			
		||||
#include "displayapp/screens/CheckboxList.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceInfineat.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceCasioStyleG7710.h"
 | 
			
		||||
#include "displayapp/screens/WatchFaceFuzzy.h"
 | 
			
		||||
 | 
			
		||||
namespace Pinetime {
 | 
			
		||||
 | 
			
		||||
@ -47,7 +48,7 @@ namespace Pinetime {
 | 
			
		||||
           {"Terminal", true},
 | 
			
		||||
           {"Infineat face", Applications::Screens::WatchFaceInfineat::IsAvailable(filesystem)},
 | 
			
		||||
           {"Casio G7710", Applications::Screens::WatchFaceCasioStyleG7710::IsAvailable(filesystem)},
 | 
			
		||||
           {"", false},
 | 
			
		||||
           {"Fuzzy Clock", true},
 | 
			
		||||
           {"", false}}};
 | 
			
		||||
        ScreenList<nScreens> screens;
 | 
			
		||||
      };
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user