GM6000 Digital Heater Controller Branch: main
SDX-1330
Screen.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_Home_Screen_h_
2#define Ajax_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"
17#include "Ajax/ScreenMgr/Api.h"
18#include "Cpl/Dm/Mp/Int32.h"
19#include "Cpl/Dm/Mp/Bool.h"
21#include "Ajax/Dm/MpFanMode.h"
23
24/// Polling rate, in milliseconds, for sampling the space temperature
25#ifndef OPTION_AJAX_UI_HOME_SCREEN_POLLING_MS
26#define OPTION_AJAX_UI_HOME_SCREEN_POLLING_MS 2000 // 2 second
27#endif
28
29
30///
31namespace Ajax
32{
33///
34namespace Ui
35{
36///
37namespace Home
38{
39
40
41/** This class implements the Home screen
42 */
44{
45public:
46 /// Constructor
48 pimoroni::PicoGraphics& graphics,
50 Cpl::Dm::Mp::Int32& mpSpaceTemperature );
51
52public:
53 /// See Ajax::ScreenMgr::ScreenApi
54 void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
55
56 /// See Ajax::ScreenMgr::ScreenApi
57 void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
58
59 /// See Ajax::ScreenMgr::ScreenApi
60 void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
61
62 /// See Ajax::ScreenMgr::ScreenApi
63 void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
64
65 /// See Ajax::ScreenMgr::ScreenApi
66 void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
67
68 /// See Ajax::ScreenMgr::ScreenApi
69 bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
70
71 /// See Ajax::ScreenMgr::ScreenApi
72 bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
73
74protected:
75 /// Change notification
76 void heatingModeChanged( Cpl::Dm::Mp::Bool& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
77
78 /// Change notification
79 void fanModeChanged( Ajax::Dm::MpFanMode& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
80
81 /// Change notification
82 void setpointChanged( Cpl::Dm::Mp::Int32& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
83
84 /// Change notification
85 void alertSummaryChanged( Ajax::Dm::MpAlertSummary& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
86
87protected:
88 /// Helper method to get and break down the current IDT into integer and fractional components
89 bool getDisplayIdt( int32_t& dstInteger, int32_t& dstFractional ) noexcept;
90
91protected:
92 /// Handle to the screen manager
94
95 /// Graphic library handle
96 pimoroni::PicoGraphics& m_graphics;
97
98 /// Current space temperature
100
101 /// Subscriber heating mode
103
104 /// Subscriber fan mode
106
107 /// Subscriber setpoint
109
110 /// Subscriber Alert Summary
112
113 /// Current space temperature
115
116 /// Time marker used to trigger 1second polling of the space temperature
118
119 /// Current Alert index
120 unsigned m_alertIndex;
121
122 /// Dirty flag (i.e. need the screen manager to call refresh())
124};
125
126} // end namespaces
127}
128}
129#endif // end header latch
130
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
This class provides a concrete implementation for an Alert Summary.
Definition MpAlertSummary.h:48
Concrete Model Point the FanMode Enum.
Definition MpFanMode.h:27
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:44
void setpointChanged(Cpl::Dm::Mp::Int32 &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
bool getDisplayIdt(int32_t &dstInteger, int32_t &dstFractional) noexcept
Helper method to get and break down the current IDT into integer and fractional components.
void heatingModeChanged(Cpl::Dm::Mp::Bool &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
int32_t m_currentIdt
Current space temperature.
Definition Screen.h:114
uint32_t m_timerMarker
Time marker used to trigger 1second polling of the space temperature.
Definition Screen.h:117
Cpl::Dm::SubscriberComposer< Screen, Cpl::Dm::Mp::Bool > m_obHeatMode
Subscriber heating mode.
Definition Screen.h:102
pimoroni::PicoGraphics & m_graphics
Graphic library handle.
Definition Screen.h:96
void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Screen(Ajax::ScreenMgr::Navigation &screenMgr, pimoroni::PicoGraphics &graphics, Cpl::Dm::MailboxServer &myMbox, Cpl::Dm::Mp::Int32 &mpSpaceTemperature)
Constructor.
bool tick(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void exit(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.
Cpl::Dm::SubscriberComposer< Screen, Ajax::Dm::MpAlertSummary > m_obAlertSummary
Subscriber Alert Summary.
Definition Screen.h:111
void wake(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
unsigned m_alertIndex
Current Alert index.
Definition Screen.h:120
Cpl::Dm::SubscriberComposer< Screen, Ajax::Dm::MpFanMode > m_obFanMode
Subscriber fan mode.
Definition Screen.h:105
void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Cpl::Dm::Mp::Int32 & m_mpIdt
Current space temperature.
Definition Screen.h:99
void fanModeChanged(Ajax::Dm::MpFanMode &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
void alertSummaryChanged(Ajax::Dm::MpAlertSummary &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
Ajax::ScreenMgr::Navigation & m_screenMgr
Handle to the screen manager.
Definition Screen.h:93
bool refresh(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Cpl::Dm::SubscriberComposer< Screen, Cpl::Dm::Mp::Int32 > m_obSetpoint
Subscriber setpoint.
Definition Screen.h:108
bool m_stale
Dirty flag (i.e. need the screen manager to call refresh())
Definition Screen.h:123
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a bool.
Definition Bool.h:40
This class provides a concrete implementation for a Point who's data is a int32_t.
Definition Int32.h:42
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35