GM6000 Digital Heater Controller Branch: main
SDX-1330
PicoDisplay.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_PicoDisplay_h_
2#define Ajax_Ui_PicoDisplay_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
18
19///
20namespace Ajax {
21///
22namespace Ui {
23
24
25
26/** This concrete class implements the Ajax::ScreenMgr::DisplayApi using the
27 Driver::PicoDisplay driver
28 */
30{
31public:
32 /// Constructor
33 PicoDisplay( pimoroni::PicoGraphics& graphicsLibrary )
34 : m_graphicsLibrary( graphicsLibrary )
35 {
36 }
37
38public:
39 /// See Ajax::ScreenMsg::DisplayApi
40 bool start() noexcept
41 {
42 // The driver is required to be initialized by the application prior to starting the UI sub-system
43 turnOn();
44 return true;
45 }
46
47 /// See Ajax::ScreenMsg::DisplayApi
48 void stop() noexcept
49 {
50 turnOff();
51 }
52
53 /// See Ajax::ScreenMsg::DisplayApi
54 bool update() noexcept
55 {
57 return true;
58 }
59
60 /// See Ajax::ScreenMsg::DisplayApi
61 bool turnOff() noexcept
62 {
63 Driver::PicoDisplay::Api::setLCDBrightness( 0 ); // Not really turning of the display - but the user doesn't know the difference
64 return true;
65 }
66
67 /// See Ajax::ScreenMsg::DisplayApi
68 bool turnOn() noexcept
69 {
71 return true;
72 }
73
74
75protected:
76 /// Graphic library instance
77 pimoroni::PicoGraphics& m_graphicsLibrary;
78};
79
80} // end namespaces
81}
82#endif // end header latch
83
This class defines the Screen Manager's interface to Graphic library.
Definition DisplayApi.h:29
This concrete class implements the Ajax::ScreenMgr::DisplayApi using the Driver::PicoDisplay driver.
Definition PicoDisplay.h:30
pimoroni::PicoGraphics & m_graphicsLibrary
Graphic library instance.
Definition PicoDisplay.h:77
bool start() noexcept
See Ajax::ScreenMsg::DisplayApi.
Definition PicoDisplay.h:40
void stop() noexcept
See Ajax::ScreenMsg::DisplayApi.
Definition PicoDisplay.h:48
bool turnOn() noexcept
See Ajax::ScreenMsg::DisplayApi.
Definition PicoDisplay.h:68
bool turnOff() noexcept
See Ajax::ScreenMsg::DisplayApi.
Definition PicoDisplay.h:61
PicoDisplay(pimoroni::PicoGraphics &graphicsLibrary)
Constructor.
Definition PicoDisplay.h:33
bool update() noexcept
See Ajax::ScreenMsg::DisplayApi.
Definition PicoDisplay.h:54
static void updateLCD(pimoroni::PicoGraphics &graphics)
This method is used to update the display/LCD Controller with the specified frame buffer contents.
static void setLCDBrightness(uint8_t brightnessLevel)
This method sets the back-light brightness of the LCD (range: 0 - 255)
The 'Ajax' namespace is the root name space all GM6000 application specific source code.