driver_SSD13x6.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /*
  2. * (c) 2004,2006 Richard Titmuss for SlimProtoLib
  3. * (c) Philippe G. 2019, philippe_44@outlook.com
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. #include <string.h>
  20. #include <ctype.h>
  21. #include <stdint.h>
  22. #include <arpa/inet.h>
  23. #include "esp_log.h"
  24. #include "display.h"
  25. #include "globdefs.h"
  26. #include "ssd13x6.h"
  27. #include "ssd13x6_draw.h"
  28. #include "ssd13x6_font.h"
  29. #include "ssd13x6_default_if.h"
  30. #define I2C_ADDRESS 0x3C
  31. static const char *TAG = "display";
  32. #define max(a,b) (((a) > (b)) ? (a) : (b))
  33. // handlers
  34. static bool init(char *config, char *welcome);
  35. static void clear(bool full, ...);
  36. static bool set_font(int num, enum display_font_e font, int space);
  37. static void text(enum display_font_e font, enum display_pos_e pos, int attribute, char *text, ...);
  38. static bool line(int num, int x, int attribute, char *text);
  39. static int stretch(int num, char *string, int max);
  40. static void draw_cbr(u8_t *data, int width, int height);
  41. static void draw_raw(int x1, int y1, int x2, int y2, bool by_column, bool MSb, u8_t *data);
  42. static void draw_line(int x1, int y1, int x2, int y2);
  43. static void draw_box( int x1, int y1, int x2, int y2, bool fill);
  44. static void brightness(u8_t level);
  45. static void on(bool state);
  46. static void update(void);
  47. // display structure for others to use
  48. struct display_s SSD13x6_display = { 0, 0, true,
  49. init, clear, set_font, on, brightness,
  50. text, line, stretch, update, draw_raw, draw_cbr, draw_line, draw_box };
  51. // SSD13x6 specific function
  52. static struct SSD13x6_Device Display;
  53. static const unsigned char BitReverseTable256[] =
  54. {
  55. 0x00, 0x80, 0x40, 0xC0, 0x20, 0xA0, 0x60, 0xE0, 0x10, 0x90, 0x50, 0xD0, 0x30, 0xB0, 0x70, 0xF0,
  56. 0x08, 0x88, 0x48, 0xC8, 0x28, 0xA8, 0x68, 0xE8, 0x18, 0x98, 0x58, 0xD8, 0x38, 0xB8, 0x78, 0xF8,
  57. 0x04, 0x84, 0x44, 0xC4, 0x24, 0xA4, 0x64, 0xE4, 0x14, 0x94, 0x54, 0xD4, 0x34, 0xB4, 0x74, 0xF4,
  58. 0x0C, 0x8C, 0x4C, 0xCC, 0x2C, 0xAC, 0x6C, 0xEC, 0x1C, 0x9C, 0x5C, 0xDC, 0x3C, 0xBC, 0x7C, 0xFC,
  59. 0x02, 0x82, 0x42, 0xC2, 0x22, 0xA2, 0x62, 0xE2, 0x12, 0x92, 0x52, 0xD2, 0x32, 0xB2, 0x72, 0xF2,
  60. 0x0A, 0x8A, 0x4A, 0xCA, 0x2A, 0xAA, 0x6A, 0xEA, 0x1A, 0x9A, 0x5A, 0xDA, 0x3A, 0xBA, 0x7A, 0xFA,
  61. 0x06, 0x86, 0x46, 0xC6, 0x26, 0xA6, 0x66, 0xE6, 0x16, 0x96, 0x56, 0xD6, 0x36, 0xB6, 0x76, 0xF6,
  62. 0x0E, 0x8E, 0x4E, 0xCE, 0x2E, 0xAE, 0x6E, 0xEE, 0x1E, 0x9E, 0x5E, 0xDE, 0x3E, 0xBE, 0x7E, 0xFE,
  63. 0x01, 0x81, 0x41, 0xC1, 0x21, 0xA1, 0x61, 0xE1, 0x11, 0x91, 0x51, 0xD1, 0x31, 0xB1, 0x71, 0xF1,
  64. 0x09, 0x89, 0x49, 0xC9, 0x29, 0xA9, 0x69, 0xE9, 0x19, 0x99, 0x59, 0xD9, 0x39, 0xB9, 0x79, 0xF9,
  65. 0x05, 0x85, 0x45, 0xC5, 0x25, 0xA5, 0x65, 0xE5, 0x15, 0x95, 0x55, 0xD5, 0x35, 0xB5, 0x75, 0xF5,
  66. 0x0D, 0x8D, 0x4D, 0xCD, 0x2D, 0xAD, 0x6D, 0xED, 0x1D, 0x9D, 0x5D, 0xDD, 0x3D, 0xBD, 0x7D, 0xFD,
  67. 0x03, 0x83, 0x43, 0xC3, 0x23, 0xA3, 0x63, 0xE3, 0x13, 0x93, 0x53, 0xD3, 0x33, 0xB3, 0x73, 0xF3,
  68. 0x0B, 0x8B, 0x4B, 0xCB, 0x2B, 0xAB, 0x6B, 0xEB, 0x1B, 0x9B, 0x5B, 0xDB, 0x3B, 0xBB, 0x7B, 0xFB,
  69. 0x07, 0x87, 0x47, 0xC7, 0x27, 0xA7, 0x67, 0xE7, 0x17, 0x97, 0x57, 0xD7, 0x37, 0xB7, 0x77, 0xF7,
  70. 0x0F, 0x8F, 0x4F, 0xCF, 0x2F, 0xAF, 0x6F, 0xEF, 0x1F, 0x9F, 0x5F, 0xDF, 0x3F, 0xBF, 0x7F, 0xFF
  71. };
  72. #define MAX_LINES 8
  73. static struct {
  74. int y, space;
  75. const struct SSD13x6_FontDef *font;
  76. } lines[MAX_LINES];
  77. /****************************************************************************************
  78. *
  79. */
  80. static bool init(char *config, char *welcome) {
  81. bool res = true;
  82. int width = -1, height = -1, model = SSD1306;
  83. char *p;
  84. ESP_LOGI(TAG, "Initializing display with config: %s",config);
  85. // no time for smart parsing - this is for tinkerers
  86. if ((p = strcasestr(config, "width")) != NULL) width = atoi(strchr(p, '=') + 1);
  87. if ((p = strcasestr(config, "height")) != NULL) height = atoi(strchr(p, '=') + 1);
  88. if (strcasestr(config, "ssd1326")) model = SSD1326;
  89. else if (strcasestr(config, "sh1106")) model = SH1106;
  90. if (width == -1 || height == -1) {
  91. ESP_LOGW(TAG, "No display configured %s [%d x %d]", config, width, height);
  92. return false;
  93. }
  94. if (strstr(config, "I2C") && i2c_system_port != -1) {
  95. int address = I2C_ADDRESS;
  96. if ((p = strcasestr(config, "address")) != NULL) address = atoi(strchr(p, '=') + 1);
  97. SSD13x6_I2CMasterInitDefault( i2c_system_port, -1, -1 ) ;
  98. SSD13x6_I2CMasterAttachDisplayDefault( &Display, model, width, height, address, -1 );
  99. SSD13x6_SetHFlip( &Display, strcasestr(config, "HFlip") ? true : false);
  100. SSD13x6_SetVFlip( &Display, strcasestr(config, "VFlip") ? true : false);
  101. SSD13x6_SetFont( &Display, &Font_droid_sans_fallback_15x17 );
  102. SSD13x6_display.width = width;
  103. SSD13x6_display.height = height;
  104. text(DISPLAY_FONT_MEDIUM, DISPLAY_CENTERED, DISPLAY_CLEAR | DISPLAY_UPDATE, welcome);
  105. ESP_LOGI(TAG, "Display is I2C on port %u", address);
  106. } else if (strstr(config, "SPI") && spi_system_host != -1) {
  107. int CS_pin = -1, speed = 0;
  108. if ((p = strcasestr(config, "cs")) != NULL) CS_pin = atoi(strchr(p, '=') + 1);
  109. if ((p = strcasestr(config, "speed")) != NULL) speed = atoi(strchr(p, '=') + 1);
  110. SSD13x6_SPIMasterInitDefault( spi_system_host, spi_system_dc_gpio );
  111. SSD13x6_SPIMasterAttachDisplayDefault( &Display, model, width, height, CS_pin, -1, speed );
  112. SSD13x6_SetFont( &Display, &Font_droid_sans_fallback_15x17 );
  113. SSD13x6_display.width = width;
  114. SSD13x6_display.height = height;
  115. text(DISPLAY_FONT_MEDIUM, DISPLAY_CENTERED, DISPLAY_CLEAR | DISPLAY_UPDATE, welcome);
  116. ESP_LOGI(TAG, "Display is SPI host %u with cs:%d", spi_system_host, CS_pin);
  117. } else {
  118. res = false;
  119. ESP_LOGW(TAG, "Unknown display type or no serial interface configured");
  120. }
  121. return res;
  122. }
  123. /****************************************************************************************
  124. *
  125. */
  126. static void clear(bool full, ...) {
  127. bool commit = true;
  128. if (full) {
  129. SSD13x6_Clear( &Display, SSD_COLOR_BLACK );
  130. } else {
  131. va_list args;
  132. va_start(args, full);
  133. commit = va_arg(args, int);
  134. int x1 = va_arg(args, int), y1 = va_arg(args, int), x2 = va_arg(args, int), y2 = va_arg(args, int);
  135. if (x2 < 0) x2 = display->width - 1;
  136. if (y2 < 0) y2 = display->height - 1;
  137. SSD13x6_ClearWindow( &Display, x1, y1, x2, y2, SSD_COLOR_BLACK );
  138. va_end(args);
  139. }
  140. SSD13x6_display.dirty = true;
  141. if (commit) update();
  142. }
  143. /****************************************************************************************
  144. * Set fonts for each line in text mode
  145. */
  146. static bool set_font(int num, enum display_font_e font, int space) {
  147. if (--num >= MAX_LINES) return false;
  148. switch(font) {
  149. case DISPLAY_FONT_LINE_1:
  150. lines[num].font = &Font_line_1;
  151. break;
  152. case DISPLAY_FONT_LINE_2:
  153. lines[num].font = &Font_line_2;
  154. break;
  155. case DISPLAY_FONT_SMALL:
  156. lines[num].font = &Font_droid_sans_fallback_11x13;
  157. break;
  158. case DISPLAY_FONT_MEDIUM:
  159. case DISPLAY_FONT_DEFAULT:
  160. default:
  161. lines[num].font = &Font_droid_sans_fallback_15x17;
  162. break;
  163. case DISPLAY_FONT_LARGE:
  164. lines[num].font = &Font_droid_sans_fallback_24x28;
  165. break;
  166. case DISPLAY_FONT_SEGMENT:
  167. if (Display.Height == 32) lines[num].font = &Font_Tarable7Seg_16x32;
  168. else lines[num].font = &Font_Tarable7Seg_32x64;
  169. break;
  170. }
  171. // re-calculate lines absolute position
  172. lines[num].space = space;
  173. lines[0].y = lines[0].space;
  174. for (int i = 1; i <= num; i++) lines[i].y = lines[i-1].y + lines[i-1].font->Height + lines[i].space;
  175. ESP_LOGI(TAG, "Adding line %u at %d (height:%u)", num + 1, lines[num].y, lines[num].font->Height);
  176. if (lines[num].y + lines[num].font->Height > Display.Height) {
  177. ESP_LOGW(TAG, "line does not fit display");
  178. return false;
  179. }
  180. return true;
  181. }
  182. /****************************************************************************************
  183. *
  184. */
  185. static bool line(int num, int x, int attribute, char *text) {
  186. int width;
  187. // counting 1..n
  188. num--;
  189. SSD13x6_SetFont( &Display, lines[num].font );
  190. if (attribute & DISPLAY_MONOSPACE) SSD13x6_FontForceMonospace( &Display, true );
  191. width = SSD13x6_FontMeasureString( &Display, text );
  192. // adjusting position, erase only EoL for rigth-justified
  193. if (x == DISPLAY_RIGHT) x = Display.Width - width - 1;
  194. else if (x == DISPLAY_CENTER) x = (Display.Width - width) / 2;
  195. // erase if requested
  196. if (attribute & DISPLAY_CLEAR) {
  197. int y_min = max(0, lines[num].y), y_max = max(0, lines[num].y + lines[num].font->Height);
  198. for (int c = (attribute & DISPLAY_ONLY_EOL) ? x : 0; c < Display.Width; c++)
  199. for (int y = y_min; y < y_max; y++)
  200. SSD13x6_DrawPixelFast( &Display, c, y, SSD_COLOR_BLACK );
  201. }
  202. SSD13x6_FontDrawString( &Display, x, lines[num].y, text, SSD_COLOR_WHITE );
  203. ESP_LOGD(TAG, "displaying %s line %u (x:%d, attr:%u)", text, num+1, x, attribute);
  204. // update whole display if requested
  205. SSD13x6_display.dirty = true;
  206. if (attribute & DISPLAY_UPDATE) update();
  207. return width + x < Display.Width;
  208. }
  209. /****************************************************************************************
  210. * Try to align string for better scrolling visual. there is probably much better to do
  211. */
  212. static int stretch(int num, char *string, int max) {
  213. char space[] = " ";
  214. int len = strlen(string), extra = 0, boundary;
  215. num--;
  216. // we might already fit
  217. SSD13x6_SetFont( &Display, lines[num].font );
  218. if (SSD13x6_FontMeasureString( &Display, string ) <= Display.Width) return 0;
  219. // add some space for better visual
  220. strncat(string, space, max-len);
  221. string[max] = '\0';
  222. len = strlen(string);
  223. // mark the end of the extended string
  224. boundary = SSD13x6_FontMeasureString( &Display, string );
  225. // add a full display width
  226. while (len < max && SSD13x6_FontMeasureString( &Display, string ) - boundary < Display.Width) {
  227. string[len++] = string[extra++];
  228. string[len] = '\0';
  229. }
  230. return boundary;
  231. }
  232. /****************************************************************************************
  233. *
  234. */
  235. static void text(enum display_font_e font, enum display_pos_e pos, int attribute, char *text, ...) {
  236. va_list args;
  237. TextAnchor Anchor = TextAnchor_Center;
  238. if (attribute & DISPLAY_CLEAR) SSD13x6_Clear( &Display, SSD_COLOR_BLACK );
  239. if (!text) return;
  240. va_start(args, text);
  241. switch(font) {
  242. case DISPLAY_FONT_LINE_1:
  243. SSD13x6_SetFont( &Display, &Font_line_1 );
  244. break;
  245. case DISPLAY_FONT_LINE_2:
  246. SSD13x6_SetFont( &Display, &Font_line_2 );
  247. break;
  248. case DISPLAY_FONT_SMALL:
  249. SSD13x6_SetFont( &Display, &Font_droid_sans_fallback_11x13 );
  250. break;
  251. case DISPLAY_FONT_MEDIUM:
  252. case DISPLAY_FONT_DEFAULT:
  253. default:
  254. SSD13x6_SetFont( &Display, &Font_droid_sans_fallback_15x17 );
  255. break;
  256. case DISPLAY_FONT_LARGE:
  257. SSD13x6_SetFont( &Display, &Font_droid_sans_fallback_24x28 );
  258. break;
  259. case DISPLAY_FONT_SEGMENT:
  260. if (Display.Height == 32) SSD13x6_SetFont( &Display, &Font_Tarable7Seg_16x32 );
  261. else SSD13x6_SetFont( &Display, &Font_Tarable7Seg_32x64 );
  262. break;
  263. }
  264. switch(pos) {
  265. case DISPLAY_TOP_LEFT:
  266. default:
  267. Anchor = TextAnchor_NorthWest;
  268. break;
  269. case DISPLAY_MIDDLE_LEFT:
  270. Anchor = TextAnchor_West;
  271. break;
  272. case DISPLAY_BOTTOM_LEFT:
  273. Anchor = TextAnchor_SouthWest;
  274. break;
  275. case DISPLAY_CENTERED:
  276. Anchor = TextAnchor_Center;
  277. break;
  278. }
  279. ESP_LOGD(TAG, "SSDD13x6 displaying %s at %u with attribute %u", text, Anchor, attribute);
  280. SSD13x6_FontDrawAnchoredString( &Display, Anchor, text, SSD_COLOR_WHITE );
  281. SSD13x6_display.dirty = true;
  282. if (attribute & DISPLAY_UPDATE) update();
  283. va_end(args);
  284. }
  285. /****************************************************************************************
  286. * Process graphic display data from column-oriented data (MSbit first)
  287. */
  288. static void draw_cbr(u8_t *data, int width, int height) {
  289. if (!height) height = Display.Height;
  290. if (!width) width = Display.Width;
  291. // need to do row/col swap and bit-reverse
  292. int rows = height / 8;
  293. for (int r = 0; r < rows; r++) {
  294. uint8_t *optr = Display.Framebuffer + r*Display.Width, *iptr = data + r;
  295. for (int c = width; --c >= 0;) {
  296. *optr++ = BitReverseTable256[*iptr];;
  297. iptr += rows;
  298. }
  299. }
  300. SSD13x6_display.dirty = true;
  301. }
  302. /****************************************************************************************
  303. * Process graphic display data MSBit first
  304. * WARNING: this has not been tested yet
  305. */
  306. static void draw_raw(int x1, int y1, int x2, int y2, bool by_column, bool MSb, u8_t *data) {
  307. // default end point to display size
  308. if (x2 == -1) x2 = Display.Width - 1;
  309. if (y2 == -1) y2 = Display.Height - 1;
  310. display->dirty = true;
  311. // not a boundary draw
  312. if (y1 % 8 || y2 % 8 || x1 % 8 | x2 % 8) {
  313. ESP_LOGW(TAG, "can't write on non cols/rows boundaries for now");
  314. } else {
  315. // set addressing mode to match data
  316. if (by_column) {
  317. // copy the window and do row/col exchange
  318. for (int r = y1/8; r <= y2/8; r++) {
  319. uint8_t *optr = Display.Framebuffer + r*Display.Width + x1, *iptr = data + r;
  320. for (int c = x1; c <= x2; c++) {
  321. *optr++ = MSb ? BitReverseTable256[*iptr] : *iptr;
  322. iptr += (y2-y1)/8 + 1;
  323. }
  324. }
  325. } else {
  326. // just copy the window inside the frame buffer
  327. for (int r = y1/8; r <= y2/8; r++) {
  328. uint8_t *optr = Display.Framebuffer + r*Display.Width + x1, *iptr = data + r*(x2-x1+1);
  329. for (int c = x1; c <= x2; c++) *optr++ = *iptr++;
  330. }
  331. }
  332. }
  333. }
  334. /****************************************************************************************
  335. * Draw line
  336. */
  337. static void draw_line( int x1, int y1, int x2, int y2) {
  338. SSD13x6_DrawLine( &Display, x1, y1, x2, y2, SSD_COLOR_WHITE );
  339. SSD13x6_display.dirty = true;
  340. }
  341. /****************************************************************************************
  342. * Draw Box
  343. */
  344. static void draw_box( int x1, int y1, int x2, int y2, bool fill) {
  345. SSD13x6_DrawBox( &Display, x1, y1, x2, y2, SSD_COLOR_WHITE, fill );
  346. SSD13x6_display.dirty = true;
  347. }
  348. /****************************************************************************************
  349. * Brightness
  350. */
  351. static void brightness(u8_t level) {
  352. SSD13x6_DisplayOn( &Display );
  353. SSD13x6_SetContrast( &Display, (uint8_t) level);
  354. }
  355. /****************************************************************************************
  356. * Display On/Off
  357. */
  358. static void on(bool state) {
  359. if (state) SSD13x6_DisplayOn( &Display );
  360. else SSD13x6_DisplayOff( &Display );
  361. }
  362. /****************************************************************************************
  363. * Update
  364. */
  365. static void update(void) {
  366. if (SSD13x6_display.dirty) SSD13x6_Update( &Display );
  367. SSD13x6_display.dirty = false;
  368. }