GM6000 Digital Heater Controller Branch: main
SDX-1330
Screen.h
Go to the documentation of this file.
1#ifndef Eros_Ui_Home_Screen_h_
2#define Eros_Ui_Home_Screen_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "pimoroni/libraries/pico_graphics/pico_graphics.hpp"
18#include "Cpl/Dm/Mp/Int32.h"
20
21/// Polling rate, in milliseconds, for sampling the space temperature
22#ifndef OPTION_EROS_UI_HOME_SCREEN_POLLING_MS
23#define OPTION_EROS_UI_HOME_SCREEN_POLLING_MS 2000 // 2 second
24#endif
25
26///
27namespace Eros {
28///
29namespace Ui {
30///
31namespace Home {
32
33
34/** This class implements the Home screen
35 */
37{
38public:
39 /// Constructor
41 pimoroni::PicoGraphics& graphics);
42
43public:
44 /// See Ajax::ScreenMgr::ScreenApi
45 void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
46
47 /// See Ajax::ScreenMgr::ScreenApi
48 void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
49
50 /// See Ajax::ScreenMgr::ScreenApi
51 void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
52
53 /// See Ajax::ScreenMgr::ScreenApi
54 void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
55
56 /// See Ajax::ScreenMgr::ScreenApi
57 void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
58
59 /// See Ajax::ScreenMgr::ScreenApi
60 bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
61
62 /// See Ajax::ScreenMgr::ScreenApi
63 bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
64
65protected:
66 /// Handle to the screen manager
68
69 /// Graphic library handle
70 pimoroni::PicoGraphics& m_graphics;
71
72 /// Last pressed button
74
75 /// Time marker used to trigger 1second polling of the space temperature
76 uint32_t m_timerMarker;
77
78 /// Dirty flag (i.e. need the screen manager to call refresh())
79 bool m_stale;
80
81
82
83};
84
85} // end namespaces
86}
87}
88#endif // end header latch
89
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
This class implements the Home screen.
Definition Screen.h:37
Screen(Ajax::ScreenMgr::Navigation &screenMgr, pimoroni::PicoGraphics &graphics)
Constructor.
Ajax::ScreenMgr::Navigation & m_screenMgr
Handle to the screen manager.
Definition Screen.h:67
bool tick(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void dispatch(AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
AjaxScreenMgrEvent_T m_lastButton
Last pressed button.
Definition Screen.h:73
void wake(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
uint32_t m_timerMarker
Time marker used to trigger 1second polling of the space temperature.
Definition Screen.h:76
bool refresh(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
pimoroni::PicoGraphics & m_graphics
Graphic library handle.
Definition Screen.h:70
bool m_stale
Dirty flag (i.e. need the screen manager to call refresh())
Definition Screen.h:79
void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void exit(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35