GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_StatusIndicator_Api_h_
2#define Ajax_Ui_StatusIndicator_Api_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
17#include "Cpl/Itc/CloseSync.h"
20#include "Cpl/Dm/Mp/Uint32.h"
22#include "Cpl/System/Timer.h"
23
24
25///
26namespace Ajax
27{
28///
29namespace Ui
30{
31///
32namespace StatusIndicator
33{
34
35
36/** This class manages the what color/on-off-state of the RGB LED
37 */
39{
40public:
41 /// Constructor
45
46public:
47 /// Starts the component
48 void request( OpenMsg& msg );
49
50 /// Shutdowns the component
51 void request( CloseMsg& msg );
52
53protected:
54 /// Software timer expired
55 void expired() noexcept;
56
57protected:
58 /// Helper method that set the actual LED state (return true when the error condition is present)
59 bool setHaltError( uint32_t now ) noexcept;
60
61 /// Helper method that set the actual LED state
62 void setStatus( uint32_t now ) noexcept;
63
64protected:
65 /// Handle to the RGD LED driver
66 Driver::LED::RedGreenBlue& m_ledDriver;
67
68 /// Handle to the screen manager
69 Ajax::ScreenMgr::Navigation& m_scrMgr;
70
71 /// Period time marker
73
74 /// Period time marker
76
77 /// Period time marker
79
80 /// Current indicator state (when NOT in a 'hard-error')
81 unsigned m_state;
82
83 /// Current 'flash edge'
85
86 /// Current 'flash edge'
88
89 /// Current 'flash edge'
91
92 /// Flag for initial execution pass
94
95 /// open/close state
97};
98
99} // end namespaces
100}
101}
102#endif // end header latch
103
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
This class manages the what color/on-off-state of the RGB LED.
Definition Api.h:39
Ajax::ScreenMgr::Navigation & m_scrMgr
Handle to the screen manager.
Definition Api.h:69
bool m_2HzOnCycle
Current 'flash edge'.
Definition Api.h:84
uint32_t m_timeMarkerQuarterHz
Period time marker.
Definition Api.h:78
uint32_t m_timeMarker2Hz
Period time marker.
Definition Api.h:72
bool m_quarterHzOnCycle
Current 'flash edge'.
Definition Api.h:90
Api(Cpl::Dm::MailboxServer &myMbox, Driver::LED::RedGreenBlue &statusLED, Ajax::ScreenMgr::Navigation &scrMgr)
Constructor.
bool m_opened
open/close state
Definition Api.h:96
void setStatus(uint32_t now) noexcept
Helper method that set the actual LED state.
bool setHaltError(uint32_t now) noexcept
Helper method that set the actual LED state (return true when the error condition is present)
void request(CloseMsg &msg)
Shutdowns the component.
uint32_t m_timeMarker1Hz
Period time marker.
Definition Api.h:75
Driver::LED::RedGreenBlue & m_ledDriver
Handle to the RGD LED driver.
Definition Api.h:66
unsigned m_state
Current indicator state (when NOT in a 'hard-error')
Definition Api.h:81
bool m_firstExecution
Flag for initial execution pass.
Definition Api.h:93
void request(OpenMsg &msg)
Starts the component.
void expired() noexcept
Software timer expired.
bool m_1HzOnCycle
Current 'flash edge'.
Definition Api.h:87
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application c...
Definition RedGreenBlue.h:27
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
namespace