driver_SSD13x6.c 15 KB

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