GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_PicoDisplay_Arduino_API_h
2#define Driver_PicoDisplay_Arduino_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file defines the interface for initializing the concrete implementation
16 of the PicoDisplay driver using the actual hardware
17
18 */
19
20#include "colony_config.h"
21#include "pimoroni_common.hpp"
22#include "pico_display.hpp"
23
24
25/// Pin for Button A
26#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_A_PIN
27#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_A_PIN
28#endif
29
30/// Pin for Button B
31#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_B_PIN
32#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_B_PIN
33#endif
34
35/// Pin for Button X
36#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_X_PIN
37#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_X_PIN
38#endif
39
40/// Pin for Button Y
41#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_Y_PIN
42#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BUTTON_Y_PIN
43#endif
44
45/// RGB LED: The Timer for the RED PWM signal
46#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_RED_PWM
47#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_RED_PWM
48#endif
49
50/// RGB LED: The Timer for the GREEN PWM signal
51#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_GREEN_PWM
52#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_GREEN_PWM
53#endif
54
55/// RGB LED: The Timer for the BLUE PWM signal
56#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_BLUE_PWM
57#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_RGB_BLUE_PWM
58#endif
59
60/// The default screen orientation
61#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_LCD_ROTATION
62#define OPTION_DRIVER_PICO_DISPLAY_ARDUINO_LCD_ROTATION pimoroni::ROTATE_0
63#endif
64
65/// The default SPI bus
66#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_BUS
67#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_BUS
68#endif
69
70/// The default SPI pins - Pin
71#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_CS_PIN
72#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_CS_PIN
73#endif
74
75/// The default SPI pins (Data/Command pin for the LCD controller) - Pin
76#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_DC_PIN
77#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_SPI_DC_PIN
78#endif
79
80/// The default PWM signal to the backlight - Timer
81#ifndef OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BACKLIGHT_PWM
82#error Must define: OPTION_DRIVER_PICO_DISPLAY_ARDUINO_BACKLIGHT_PWM
83#endif
84
85
86///
87namespace Driver {
88///
89namespace PicoDisplay {
90///
91namespace Arduino {
92
93/** This method is used to initialize the platform specific drivers
94 */
96
97
98} // End namespace(s)
99}
100}
101
102#endif // end header latch
void initialize()
This method is used to initialize the platform specific drivers.
namespace