| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- xdsp_interface.ino - Display interface support for Sonoff-Tasmota
- Copyright (C) 2018 Theo Arends
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifdef XFUNC_PTR_IN_ROM
- boolean (* const xdsp_func_ptr[])(byte) PROGMEM = { // Display Function Pointers
- #else
- boolean (* const xdsp_func_ptr[])(byte) = { // Display Function Pointers
- #endif
- #ifdef XDSP_01
- &Xdsp01,
- #endif
- #ifdef XDSP_02
- &Xdsp02,
- #endif
- #ifdef XDSP_03
- &Xdsp03,
- #endif
- #ifdef XDSP_04
- &Xdsp04,
- #endif
- #ifdef XDSP_05
- &Xdsp05,
- #endif
- #ifdef XDSP_06
- &Xdsp06,
- #endif
- #ifdef XDSP_07
- &Xdsp07,
- #endif
- #ifdef XDSP_08
- &Xdsp08,
- #endif
- #ifdef XDSP_09
- &Xdsp09,
- #endif
- #ifdef XDSP_10
- &Xdsp10,
- #endif
- #ifdef XDSP_11
- &Xdsp11,
- #endif
- #ifdef XDSP_12
- &Xdsp12,
- #endif
- #ifdef XDSP_13
- &Xdsp13,
- #endif
- #ifdef XDSP_14
- &Xdsp14,
- #endif
- #ifdef XDSP_15
- &Xdsp15,
- #endif
- #ifdef XDSP_16
- &Xdsp16
- #endif
- };
- const uint8_t xdsp_present = sizeof(xdsp_func_ptr) / sizeof(xdsp_func_ptr[0]); // Number of drivers found
- /*********************************************************************************************\
- * Function call to all xdsp
- *
- * FUNC_DISPLAY_INIT_DRIVER
- * FUNC_DISPLAY_INIT
- * FUNC_DISPLAY_EVERY_50_MSECOND
- * FUNC_DISPLAY_EVERY_SECOND
- * FUNC_DISPLAY_POWER
- * FUNC_DISPLAY_CLEAR
- * FUNC_DISPLAY_DRAW_FRAME
- * FUNC_DISPLAY_DRAW_HLINE
- * FUNC_DISPLAY_DRAW_VLINE
- * FUNC_DISPLAY_DRAW_CIRCLE
- * FUNC_DISPLAY_FILL_CIRCLE
- * FUNC_DISPLAY_DRAW_RECTANGLE
- * FUNC_DISPLAY_FILL_RECTANGLE
- * FUNC_DISPLAY_FONT_SIZE
- * FUNC_DISPLAY_ROTATION
- * FUNC_DISPLAY_DRAW_STRING
- * FUNC_DISPLAY_ONOFF
- \*********************************************************************************************/
- uint8_t XdspPresent(void)
- {
- return xdsp_present;
- }
- boolean XdspCall(byte Function)
- {
- boolean result = false;
- for (byte x = 0; x < xdsp_present; x++) {
- result = xdsp_func_ptr[x](Function);
- if (result) break;
- }
- return result;
- }
|