display.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /*
  2. * (c) Philippe G. 2019, philippe_44@outlook.com
  3. *
  4. * This software is released under the MIT License.
  5. * https://opensource.org/licenses/MIT
  6. *
  7. */
  8. #include <string.h>
  9. #include <ctype.h>
  10. #include <stdint.h>
  11. #include <arpa/inet.h>
  12. #include "esp_log.h"
  13. #include "globdefs.h"
  14. #include "platform_config.h"
  15. #include "tools.h"
  16. #include "display.h"
  17. #include "gds.h"
  18. #include "gds_default_if.h"
  19. #include "gds_draw.h"
  20. #include "gds_text.h"
  21. #include "gds_font.h"
  22. #include "gds_image.h"
  23. static const char *TAG = "display";
  24. #define min(a,b) (((a) < (b)) ? (a) : (b))
  25. #define max(a,b) (((a) > (b)) ? (a) : (b))
  26. #define DISPLAYER_STACK_SIZE (3*1024)
  27. #define SCROLLABLE_SIZE 384
  28. #define HEADER_SIZE 64
  29. #define DEFAULT_SLEEP 3600
  30. #define ARTWORK_BORDER 1
  31. static EXT_RAM_ATTR struct {
  32. TaskHandle_t task;
  33. SemaphoreHandle_t mutex;
  34. int pause, speed, by;
  35. enum { DISPLAYER_DOWN, DISPLAYER_IDLE, DISPLAYER_ACTIVE } state;
  36. char header[HEADER_SIZE + 1];
  37. char string[SCROLLABLE_SIZE + 1];
  38. int offset, boundary;
  39. char *metadata_config;
  40. bool timer, refresh;
  41. uint32_t elapsed;
  42. struct {
  43. uint32_t value;
  44. char string[8]; // H:MM:SS
  45. bool visible;
  46. } duration;
  47. struct {
  48. bool enable, fit;
  49. int offset;
  50. } artwork;
  51. TickType_t tick;
  52. } displayer;
  53. static const char *known_drivers[] = {"SH1106",
  54. "SSD1306",
  55. "SSD1322",
  56. "SSD1326",
  57. "SSD1327",
  58. "SSD1675",
  59. "SSD1351",
  60. "ST7735",
  61. "ST7789",
  62. "ILI9341",
  63. NULL
  64. };
  65. static void displayer_task(void *args);
  66. struct GDS_Device *display;
  67. extern GDS_DetectFunc SSD1306_Detect, SSD132x_Detect, SH1106_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect, ILI9341_Detect;
  68. GDS_DetectFunc *drivers[] = { SH1106_Detect, SSD1306_Detect, SSD132x_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect, ILI9341_Detect, NULL };
  69. /****************************************************************************************
  70. *
  71. */
  72. void display_init(char *welcome) {
  73. bool init = false;
  74. char *config = config_alloc_get_str("display_config", CONFIG_DISPLAY_CONFIG, "N/A");
  75. int width = -1, height = -1, backlight_pin = -1;
  76. char *drivername = strstr(config, "driver");
  77. PARSE_PARAM(config, "width", '=', width);
  78. PARSE_PARAM(config, "height", '=', height);
  79. PARSE_PARAM(config, "back", '=', backlight_pin);
  80. // query drivers to see if we have a match
  81. ESP_LOGI(TAG, "Trying to configure display with %s", config);
  82. if (backlight_pin >= 0) {
  83. struct GDS_BacklightPWM PWMConfig = { .Channel = pwm_system.base_channel++, .Timer = pwm_system.timer, .Max = pwm_system.max, .Init = false };
  84. display = GDS_AutoDetect(drivername, drivers, &PWMConfig);
  85. } else {
  86. display = GDS_AutoDetect(drivername, drivers, NULL);
  87. }
  88. // so far so good
  89. if (display && width > 0 && height > 0) {
  90. int RST_pin = -1;
  91. PARSE_PARAM(config, "reset", '=', RST_pin);
  92. // Detect driver interface
  93. if (strcasestr(config, "I2C") && i2c_system_port != -1) {
  94. int address = 0x3C;
  95. PARSE_PARAM(config, "address", '=', address);
  96. init = true;
  97. GDS_I2CInit( i2c_system_port, -1, -1, i2c_system_speed ) ;
  98. GDS_I2CAttachDevice( display, width, height, address, RST_pin, backlight_pin );
  99. ESP_LOGI(TAG, "Display is I2C on port %u", address);
  100. } else if (strcasestr(config, "SPI") && spi_system_host != -1) {
  101. int CS_pin = -1, speed = 0;
  102. PARSE_PARAM(config, "cs", '=', CS_pin);
  103. PARSE_PARAM(config, "speed", '=', speed);
  104. init = true;
  105. GDS_SPIInit( spi_system_host, spi_system_dc_gpio );
  106. GDS_SPIAttachDevice( display, width, height, CS_pin, RST_pin, backlight_pin, speed );
  107. ESP_LOGI(TAG, "Display is SPI host %u with cs:%d", spi_system_host, CS_pin);
  108. } else {
  109. display = NULL;
  110. ESP_LOGI(TAG, "Unsupported display interface or serial link not configured");
  111. }
  112. } else {
  113. display = NULL;
  114. ESP_LOGW(TAG, "No display driver");
  115. }
  116. if (init) {
  117. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  118. static EXT_RAM_ATTR StackType_t xStack[DISPLAYER_STACK_SIZE] __attribute__ ((aligned (4)));
  119. GDS_SetLayout(display, strcasestr(config, "HFlip"), strcasestr(config, "VFlip"), strcasestr(config, "rotate"));
  120. GDS_SetFont(display, &Font_droid_sans_fallback_15x17 );
  121. GDS_TextPos(display, GDS_FONT_MEDIUM, GDS_TEXT_CENTERED, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, welcome);
  122. // start the task that will handle scrolling & counting
  123. displayer.mutex = xSemaphoreCreateMutex();
  124. displayer.by = 2;
  125. displayer.pause = 3600;
  126. displayer.speed = 33;
  127. displayer.task = xTaskCreateStatic( (TaskFunction_t) displayer_task, "common_displayer", DISPLAYER_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
  128. // set lines for "fixed" text mode
  129. GDS_TextSetFontAuto(display, 1, GDS_FONT_LINE_1, -3);
  130. GDS_TextSetFontAuto(display, 2, GDS_FONT_LINE_2, -3);
  131. displayer.metadata_config = config_alloc_get(NVS_TYPE_STR, "metadata_config");
  132. // leave room for artwork is display is horizontal-style
  133. if (strcasestr(displayer.metadata_config, "artwork")) {
  134. displayer.artwork.enable = true;
  135. displayer.artwork.fit = true;
  136. if (height <= 64 && width > height * 2) displayer.artwork.offset = width - height - ARTWORK_BORDER;
  137. PARSE_PARAM(displayer.metadata_config, "artwork", ':', displayer.artwork.fit);
  138. }
  139. }
  140. free(config);
  141. }
  142. /****************************************************************************************
  143. * This is not thread-safe as displayer_task might be in the middle of line drawing
  144. * but it won't crash (I think) and making it thread-safe would be complicated for a
  145. * feature which is secondary (the LMS version of scrolling is thread-safe)
  146. */
  147. static void displayer_task(void *args) {
  148. int scroll_sleep = 0, timer_sleep;
  149. while (1) {
  150. // suspend ourselves if nothing to do
  151. if (displayer.state < DISPLAYER_ACTIVE) {
  152. if (displayer.state == DISPLAYER_IDLE) GDS_TextLine(display, 2, 0, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.string);
  153. vTaskSuspend(NULL);
  154. scroll_sleep = 0;
  155. GDS_ClearExt(display, true);
  156. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_UPDATE, displayer.header);
  157. } else if (displayer.refresh) {
  158. // little trick when switching master while in IDLE and missing it
  159. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.header);
  160. displayer.refresh = false;
  161. }
  162. // we have been waken up before our requested time
  163. if (scroll_sleep <= 10) {
  164. // something to scroll (or we'll wake-up every pause ms ... no big deal)
  165. if (*displayer.string && displayer.state == DISPLAYER_ACTIVE) {
  166. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  167. // need to work with local copies as we don't want to suspend caller
  168. int offset = -displayer.offset;
  169. char *string = strdup(displayer.string);
  170. scroll_sleep = displayer.offset ? displayer.speed : displayer.pause;
  171. displayer.offset = displayer.offset >= displayer.boundary ? 0 : (displayer.offset + min(displayer.by, displayer.boundary - displayer.offset));
  172. xSemaphoreGive(displayer.mutex);
  173. // now display using safe copies, can be lengthy
  174. GDS_TextLine(display, 2, offset, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, string);
  175. free(string);
  176. } else {
  177. scroll_sleep = DEFAULT_SLEEP;
  178. }
  179. }
  180. // handler elapsed track time
  181. if (displayer.timer && displayer.state == DISPLAYER_ACTIVE) {
  182. char line[19] = "-", *_line = line + 1; // [-]H:MM:SS / H:MM:SS
  183. TickType_t tick = xTaskGetTickCount();
  184. uint32_t elapsed = (tick - displayer.tick) * portTICK_PERIOD_MS;
  185. if (elapsed >= 1000) {
  186. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  187. displayer.tick = tick;
  188. elapsed = displayer.elapsed += elapsed / 1000;
  189. xSemaphoreGive(displayer.mutex);
  190. // when we have duration but no space, display remaining time
  191. if (displayer.duration.value && !displayer.duration.visible) elapsed = displayer.duration.value - elapsed;
  192. if (elapsed < 3600) sprintf(_line, "%u:%02u", elapsed / 60, elapsed % 60);
  193. else sprintf(_line, "%u:%02u:%02u", (elapsed / 3600) % 100, (elapsed % 3600) / 60, elapsed % 60);
  194. // concatenate if we have room for elapsed / duration
  195. if (displayer.duration.visible) {
  196. strcat(_line, "/");
  197. strcat(_line, displayer.duration.string);
  198. } else if (displayer.duration.value) {
  199. _line--;
  200. }
  201. // just re-write the whole line it's easier
  202. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_CLEAR, displayer.header);
  203. GDS_TextLine(display, 1, GDS_TEXT_RIGHT, GDS_TEXT_UPDATE, _line);
  204. timer_sleep = 1000;
  205. } else timer_sleep = max(1000 - elapsed, 0);
  206. } else timer_sleep = DEFAULT_SLEEP;
  207. // then sleep the min amount of time
  208. int sleep = min(scroll_sleep, timer_sleep);
  209. ESP_LOGD(TAG, "timers s:%d t:%d", scroll_sleep, timer_sleep);
  210. scroll_sleep -= sleep;
  211. vTaskDelay(sleep / portTICK_PERIOD_MS);
  212. }
  213. }
  214. /****************************************************************************************
  215. *
  216. */
  217. void displayer_artwork(uint8_t *data) {
  218. if (!displayer.artwork.enable) return;
  219. int x = displayer.artwork.offset ? displayer.artwork.offset + ARTWORK_BORDER : 0;
  220. int y = x ? 0 : 32;
  221. GDS_ClearWindow(display, x, y, -1, -1, GDS_COLOR_BLACK);
  222. if (data) GDS_DrawJPEG(display, data, x, y, GDS_IMAGE_CENTER | (displayer.artwork.fit ? GDS_IMAGE_FIT : 0));
  223. }
  224. /****************************************************************************************
  225. *
  226. */
  227. void displayer_metadata(char *artist, char *album, char *title) {
  228. char *string = displayer.string, *p;
  229. int len = SCROLLABLE_SIZE;
  230. // need a display!
  231. if (!display) return;
  232. // just do title if there is no config set
  233. if (!displayer.metadata_config) {
  234. strncpy(displayer.string, title ? title : "", SCROLLABLE_SIZE);
  235. return;
  236. }
  237. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  238. // format metadata parameters and write them directly
  239. if ((p = strcasestr(displayer.metadata_config, "format")) != NULL) {
  240. char token[16], *q;
  241. int space = len;
  242. bool skip = false;
  243. displayer.string[0] = '\0';
  244. p = strchr(displayer.metadata_config, '=');
  245. while (p++) {
  246. // find token and copy what's after when reaching last one
  247. if (sscanf(p, "%*[^%%]%%%[^%]%%", token) < 0) {
  248. q = strchr(p, ',');
  249. strncat(string, p, q ? min(q - p, space) : space);
  250. break;
  251. }
  252. // copy what's before token (be safe)
  253. if ((q = strchr(p, '%')) == NULL) break;
  254. // skip whatever is after a token if this token is empty
  255. if (!skip) {
  256. strncat(string, p, min(q - p, space));
  257. space = len - strlen(string);
  258. }
  259. // then copy token's content
  260. if (!strncasecmp(q + 1, "artist", 6) && artist) strncat(string, p = artist, space);
  261. else if (!strncasecmp(q + 1, "album", 5) && album) strncat(string, p = album, space);
  262. else if (!strncasecmp(q + 1, "title", 5) && title) strncat(string, p = title, space);
  263. space = len - strlen(string);
  264. // flag to skip the data following an empty field
  265. if (*p) skip = false;
  266. else skip = true;
  267. // advance to next separator
  268. p = strchr(q + 1, '%');
  269. }
  270. } else {
  271. strncpy(string, title ? title : "", SCROLLABLE_SIZE);
  272. }
  273. // get optional scroll speed & pause
  274. PARSE_PARAM(displayer.metadata_config, "speed", '=', displayer.speed);
  275. PARSE_PARAM(displayer.metadata_config, "pause", '=', displayer.pause);
  276. displayer.offset = 0;
  277. utf8_decode(displayer.string);
  278. ESP_LOGI(TAG, "playing %s", displayer.string);
  279. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  280. xSemaphoreGive(displayer.mutex);
  281. }
  282. /****************************************************************************************
  283. *
  284. */
  285. void displayer_scroll(char *string, int speed, int pause) {
  286. // need a display!
  287. if (!display) return;
  288. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  289. if (speed) displayer.speed = speed;
  290. if (pause) displayer.pause = pause;
  291. displayer.offset = 0;
  292. strncpy(displayer.string, string, SCROLLABLE_SIZE);
  293. displayer.string[SCROLLABLE_SIZE] = '\0';
  294. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  295. xSemaphoreGive(displayer.mutex);
  296. }
  297. /****************************************************************************************
  298. *
  299. */
  300. void displayer_timer(enum displayer_time_e mode, int elapsed, int duration) {
  301. // need a display!
  302. if (!display) return;
  303. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  304. if (displayer.timer) displayer.tick = xTaskGetTickCount();
  305. if (elapsed >= 0) displayer.elapsed = elapsed / 1000;
  306. if (duration > 0) {
  307. displayer.duration.visible = true;
  308. displayer.duration.value = duration / 1000;
  309. if (displayer.duration.value > 3600) sprintf(displayer.duration.string, "%u:%02u:%02u", (displayer.duration.value / 3600) % 10,
  310. (displayer.duration.value % 3600) / 60, displayer.duration.value % 60);
  311. else sprintf(displayer.duration.string, "%u:%02u", displayer.duration.value / 60, displayer.duration.value % 60);
  312. char *buf;
  313. asprintf(&buf, "%s %s/%s", displayer.header, displayer.duration.string, displayer.duration.string);
  314. if (GDS_GetTextWidth(display, 1, 0, buf) > GDS_GetWidth(display)) {
  315. ESP_LOGW(TAG, "Can't fit duration %s (%d) on screen using elapsed only", buf, GDS_GetTextWidth(display, 1, 0, buf));
  316. displayer.duration.visible = false;
  317. }
  318. free(buf);
  319. } else if (!duration) {
  320. displayer.duration.visible = false;
  321. displayer.duration.value = 0;
  322. }
  323. xSemaphoreGive(displayer.mutex);
  324. }
  325. /****************************************************************************************
  326. * See above comment
  327. */
  328. void displayer_control(enum displayer_cmd_e cmd, ...) {
  329. va_list args;
  330. if (!display) return;
  331. va_start(args, cmd);
  332. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  333. switch(cmd) {
  334. case DISPLAYER_ACTIVATE: {
  335. char *header = va_arg(args, char*);
  336. bool artwork = va_arg(args, int);
  337. strncpy(displayer.header, header, HEADER_SIZE);
  338. displayer.header[HEADER_SIZE] = '\0';
  339. displayer.state = DISPLAYER_ACTIVE;
  340. displayer.timer = false;
  341. displayer.refresh = true;
  342. displayer.string[0] = '\0';
  343. displayer.elapsed = displayer.duration.value = 0;
  344. displayer.duration.visible = false;
  345. displayer.offset = displayer.boundary = 0;
  346. display_bus(&displayer, DISPLAY_BUS_TAKE);
  347. if (artwork) GDS_SetTextWidth(display, displayer.artwork.offset);
  348. vTaskResume(displayer.task);
  349. break;
  350. }
  351. case DISPLAYER_SUSPEND:
  352. // task will display the line 2 from beginning and suspend
  353. displayer.state = DISPLAYER_IDLE;
  354. display_bus(&displayer, DISPLAY_BUS_GIVE);
  355. break;
  356. case DISPLAYER_SHUTDOWN:
  357. // let the task self-suspend (we might be doing i2c_write)
  358. GDS_SetTextWidth(display, 0);
  359. displayer.state = DISPLAYER_DOWN;
  360. display_bus(&displayer, DISPLAY_BUS_GIVE);
  361. break;
  362. case DISPLAYER_TIMER_RUN:
  363. if (!displayer.timer) {
  364. display_bus(&displayer, DISPLAY_BUS_TAKE);
  365. displayer.timer = true;
  366. displayer.tick = xTaskGetTickCount();
  367. }
  368. break;
  369. case DISPLAYER_TIMER_PAUSE:
  370. displayer.timer = false;
  371. break;
  372. default:
  373. break;
  374. }
  375. xSemaphoreGive(displayer.mutex);
  376. va_end(args);
  377. }
  378. /****************************************************************************************
  379. *
  380. */
  381. bool display_is_valid_driver(const char * driver){
  382. return display_conf_get_driver_name(driver)!=NULL;
  383. }
  384. /****************************************************************************************
  385. *
  386. */
  387. const char *display_conf_get_driver_name(const char * driver){
  388. for(uint8_t i=0;known_drivers[i]!=NULL && strlen(known_drivers[i])>0;i++ ){
  389. if(strcasestr(driver,known_drivers[i])){
  390. return known_drivers[i];
  391. }
  392. }
  393. return NULL;
  394. }
  395. /****************************************************************************************
  396. *
  397. */
  398. char * display_get_supported_drivers(void){
  399. int total_size = 1;
  400. char * supported_drivers=NULL;
  401. const char * separator = "|";
  402. int separator_len = strlen(separator);
  403. for(uint8_t i=0;known_drivers[i]!=NULL && strlen(known_drivers[i])>0;i++ ){
  404. total_size += strlen(known_drivers[i])+separator_len;
  405. }
  406. total_size+=2;
  407. supported_drivers = malloc(total_size);
  408. memset(supported_drivers,0x00,total_size);
  409. strcat(supported_drivers,"<");
  410. for(uint8_t i=0;known_drivers[i]!=NULL && strlen(known_drivers[i])>0;i++ ){
  411. supported_drivers = strcat(supported_drivers,known_drivers[i]);
  412. supported_drivers = strcat(supported_drivers,separator);
  413. }
  414. strcat(supported_drivers,">");
  415. return supported_drivers;
  416. }