display.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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 "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. static const char *TAG = "display";
  23. #define min(a,b) (((a) < (b)) ? (a) : (b))
  24. #define max(a,b) (((a) > (b)) ? (a) : (b))
  25. #define DISPLAYER_STACK_SIZE (3*1024)
  26. #define SCROLLABLE_SIZE 384
  27. #define HEADER_SIZE 64
  28. #define DEFAULT_SLEEP 3600
  29. static EXT_RAM_ATTR struct {
  30. TaskHandle_t task;
  31. SemaphoreHandle_t mutex;
  32. int pause, speed, by;
  33. enum { DISPLAYER_DOWN, DISPLAYER_IDLE, DISPLAYER_ACTIVE } state;
  34. char header[HEADER_SIZE + 1];
  35. char string[SCROLLABLE_SIZE + 1];
  36. int offset, boundary;
  37. char *metadata_config;
  38. bool timer, refresh;
  39. uint32_t elapsed, duration;
  40. TickType_t tick;
  41. } displayer;
  42. static void displayer_task(void *args);
  43. struct GDS_Device *display;
  44. extern GDS_DetectFunc SSD1306_Detect, SSD132x_Detect, SH1106_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect;
  45. GDS_DetectFunc *drivers[] = { SH1106_Detect, SSD1306_Detect, SSD132x_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect, NULL };
  46. /****************************************************************************************
  47. *
  48. */
  49. void display_init(char *welcome) {
  50. bool init = false;
  51. char *config = config_alloc_get(NVS_TYPE_STR, "display_config");
  52. if (!config) {
  53. ESP_LOGI(TAG, "no display");
  54. return;
  55. }
  56. int width = -1, height = -1, backlight_pin = -1;
  57. char *p, *drivername = strstr(config, "driver");
  58. if ((p = strcasestr(config, "width")) != NULL) width = atoi(strchr(p, '=') + 1);
  59. if ((p = strcasestr(config, "height")) != NULL) height = atoi(strchr(p, '=') + 1);
  60. if ((p = strcasestr(config, "back")) != NULL) backlight_pin = atoi(strchr(p, '=') + 1);
  61. // query drivers to see if we have a match
  62. ESP_LOGI(TAG, "Trying to configure display with %s", config);
  63. if (backlight_pin >= 0) {
  64. struct GDS_BacklightPWM PWMConfig = { .Channel = pwm_system.base_channel++, .Timer = pwm_system.timer, .Max = pwm_system.max, .Init = false };
  65. display = GDS_AutoDetect(drivername, drivers, &PWMConfig);
  66. } else {
  67. display = GDS_AutoDetect(drivername, drivers, NULL);
  68. }
  69. // so far so good
  70. if (display && width > 0 && height > 0) {
  71. int RST_pin = -1;
  72. if ((p = strcasestr(config, "reset")) != NULL) RST_pin = atoi(strchr(p, '=') + 1);
  73. // Detect driver interface
  74. if (strstr(config, "I2C") && i2c_system_port != -1) {
  75. int address = 0x3C;
  76. if ((p = strcasestr(config, "address")) != NULL) address = atoi(strchr(p, '=') + 1);
  77. init = true;
  78. GDS_I2CInit( i2c_system_port, -1, -1, i2c_system_speed ) ;
  79. GDS_I2CAttachDevice( display, width, height, address, RST_pin, backlight_pin );
  80. ESP_LOGI(TAG, "Display is I2C on port %u", address);
  81. } else if (strstr(config, "SPI") && spi_system_host != -1) {
  82. int CS_pin = -1, speed = 0;
  83. if ((p = strcasestr(config, "cs")) != NULL) CS_pin = atoi(strchr(p, '=') + 1);
  84. if ((p = strcasestr(config, "speed")) != NULL) speed = atoi(strchr(p, '=') + 1);
  85. init = true;
  86. GDS_SPIInit( spi_system_host, spi_system_dc_gpio );
  87. GDS_SPIAttachDevice( display, width, height, CS_pin, RST_pin, backlight_pin, speed );
  88. ESP_LOGI(TAG, "Display is SPI host %u with cs:%d", spi_system_host, CS_pin);
  89. } else {
  90. display = NULL;
  91. ESP_LOGI(TAG, "Unsupported display interface or serial link not configured");
  92. }
  93. } else {
  94. display = NULL;
  95. ESP_LOGW(TAG, "No display driver");
  96. }
  97. if (init) {
  98. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  99. static EXT_RAM_ATTR StackType_t xStack[DISPLAYER_STACK_SIZE] __attribute__ ((aligned (4)));
  100. GDS_SetLayout( display, strcasestr(config, "HFlip"), strcasestr(config, "VFlip"), strcasestr(config, "rotate"));
  101. GDS_SetFont(display, &Font_droid_sans_fallback_15x17 );
  102. GDS_TextPos(display, GDS_FONT_MEDIUM, GDS_TEXT_CENTERED, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, welcome);
  103. // start the task that will handle scrolling & counting
  104. displayer.mutex = xSemaphoreCreateMutex();
  105. displayer.by = 2;
  106. displayer.pause = 3600;
  107. displayer.speed = 33;
  108. displayer.task = xTaskCreateStatic( (TaskFunction_t) displayer_task, "displayer_thread", DISPLAYER_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
  109. // set lines for "fixed" text mode
  110. GDS_TextSetFontAuto(display, 1, GDS_FONT_LINE_1, -3);
  111. GDS_TextSetFontAuto(display, 2, GDS_FONT_LINE_2, -3);
  112. displayer.metadata_config = config_alloc_get(NVS_TYPE_STR, "metadata_config");
  113. }
  114. free(config);
  115. }
  116. /****************************************************************************************
  117. * This is not thread-safe as displayer_task might be in the middle of line drawing
  118. * but it won't crash (I think) and making it thread-safe would be complicated for a
  119. * feature which is secondary (the LMS version of scrolling is thread-safe)
  120. */
  121. static void displayer_task(void *args) {
  122. int scroll_sleep = 0, timer_sleep;
  123. while (1) {
  124. // suspend ourselves if nothing to do
  125. if (displayer.state < DISPLAYER_ACTIVE) {
  126. if (displayer.state == DISPLAYER_IDLE) GDS_TextLine(display, 2, 0, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.string);
  127. vTaskSuspend(NULL);
  128. scroll_sleep = 0;
  129. GDS_ClearExt(display, true);
  130. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_UPDATE, displayer.header);
  131. } else if (displayer.refresh) {
  132. // little trick when switching master while in IDLE and missing it
  133. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.header);
  134. displayer.refresh = false;
  135. }
  136. // we have been waken up before our requested time
  137. if (scroll_sleep <= 10) {
  138. // something to scroll (or we'll wake-up every pause ms ... no big deal)
  139. if (*displayer.string && displayer.state == DISPLAYER_ACTIVE) {
  140. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  141. // need to work with local copies as we don't want to suspend caller
  142. int offset = -displayer.offset;
  143. char *string = strdup(displayer.string);
  144. scroll_sleep = displayer.offset ? displayer.speed : displayer.pause;
  145. displayer.offset = displayer.offset >= displayer.boundary ? 0 : (displayer.offset + min(displayer.by, displayer.boundary - displayer.offset));
  146. xSemaphoreGive(displayer.mutex);
  147. // now display using safe copies, can be lengthy
  148. GDS_TextLine(display, 2, offset, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, string);
  149. free(string);
  150. } else {
  151. scroll_sleep = DEFAULT_SLEEP;
  152. }
  153. }
  154. // handler elapsed track time
  155. if (displayer.timer && displayer.state == DISPLAYER_ACTIVE) {
  156. char counter[16];
  157. TickType_t tick = xTaskGetTickCount();
  158. uint32_t elapsed = (tick - displayer.tick) * portTICK_PERIOD_MS;
  159. if (elapsed >= 1000) {
  160. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  161. displayer.tick = tick;
  162. displayer.elapsed += elapsed / 1000;
  163. xSemaphoreGive(displayer.mutex);
  164. if (displayer.elapsed < 3600) snprintf(counter, 16, "%5u:%02u", displayer.elapsed / 60, displayer.elapsed % 60);
  165. else snprintf(counter, 16, "%2u:%02u:%02u", displayer.elapsed / 3600, (displayer.elapsed % 3600) / 60, displayer.elapsed % 60);
  166. GDS_TextLine(display, 1, GDS_TEXT_RIGHT, (GDS_TEXT_CLEAR | GDS_TEXT_CLEAR_EOL) | GDS_TEXT_UPDATE, counter);
  167. timer_sleep = 1000;
  168. } else timer_sleep = max(1000 - elapsed, 0);
  169. } else timer_sleep = DEFAULT_SLEEP;
  170. // then sleep the min amount of time
  171. int sleep = min(scroll_sleep, timer_sleep);
  172. ESP_LOGD(TAG, "timers s:%d t:%d", scroll_sleep, timer_sleep);
  173. scroll_sleep -= sleep;
  174. vTaskDelay(sleep / portTICK_PERIOD_MS);
  175. }
  176. }
  177. /****************************************************************************************
  178. *
  179. */
  180. void displayer_metadata(char *artist, char *album, char *title) {
  181. char *string = displayer.string, *p;
  182. int len = SCROLLABLE_SIZE;
  183. // need a display!
  184. if (!display) return;
  185. // just do title if there is no config set
  186. if (!displayer.metadata_config) {
  187. strncpy(displayer.string, title ? title : "", SCROLLABLE_SIZE);
  188. return;
  189. }
  190. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  191. // format metadata parameters and write them directly
  192. if ((p = strcasestr(displayer.metadata_config, "format")) != NULL) {
  193. char token[16], *q;
  194. int space = len;
  195. bool skip = false;
  196. displayer.string[0] = '\0';
  197. p = strchr(displayer.metadata_config, '=');
  198. while (p++) {
  199. // find token and copy what's after when reaching last one
  200. if (sscanf(p, "%*[^%%]%%%[^%]%%", token) < 0) {
  201. q = strchr(p, ',');
  202. strncat(string, p, q ? min(q - p, space) : space);
  203. break;
  204. }
  205. // copy what's before token (be safe)
  206. if ((q = strchr(p, '%')) == NULL) break;
  207. // skip whatever is after a token if this token is empty
  208. if (!skip) {
  209. strncat(string, p, min(q - p, space));
  210. space = len - strlen(string);
  211. }
  212. // then copy token's content
  213. if (!strncasecmp(q + 1, "artist", 6) && artist) strncat(string, p = artist, space);
  214. else if (!strncasecmp(q + 1, "album", 5) && album) strncat(string, p = album, space);
  215. else if (!strncasecmp(q + 1, "title", 5) && title) strncat(string, p = title, space);
  216. space = len - strlen(string);
  217. // flag to skip the data following an empty field
  218. if (*p) skip = false;
  219. else skip = true;
  220. // advance to next separator
  221. p = strchr(q + 1, '%');
  222. }
  223. } else {
  224. strncpy(string, title ? title : "", SCROLLABLE_SIZE);
  225. }
  226. // get optional scroll speed & pause
  227. if ((p = strcasestr(displayer.metadata_config, "speed")) != NULL) sscanf(p, "%*[^=]=%d", &displayer.speed);
  228. if ((p = strcasestr(displayer.metadata_config, "pause")) != NULL) sscanf(p, "%*[^=]=%d", &displayer.pause);
  229. displayer.offset = 0;
  230. utf8_decode(displayer.string);
  231. ESP_LOGI(TAG, "playing %s", displayer.string);
  232. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  233. xSemaphoreGive(displayer.mutex);
  234. }
  235. /****************************************************************************************
  236. *
  237. */
  238. void displayer_scroll(char *string, int speed, int pause) {
  239. // need a display!
  240. if (!display) return;
  241. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  242. if (speed) displayer.speed = speed;
  243. if (pause) displayer.pause = pause;
  244. displayer.offset = 0;
  245. strncpy(displayer.string, string, SCROLLABLE_SIZE);
  246. displayer.string[SCROLLABLE_SIZE] = '\0';
  247. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  248. xSemaphoreGive(displayer.mutex);
  249. }
  250. /****************************************************************************************
  251. *
  252. */
  253. void displayer_timer(enum displayer_time_e mode, int elapsed, int duration) {
  254. // need a display!
  255. if (!display) return;
  256. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  257. if (elapsed >= 0) displayer.elapsed = elapsed / 1000;
  258. if (duration >= 0) displayer.duration = duration / 1000;
  259. if (displayer.timer) displayer.tick = xTaskGetTickCount();
  260. xSemaphoreGive(displayer.mutex);
  261. }
  262. /****************************************************************************************
  263. * See above comment
  264. */
  265. void displayer_control(enum displayer_cmd_e cmd, ...) {
  266. va_list args;
  267. if (!display) return;
  268. va_start(args, cmd);
  269. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  270. switch(cmd) {
  271. case DISPLAYER_ACTIVATE: {
  272. char *header = va_arg(args, char*);
  273. strncpy(displayer.header, header, HEADER_SIZE);
  274. displayer.header[HEADER_SIZE] = '\0';
  275. displayer.state = DISPLAYER_ACTIVE;
  276. displayer.timer = false;
  277. displayer.refresh = true;
  278. displayer.string[0] = '\0';
  279. displayer.elapsed = displayer.duration = 0;
  280. displayer.offset = displayer.boundary = 0;
  281. display_bus(&displayer, DISPLAY_BUS_TAKE);
  282. vTaskResume(displayer.task);
  283. break;
  284. }
  285. case DISPLAYER_SUSPEND:
  286. // task will display the line 2 from beginning and suspend
  287. displayer.state = DISPLAYER_IDLE;
  288. display_bus(&displayer, DISPLAY_BUS_GIVE);
  289. break;
  290. case DISPLAYER_SHUTDOWN:
  291. // let the task self-suspend (we might be doing i2c_write)
  292. displayer.state = DISPLAYER_DOWN;
  293. display_bus(&displayer, DISPLAY_BUS_GIVE);
  294. break;
  295. case DISPLAYER_TIMER_RUN:
  296. if (!displayer.timer) {
  297. display_bus(&displayer, DISPLAY_BUS_TAKE);
  298. displayer.timer = true;
  299. displayer.tick = xTaskGetTickCount();
  300. }
  301. break;
  302. case DISPLAYER_TIMER_PAUSE:
  303. displayer.timer = false;
  304. break;
  305. default:
  306. break;
  307. }
  308. xSemaphoreGive(displayer.mutex);
  309. va_end(args);
  310. }