1#ifndef Ajax_Ui_Home_Screen_h_
2#define Ajax_Ui_Home_Screen_h_
15#include "pimoroni/libraries/pico_graphics/pico_graphics.hpp"
25#ifndef OPTION_AJAX_UI_HOME_SCREEN_POLLING_MS
26#define OPTION_AJAX_UI_HOME_SCREEN_POLLING_MS 2000
48 pimoroni::PicoGraphics& graphics,
89 bool getDisplayIdt( int32_t& dstInteger, int32_t& dstFractional )
noexcept;
#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