2021-04-11 11:32:02 +01:00
|
|
|
/*
|
|
|
|
xdsp_17_universal.ino - universal display driver support for Tasmota
|
|
|
|
|
|
|
|
Copyright (C) 2021 Gerhard Mutz and 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-05-04 18:28:51 +01:00
|
|
|
#if defined(USE_DISPLAY)
|
2021-04-11 11:32:02 +01:00
|
|
|
#ifdef USE_UNIVERSAL_DISPLAY
|
|
|
|
|
|
|
|
#define XDSP_17 17
|
|
|
|
|
|
|
|
#include <uDisplay.h>
|
|
|
|
|
|
|
|
bool udisp_init_done = false;
|
2021-04-14 13:26:59 +01:00
|
|
|
uint8_t ctouch_counter;
|
2021-04-30 14:26:41 +01:00
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
#ifdef USE_UFILESYS
|
2021-04-14 13:26:59 +01:00
|
|
|
extern FS *ffsp;
|
2021-04-11 11:32:02 +01:00
|
|
|
#endif
|
|
|
|
|
2021-04-30 14:26:41 +01:00
|
|
|
#ifndef USE_DISPLAY
|
|
|
|
uint8_t color_type;
|
|
|
|
uint16_t fg_color;
|
|
|
|
uint16_t bg_color;
|
|
|
|
Renderer *renderer;
|
|
|
|
#else
|
|
|
|
extern uint8_t color_type;
|
|
|
|
extern uint16_t fg_color;
|
|
|
|
extern uint16_t bg_color;
|
|
|
|
#endif
|
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
#define DISPDESC_SIZE 1000
|
|
|
|
|
2021-04-25 14:14:50 +01:00
|
|
|
|
|
|
|
void Core2DisplayPower(uint8_t on);
|
|
|
|
void Core2DisplayDim(uint8_t dim);
|
|
|
|
|
2021-04-14 13:26:59 +01:00
|
|
|
//#define DSP_ROM_DESC
|
2021-04-11 11:32:02 +01:00
|
|
|
|
2021-05-01 08:54:05 +01:00
|
|
|
#ifndef DISP_DESC_FILE
|
|
|
|
//#define DISP_DESC_FILE "/dispdesc.txt"
|
|
|
|
#define DISP_DESC_FILE "/display.ini"
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // DISP_DESC_FILE
|
2021-05-01 08:54:05 +01:00
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
/*********************************************************************************************/
|
2021-04-21 16:11:19 +01:00
|
|
|
#ifdef DSP_ROM_DESC
|
2022-04-01 16:52:43 +01:00
|
|
|
const char DSP_SAMPLE_DESC[] PROGMEM = DSP_ROM_DESC;
|
2021-04-11 11:32:02 +01:00
|
|
|
#endif // DSP_ROM_DESC
|
|
|
|
/*********************************************************************************************/
|
2021-11-17 21:48:48 +00:00
|
|
|
Renderer *Init_uDisplay(const char *desc) {
|
2021-04-11 11:32:02 +01:00
|
|
|
char *ddesc = 0;
|
|
|
|
char *fbuff;
|
2021-04-21 10:01:40 +01:00
|
|
|
uDisplay *udisp;
|
2021-11-17 21:48:48 +00:00
|
|
|
int8_t cs;
|
2021-04-11 11:32:02 +01:00
|
|
|
|
2021-04-21 16:11:19 +01:00
|
|
|
if (TasmotaGlobal.gpio_optiona.udisplay_driver || desc) {
|
|
|
|
|
2021-06-11 17:14:12 +01:00
|
|
|
Settings->display_model = XDSP_17;
|
2021-04-11 11:32:02 +01:00
|
|
|
|
2021-05-01 08:54:05 +01:00
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
fbuff = (char*)calloc(DISPDESC_SIZE, 1);
|
2021-04-21 10:01:40 +01:00
|
|
|
if (!fbuff) return 0;
|
|
|
|
|
|
|
|
if (desc) {
|
2021-04-21 16:11:19 +01:00
|
|
|
memcpy_P(fbuff, desc, DISPDESC_SIZE - 1);
|
2021-04-21 10:01:40 +01:00
|
|
|
ddesc = fbuff;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: const char descriptor used"));
|
2021-04-21 10:01:40 +01:00
|
|
|
}
|
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
#ifdef USE_UFILESYS
|
2021-04-21 10:01:40 +01:00
|
|
|
if (ffsp && !TasmotaGlobal.no_autoexec && !ddesc) {
|
2021-04-11 11:32:02 +01:00
|
|
|
File fp;
|
2021-05-01 08:54:05 +01:00
|
|
|
fp = ffsp->open(DISP_DESC_FILE, "r");
|
2021-04-11 11:32:02 +01:00
|
|
|
if (fp > 0) {
|
|
|
|
uint32_t size = fp.size();
|
|
|
|
fp.read((uint8_t*)fbuff, size);
|
|
|
|
fp.close();
|
|
|
|
ddesc = fbuff;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: File descriptor used"));
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
}
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // USE_UFILESYS
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_SCRIPT
|
2021-06-11 17:14:12 +01:00
|
|
|
if (bitRead(Settings->rule_enabled, 0) && !ddesc) {
|
2021-04-11 11:32:02 +01:00
|
|
|
uint8_t dfound = Run_Scripter(">d",-2,0);
|
|
|
|
if (dfound == 99) {
|
|
|
|
char *lp = glob_script_mem.section_ptr + 2;
|
|
|
|
while (*lp != '\n') lp++;
|
|
|
|
memcpy(fbuff, lp + 1, DISPDESC_SIZE - 1);
|
|
|
|
ddesc = fbuff;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: Script descriptor used"));
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // USE_SCRIPT
|
|
|
|
|
2021-04-16 18:36:45 +01:00
|
|
|
#ifdef USE_RULES
|
2021-06-11 17:14:12 +01:00
|
|
|
if (!bitRead(Settings->rule_enabled, 2) && !ddesc) {
|
2021-04-16 18:36:45 +01:00
|
|
|
// only if rule3 is not enabled for rules
|
2021-06-11 17:14:12 +01:00
|
|
|
char *cp = Settings->rules[2];
|
2021-04-16 18:36:45 +01:00
|
|
|
while (*cp == ' ') cp++;
|
|
|
|
memcpy(fbuff, cp, DISPDESC_SIZE - 1);
|
|
|
|
if (fbuff[0] == ':' && fbuff[1] == 'H') {
|
|
|
|
// assume display descriptor, replace space with line feed
|
|
|
|
for (uint32_t cnt = 0; cnt < DISPDESC_SIZE; cnt++) {
|
|
|
|
if (fbuff[cnt] == ' ') fbuff[cnt] = '\n';
|
|
|
|
}
|
|
|
|
ddesc = fbuff;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: Rule 3 descriptor used"));
|
2021-04-16 18:36:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // USE_RULES
|
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
#ifdef DSP_ROM_DESC
|
|
|
|
if (!ddesc) {
|
|
|
|
memcpy_P(fbuff, DSP_SAMPLE_DESC, sizeof(DSP_SAMPLE_DESC));
|
|
|
|
ddesc = fbuff;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: Flash descriptor used"));
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
#endif // DSP_ROM_DESC
|
|
|
|
|
|
|
|
if (!ddesc) {
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: No valid descriptor found"));
|
2021-04-11 11:32:02 +01:00
|
|
|
if (fbuff) free(fbuff);
|
2021-04-21 10:01:40 +01:00
|
|
|
return 0;
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
// now replace tasmota vars before passing to driver
|
2021-04-21 10:01:40 +01:00
|
|
|
char *cp = strstr(ddesc, "I2C");
|
2021-04-11 11:32:02 +01:00
|
|
|
if (cp) {
|
2021-04-21 10:01:40 +01:00
|
|
|
cp += 3;
|
|
|
|
uint8_t wire_n = 1;
|
|
|
|
if (*cp == '1' || *cp == '2') {
|
|
|
|
wire_n = *cp & 3;
|
|
|
|
cp += 2;
|
|
|
|
} else {
|
|
|
|
cp++;
|
|
|
|
}
|
2021-04-11 11:32:02 +01:00
|
|
|
//,3c,22,21,-1
|
2021-04-14 13:26:59 +01:00
|
|
|
uint8_t i2caddr = strtol(cp, &cp, 16);
|
|
|
|
int8_t scl, sda;
|
2021-04-21 10:01:40 +01:00
|
|
|
scl = replacepin(&cp, Pin(GPIO_I2C_SCL, wire_n - 1));
|
|
|
|
sda = replacepin(&cp, Pin(GPIO_I2C_SDA, wire_n - 1));
|
2021-04-14 13:26:59 +01:00
|
|
|
replacepin(&cp, Pin(GPIO_OLED_RESET));
|
|
|
|
|
2021-04-21 10:01:40 +01:00
|
|
|
if (wire_n == 1) {
|
2021-10-28 14:57:24 +01:00
|
|
|
I2cBegin(sda, scl);
|
2021-04-21 10:01:40 +01:00
|
|
|
}
|
|
|
|
#ifdef ESP32
|
|
|
|
if (wire_n == 2) {
|
2021-10-28 14:57:24 +01:00
|
|
|
I2c2Begin(sda, scl);
|
2021-04-21 10:01:40 +01:00
|
|
|
}
|
|
|
|
if (I2cSetDevice(i2caddr, wire_n - 1)) {
|
|
|
|
I2cSetActiveFound(i2caddr, "DSP-I2C", wire_n - 1);
|
|
|
|
}
|
|
|
|
#endif // ESP32
|
|
|
|
|
|
|
|
#ifdef ESP8266
|
2021-04-11 11:32:02 +01:00
|
|
|
if (I2cSetDevice(i2caddr)) {
|
|
|
|
I2cSetActiveFound(i2caddr, "DSP-I2C");
|
|
|
|
}
|
2021-04-21 10:01:40 +01:00
|
|
|
#endif // ESP8266
|
|
|
|
//AddLog(LOG_LEVEL_INFO, PSTR("DSP: i2c %x, %d, %d, %d!"), i2caddr, wire_n, scl, sda);
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 13:26:59 +01:00
|
|
|
cp = strstr(ddesc, "SPI,");
|
2021-04-11 11:32:02 +01:00
|
|
|
if (cp) {
|
|
|
|
cp += 4;
|
|
|
|
//; 7 params nr,cs,sclk,mosi,dc,bl,reset,miso
|
|
|
|
//SPI,*,*,*,*,*,*,*
|
2021-11-17 21:48:48 +00:00
|
|
|
switch (*cp) {
|
|
|
|
case '1':
|
|
|
|
cs = Pin(GPIO_SPI_CS);
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
cs = Pin(GPIO_SPI_CS, 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cs = Pin(GPIO_SSPI_CS);
|
|
|
|
break;
|
2021-04-21 16:11:19 +01:00
|
|
|
}
|
2021-04-11 11:32:02 +01:00
|
|
|
if (*cp == '1') {
|
|
|
|
cp+=2;
|
2021-04-21 16:11:19 +01:00
|
|
|
replacepin(&cp, cs);
|
2021-04-11 11:32:02 +01:00
|
|
|
replacepin(&cp, Pin(GPIO_SPI_CLK));
|
|
|
|
replacepin(&cp, Pin(GPIO_SPI_MOSI));
|
|
|
|
replacepin(&cp, Pin(GPIO_SPI_DC));
|
|
|
|
replacepin(&cp, Pin(GPIO_BACKLIGHT));
|
|
|
|
replacepin(&cp, Pin(GPIO_OLED_RESET));
|
|
|
|
replacepin(&cp, Pin(GPIO_SPI_MISO));
|
2021-04-19 16:01:33 +01:00
|
|
|
} else if (*cp == '2') {
|
|
|
|
cp+=2;
|
2021-04-21 16:11:19 +01:00
|
|
|
replacepin(&cp, cs);
|
2021-04-19 16:01:33 +01:00
|
|
|
replacepin(&cp, Pin(GPIO_SPI_CLK, 1));
|
|
|
|
replacepin(&cp, Pin(GPIO_SPI_MOSI, 1));
|
|
|
|
replacepin(&cp, Pin(GPIO_SPI_DC, 1));
|
2021-12-08 15:32:02 +00:00
|
|
|
replacepin(&cp, Pin(GPIO_BACKLIGHT));
|
|
|
|
replacepin(&cp, Pin(GPIO_OLED_RESET));
|
2021-04-19 16:01:33 +01:00
|
|
|
replacepin(&cp, Pin(GPIO_SPI_MISO, 1));
|
2021-04-11 11:32:02 +01:00
|
|
|
} else {
|
|
|
|
// soft spi pins
|
|
|
|
cp+=2;
|
2021-04-21 16:11:19 +01:00
|
|
|
replacepin(&cp, cs);
|
2021-04-11 11:32:02 +01:00
|
|
|
replacepin(&cp, Pin(GPIO_SSPI_SCLK));
|
|
|
|
replacepin(&cp, Pin(GPIO_SSPI_MOSI));
|
|
|
|
replacepin(&cp, Pin(GPIO_SSPI_DC));
|
|
|
|
replacepin(&cp, Pin(GPIO_BACKLIGHT));
|
|
|
|
replacepin(&cp, Pin(GPIO_OLED_RESET));
|
|
|
|
replacepin(&cp, Pin(GPIO_SSPI_MISO));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
File fp;
|
2021-04-14 13:26:59 +01:00
|
|
|
fp = ffsp->open("/dump.txt", "w");
|
|
|
|
fp.write((uint8_t*)ddesc, DISPDESC_SIZE);
|
2021-04-11 11:32:02 +01:00
|
|
|
fp.close();
|
2021-04-16 18:36:45 +01:00
|
|
|
*/
|
2021-04-14 13:26:59 +01:00
|
|
|
|
2021-04-16 18:36:45 +01:00
|
|
|
// init renderer
|
2021-04-21 10:01:40 +01:00
|
|
|
if (renderer) {
|
|
|
|
delete renderer;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR("DSP: reinit"));
|
2021-04-21 10:01:40 +01:00
|
|
|
}
|
2021-04-16 18:36:45 +01:00
|
|
|
udisp = new uDisplay(ddesc);
|
2021-04-14 13:26:59 +01:00
|
|
|
|
|
|
|
// checck for touch option TI1 or TI2
|
|
|
|
#ifdef USE_FT5206
|
|
|
|
cp = strstr(ddesc, ":TI");
|
|
|
|
if (cp) {
|
|
|
|
uint8_t wire_n = 1;
|
2021-04-19 16:01:33 +01:00
|
|
|
cp += 3;
|
2021-04-14 13:26:59 +01:00
|
|
|
wire_n = (*cp & 3) - 1;
|
2021-04-19 16:01:33 +01:00
|
|
|
cp += 2;
|
2021-04-14 13:26:59 +01:00
|
|
|
|
|
|
|
uint8_t i2caddr = strtol(cp, &cp, 16);
|
|
|
|
int8_t scl, sda;
|
2021-04-21 10:01:40 +01:00
|
|
|
scl = replacepin(&cp, Pin(GPIO_I2C_SCL, wire_n));
|
|
|
|
sda = replacepin(&cp, Pin(GPIO_I2C_SDA, wire_n));
|
2021-04-14 13:26:59 +01:00
|
|
|
if (wire_n == 0) {
|
2021-10-28 14:57:24 +01:00
|
|
|
I2cBegin(sda, scl);
|
2021-04-14 13:26:59 +01:00
|
|
|
}
|
|
|
|
#ifdef ESP32
|
|
|
|
if (wire_n == 1) {
|
2021-10-28 14:57:24 +01:00
|
|
|
I2c2Begin(sda, scl, 400000);
|
2021-04-14 13:26:59 +01:00
|
|
|
}
|
|
|
|
if (I2cSetDevice(i2caddr, wire_n)) {
|
|
|
|
I2cSetActiveFound(i2caddr, "FT5206", wire_n);
|
|
|
|
}
|
2021-04-21 10:01:40 +01:00
|
|
|
#endif // ESP32
|
|
|
|
|
|
|
|
#ifdef ESP8266
|
|
|
|
//AddLog(LOG_LEVEL_INFO, PSTR("DSP: touch %x, %d, %d, %d!"), i2caddr, wire_n, scl, sda);
|
|
|
|
if (I2cSetDevice(i2caddr)) {
|
|
|
|
I2cSetActiveFound(i2caddr, "FT5206");
|
|
|
|
}
|
|
|
|
#endif // ESP8266
|
|
|
|
|
2021-04-14 13:26:59 +01:00
|
|
|
// start digitizer
|
|
|
|
#ifdef ESP32
|
2021-04-21 10:01:40 +01:00
|
|
|
if (!wire_n) FT5206_Touch_Init(Wire);
|
|
|
|
else FT5206_Touch_Init(Wire1);
|
2021-04-14 13:26:59 +01:00
|
|
|
#else
|
2021-04-21 10:01:40 +01:00
|
|
|
if (!wire_n) FT5206_Touch_Init(Wire);
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // ESP32
|
2021-04-14 13:26:59 +01:00
|
|
|
}
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // USE_FT5206
|
2021-04-14 13:26:59 +01:00
|
|
|
|
|
|
|
#ifdef USE_XPT2046
|
|
|
|
cp = strstr(ddesc, ":TS,");
|
|
|
|
if (cp) {
|
|
|
|
cp+=4;
|
|
|
|
uint8_t touch_cs = replacepin(&cp, Pin(GPIO_XPT2046_CS));
|
2021-04-21 10:01:40 +01:00
|
|
|
XPT2046_Touch_Init(touch_cs);
|
2021-04-14 13:26:59 +01:00
|
|
|
}
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // USE_XPT2046
|
2021-04-14 13:26:59 +01:00
|
|
|
|
2021-10-04 12:04:48 +01:00
|
|
|
uint8_t inirot = Settings->display_rotate;
|
|
|
|
|
|
|
|
cp = strstr(ddesc, ":r,");
|
|
|
|
if (cp) {
|
|
|
|
cp+=3;
|
|
|
|
inirot = strtol(cp, &cp, 10);
|
|
|
|
}
|
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
// release desc buffer
|
|
|
|
if (fbuff) free(fbuff);
|
|
|
|
|
|
|
|
renderer = udisp->Init();
|
2021-04-21 10:01:40 +01:00
|
|
|
if (!renderer) return 0;
|
2021-04-11 11:32:02 +01:00
|
|
|
|
2021-04-25 14:14:50 +01:00
|
|
|
fg_color = renderer->fgcol();
|
|
|
|
bg_color = renderer->bgcol();
|
|
|
|
color_type = renderer->color_type();
|
|
|
|
|
|
|
|
#ifdef USE_M5STACK_CORE2
|
|
|
|
renderer->SetPwrCB(Core2DisplayPower);
|
|
|
|
renderer->SetDimCB(Core2DisplayDim);
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // USE_M5STACK_CORE2
|
2021-04-11 11:32:02 +01:00
|
|
|
|
2021-10-04 12:04:48 +01:00
|
|
|
renderer->DisplayInit(DISPLAY_INIT_MODE, Settings->display_size, inirot, Settings->display_font);
|
|
|
|
|
|
|
|
Settings->display_width = renderer->width();
|
|
|
|
Settings->display_height = renderer->height();
|
2021-12-08 15:32:02 +00:00
|
|
|
|
2021-09-14 21:40:26 +01:00
|
|
|
ApplyDisplayDimmer();
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
#ifdef SHOW_SPLASH
|
2022-03-05 21:56:24 +00:00
|
|
|
if (!Settings->flag5.display_no_splash) {
|
|
|
|
renderer->Splash();
|
|
|
|
}
|
2021-12-08 15:32:02 +00:00
|
|
|
#endif // SHOW_SPLASH
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
udisp_init_done = true;
|
2022-01-13 18:20:10 +00:00
|
|
|
AddLog(LOG_LEVEL_INFO, PSTR("DSP: Configured display '%s'"), renderer->devname());
|
2021-04-25 14:14:50 +01:00
|
|
|
|
2021-04-21 10:01:40 +01:00
|
|
|
return renderer;
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
2021-04-21 10:01:40 +01:00
|
|
|
return 0;
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************/
|
|
|
|
|
2021-04-14 13:26:59 +01:00
|
|
|
int8_t replacepin(char **cp, uint16_t pin) {
|
|
|
|
int8_t res = 0;
|
2021-04-11 11:32:02 +01:00
|
|
|
char *lp = *cp;
|
|
|
|
if (*lp == ',') lp++;
|
|
|
|
if (*lp == '*') {
|
|
|
|
char val[8];
|
|
|
|
itoa(pin, val, 10);
|
|
|
|
uint16_t slen = strlen(val);
|
|
|
|
//AddLog(LOG_LEVEL_INFO, PSTR("replace pin: %d"), pin);
|
|
|
|
memmove(lp + slen, lp + 1, strlen(lp));
|
|
|
|
memmove(lp, val, slen);
|
|
|
|
}
|
2021-04-14 13:26:59 +01:00
|
|
|
res= strtol(lp, 0, 10);
|
2021-04-11 11:32:02 +01:00
|
|
|
char *np = strchr(lp, ',');
|
|
|
|
if (np) {
|
|
|
|
*cp = np + 1;
|
|
|
|
}
|
2021-04-14 13:26:59 +01:00
|
|
|
return res;
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_DISPLAY_MODES1TO5
|
|
|
|
|
|
|
|
void UDISP_PrintLog(void)
|
|
|
|
{
|
|
|
|
disp_refresh--;
|
|
|
|
if (!disp_refresh) {
|
2021-06-11 17:14:12 +01:00
|
|
|
disp_refresh = Settings->display_refresh;
|
2021-04-11 11:32:02 +01:00
|
|
|
if (!disp_screen_buffer_cols) { DisplayAllocScreenBuffer(); }
|
|
|
|
|
|
|
|
char* txt = DisplayLogBuffer('\370');
|
|
|
|
if (txt != NULL) {
|
2021-06-11 17:14:12 +01:00
|
|
|
uint8_t last_row = Settings->display_rows -1;
|
2021-04-11 11:32:02 +01:00
|
|
|
|
|
|
|
renderer->clearDisplay();
|
2021-06-11 17:14:12 +01:00
|
|
|
renderer->setTextSize(Settings->display_size);
|
2021-04-11 11:32:02 +01:00
|
|
|
renderer->setCursor(0,0);
|
|
|
|
for (byte i = 0; i < last_row; i++) {
|
|
|
|
strlcpy(disp_screen_buffer[i], disp_screen_buffer[i +1], disp_screen_buffer_cols);
|
|
|
|
renderer->println(disp_screen_buffer[i]);
|
|
|
|
}
|
|
|
|
strlcpy(disp_screen_buffer[last_row], txt, disp_screen_buffer_cols);
|
|
|
|
DisplayFillScreen(last_row);
|
|
|
|
|
|
|
|
AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_DEBUG "[%s]"), disp_screen_buffer[last_row]);
|
|
|
|
|
|
|
|
renderer->println(disp_screen_buffer[last_row]);
|
|
|
|
renderer->Updateframe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UDISP_Time(void)
|
|
|
|
{
|
|
|
|
char line[12];
|
|
|
|
|
|
|
|
renderer->clearDisplay();
|
2021-06-11 17:14:12 +01:00
|
|
|
renderer->setTextSize(Settings->display_size);
|
|
|
|
renderer->setTextFont(Settings->display_font);
|
2021-04-11 11:32:02 +01:00
|
|
|
renderer->setCursor(0, 0);
|
|
|
|
snprintf_P(line, sizeof(line), PSTR(" %02d" D_HOUR_MINUTE_SEPARATOR "%02d" D_MINUTE_SECOND_SEPARATOR "%02d"), RtcTime.hour, RtcTime.minute, RtcTime.second); // [ 12:34:56 ]
|
|
|
|
renderer->println(line);
|
|
|
|
renderer->println();
|
|
|
|
snprintf_P(line, sizeof(line), PSTR("%02d" D_MONTH_DAY_SEPARATOR "%02d" D_YEAR_MONTH_SEPARATOR "%04d"), RtcTime.day_of_month, RtcTime.month, RtcTime.year); // [01-02-2018]
|
|
|
|
renderer->println(line);
|
|
|
|
renderer->Updateframe();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UDISP_Refresh(void) // Every second
|
|
|
|
{
|
|
|
|
if (!renderer) return;
|
2021-06-11 17:14:12 +01:00
|
|
|
if (Settings->display_mode) { // Mode 0 is User text
|
|
|
|
switch (Settings->display_mode) {
|
2021-04-11 11:32:02 +01:00
|
|
|
case 1: // Time
|
|
|
|
UDISP_Time();
|
|
|
|
break;
|
|
|
|
case 2: // Local
|
|
|
|
case 3: // Local
|
|
|
|
case 4: // Mqtt
|
|
|
|
case 5: // Mqtt
|
|
|
|
UDISP_PrintLog();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // USE_DISPLAY_MODES1TO5
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Interface
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2021-04-30 14:26:41 +01:00
|
|
|
bool Xdsp17(uint8_t function) {
|
2021-04-11 11:32:02 +01:00
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (FUNC_DISPLAY_INIT_DRIVER == function) {
|
2021-11-13 19:45:27 +00:00
|
|
|
Init_uDisplay(nullptr);
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
2021-06-11 17:14:12 +01:00
|
|
|
else if (udisp_init_done && (XDSP_17 == Settings->display_model)) {
|
2021-04-11 11:32:02 +01:00
|
|
|
switch (function) {
|
|
|
|
case FUNC_DISPLAY_MODEL:
|
|
|
|
result = true;
|
|
|
|
break;
|
2021-04-14 13:26:59 +01:00
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
#ifdef USE_DISPLAY_MODES1TO5
|
|
|
|
case FUNC_DISPLAY_EVERY_SECOND:
|
|
|
|
UDISP_Refresh();
|
|
|
|
break;
|
|
|
|
#endif // USE_DISPLAY_MODES1TO5
|
2021-04-14 13:26:59 +01:00
|
|
|
|
2021-04-11 11:32:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // USE_UNIVERSAL_DISPLAY
|
|
|
|
#endif // USE_DISPLAY
|