GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1
2#ifndef Driver_PicoDisplay_Api_h_
3#define Driver_PicoDisplay_Api_h_
4/*-----------------------------------------------------------------------------
5* This file is part of the Colony.Core Project. The Colony.Core Project is an
6* open source project with a BSD type of licensing agreement. See the license
7* agreement (license.txt) in the top/ directory or on the Internet at
8* http://integerfox.com/colony.core/license.txt
9*
10* Copyright (c) 2014-2022 John T. Taylor
11*
12* Redistributions of the source code must retain the above copyright notice.
13*----------------------------------------------------------------------------*/
14/** @file */
15
16
17#include "colony_config.h"
18#include "pico_graphics.hpp"
21
22/// The width, in pixels, of the Display
23#ifndef OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH
24#define OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH 240
25#endif
26
27/// The height, in pixels, of the Display
28#ifndef OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT
29#define OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT 135
30#endif
31
32///
33namespace Driver {
34///
35namespace PicoDisplay {
36
37/** This class defines an interface for accessing the 'hardware bits' of the
38 Pico Display board.
39
40 The class is NOT thread safe. The application is RESPONSIBLE for ensuring
41 thread-safe usage.
42 */
43class Api
44{
45public:
46 /// This method returns the Button driver for the board's 'A' button
48
49 /// This method returns the Button driver for the board's 'B' button
50 static Driver::Button::PolledDebounced& buttonB() noexcept;
51
52 /// This method returns the Button driver for the board's 'X' button
53 static Driver::Button::PolledDebounced& buttonX() noexcept;
54
55 /// This method returns the Button driver for the board's 'Y' button
56 static Driver::Button::PolledDebounced& buttonY() noexcept;
57
58public:
59 /// This method returns the RGB LED driver for the board's RGB LED
60 static Driver::LED::RedGreenBlue& rgbLED() noexcept;
61
62public:
63 /** This method is used to update the display/LCD Controller with the
64 specified frame buffer contents.
65 */
66 static void updateLCD( pimoroni::PicoGraphics& graphics );
67
68 /// This method sets the back-light brightness of the LCD (range: 0 - 255)
69 static void setLCDBrightness( uint8_t brightnessLevel );
70
71 /** This method performs a 'null operation' on the display board. What
72 'null operation' means is target dependent (e.g. this method does
73 nothing on the physical display, but on the Simulator it updates
74 the simulation time on the GUI screen
75 */
76 static void nop();
77};
78
79} // End namespace(s)
80}
81
82/*--------------------------------------------------------------------------*/
83#endif // end header latch
This concrete class implements a button driver where a single button is polled and its raw button sta...
Definition PolledDebounced.h:36
This class defines an interface for accessing the 'hardware bits' of the Pico Display board.
Definition Api.h:44
static Driver::Button::PolledDebounced & buttonX() noexcept
This method returns the Button driver for the board's 'X' button.
static Driver::LED::RedGreenBlue & rgbLED() noexcept
This method returns the RGB LED driver for the board's RGB LED.
static void nop()
This method performs a 'null operation' on the display board.
static Driver::Button::PolledDebounced & buttonB() noexcept
This method returns the Button driver for the board's 'B' button.
static Driver::Button::PolledDebounced & buttonY() noexcept
This method returns the Button driver for the board's 'Y' button.
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)
static Driver::Button::PolledDebounced & buttonA() noexcept
This method returns the Button driver for the board's 'A' button.
namespace