driver_SSD1306.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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 "ssd1306.h"
  27. #include "ssd1306_draw.h"
  28. #include "ssd1306_font.h"
  29. #include "ssd1306_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 SSD1306_display = { 0, 0,
  47. init, clear, set_font, on, brightness,
  48. text, line, stretch, update, draw, draw_cbr, NULL };
  49. // SSD1306 specific function
  50. static struct SSD1306_Device Display;
  51. static SSD1306_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 SSD1306_FontDef *font;
  75. } lines[MAX_LINES];
  76. /****************************************************************************************
  77. *
  78. */
  79. static bool init(char *config, char *welcome) {
  80. bool res = false;
  81. if (strstr(config, "I2C")) {
  82. int width = -1, height = -1, address = I2C_ADDRESS;
  83. char *p;
  84. ESP_LOGI(TAG, "Initializing I2C 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 ((p = strcasestr(config, "address")) != NULL) address = atoi(strchr(p, '=') + 1);
  89. if (width != -1 && height != -1) {
  90. SSD1306_I2CMasterInitDefault( i2c_system_port, -1, -1 ) ;
  91. SSD1306_I2CMasterAttachDisplayDefault( &Display, width, height, address, -1 );
  92. SSD1306_SetHFlip( &Display, strcasestr(config, "HFlip") ? true : false);
  93. SSD1306_SetVFlip( &Display, strcasestr(config, "VFlip") ? true : false);
  94. SSD1306_SetFont( &Display, &Font_droid_sans_fallback_15x17 );
  95. SSD1306_display.width = width;
  96. SSD1306_display.height = height;
  97. text(DISPLAY_FONT_MEDIUM, DISPLAY_CENTERED, DISPLAY_CLEAR | DISPLAY_UPDATE, welcome);
  98. ESP_LOGI(TAG, "Initialized I2C display %dx%d", width, height);
  99. res = true;
  100. } else {
  101. ESP_LOGI(TAG, "Cannot initialized I2C display %s [%dx%d]", config, width, height);
  102. }
  103. } else {
  104. ESP_LOGE(TAG, "Non-I2C display not supported. Display config %s", config);
  105. }
  106. return res;
  107. }
  108. /****************************************************************************************
  109. *
  110. */
  111. static void clear(void) {
  112. SSD1306_Clear( &Display, SSD_COLOR_BLACK );
  113. SSD1306_Update( &Display );
  114. }
  115. /****************************************************************************************
  116. * Set fonts for each line in text mode
  117. */
  118. static bool set_font(int num, enum display_font_e font, int space) {
  119. if (--num >= MAX_LINES) return false;
  120. switch(font) {
  121. case DISPLAY_FONT_LINE1:
  122. lines[num].font = &Font_line1_11x13;
  123. break;
  124. case DISPLAY_FONT_TINY:
  125. lines[num].font = &Font_droid_sans_fallback_11x13;
  126. break;
  127. case DISPLAY_FONT_SMALL:
  128. lines[num].font = &Font_droid_sans_mono_7x13;
  129. break;
  130. case DISPLAY_FONT_MEDIUM:
  131. lines[num].font = &Font_liberation_mono_9x15;
  132. break;
  133. case DISPLAY_FONT_LARGE:
  134. lines[num].font = &Font_VDS_Compensated15x22;
  135. break;
  136. case DISPLAY_FONT_HUGE:
  137. lines[num].font = &Font_droid_sans_fallback_24x28;
  138. break;
  139. case DISPLAY_FONT_SEGMENT:
  140. if (Display.Height == 32) lines[num].font = &Font_Tarable7Seg_16x32;
  141. else lines[num].font = &Font_Tarable7Seg_32x64;
  142. break;
  143. case DISPLAY_FONT_DEFAULT:
  144. default:
  145. lines[num].font = &Font_droid_sans_fallback_15x17;
  146. break;
  147. }
  148. // re-calculate lines absolute position
  149. lines[num].space = space;
  150. lines[0].y = lines[0].space;
  151. for (int i = 1; i <= num; i++) lines[i].y = lines[i-1].y + lines[i-1].font->Height + lines[i].space;
  152. ESP_LOGI(TAG, "adding line %u at %u (height:%u)", num + 1, lines[num].y, lines[num].font->Height);
  153. if (lines[num].y + lines[num].font->Height > Display.Height) {
  154. ESP_LOGW(TAG, "line does not fit display");
  155. return false;
  156. }
  157. return true;
  158. }
  159. /****************************************************************************************
  160. *
  161. */
  162. static bool line(int num, int x, int attribute, char *text) {
  163. int width;
  164. // counting 1..n
  165. num--;
  166. // always horizontal mode for text display
  167. if (AddressMode != AddressMode_Horizontal) {
  168. AddressMode = AddressMode_Horizontal;
  169. SSD1306_SetDisplayAddressMode( &Display, AddressMode );
  170. }
  171. SSD1306_SetFont( &Display, lines[num].font );
  172. if (attribute & DISPLAY_MONOSPACE) SSD1306_FontForceMonospace( &Display, true );
  173. width = SSD1306_FontMeasureString( &Display, text );
  174. // adjusting position, erase only EoL for rigth-justified
  175. if (x == DISPLAY_RIGHT) x = Display.Width - width - 1;
  176. else if (x == DISPLAY_CENTER) x = (Display.Width - width) / 2;
  177. // erase if requested
  178. if (attribute & DISPLAY_CLEAR) {
  179. for (int c = (attribute & DISPLAY_ONLY_EOL) ? x : 0; c < Display.Width; c++)
  180. for (int y = lines[num].y; y < lines[num].y + lines[num].font->Height; y++)
  181. SSD1306_DrawPixelFast( &Display, c, y, SSD_COLOR_BLACK );
  182. }
  183. SSD1306_FontDrawString( &Display, x, lines[num].y, text, SSD_COLOR_WHITE );
  184. ESP_LOGD(TAG, "displaying %s line %u (x:%d, attr:%u)", text, num+1, x, attribute);
  185. // update whole display if requested
  186. if (attribute & DISPLAY_UPDATE) SSD1306_Update( &Display );
  187. return width + x < Display.Width;
  188. }
  189. /****************************************************************************************
  190. * Try to align string for better scrolling visual. there is probably much better to do
  191. */
  192. static int stretch(int num, char *string, int max) {
  193. char space[] = " ";
  194. int len = strlen(string), extra = 0, boundary;
  195. num--;
  196. // we might already fit
  197. SSD1306_SetFont( &Display, lines[num].font );
  198. if (SSD1306_FontMeasureString( &Display, string ) <= Display.Width) return 0;
  199. // add some space for better visual
  200. strncat(string, space, max-len);
  201. string[max] = '\0';
  202. len = strlen(string);
  203. // mark the end of the extended string
  204. boundary = SSD1306_FontMeasureString( &Display, string );
  205. // add a full display width
  206. while (len < max && SSD1306_FontMeasureString( &Display, string ) - boundary < Display.Width) {
  207. string[len++] = string[extra++];
  208. string[len] = '\0';
  209. }
  210. return boundary;
  211. }
  212. /****************************************************************************************
  213. *
  214. */
  215. static void text(enum display_font_e font, enum display_pos_e pos, int attribute, char *text, ...) {
  216. va_list args;
  217. va_start(args, text);
  218. TextAnchor Anchor = TextAnchor_Center;
  219. if (attribute & DISPLAY_CLEAR) SSD1306_Clear( &Display, SSD_COLOR_BLACK );
  220. if (!text) return;
  221. switch(font) {
  222. case DISPLAY_FONT_LINE1:
  223. SSD1306_SetFont( &Display, &Font_line1_11x13 );
  224. break;
  225. case DISPLAY_FONT_TINY:
  226. SSD1306_SetFont( &Display, &Font_droid_sans_fallback_11x13 );
  227. break;
  228. case DISPLAY_FONT_SMALL:
  229. SSD1306_SetFont( &Display, &Font_droid_sans_mono_7x13 );
  230. break;
  231. case DISPLAY_FONT_LARGE:
  232. SSD1306_SetFont( &Display, &Font_VDS_Compensated15x22 );
  233. break;
  234. case DISPLAY_FONT_HUGE:
  235. SSD1306_SetFont( &Display, &Font_droid_sans_fallback_24x28 );
  236. break;
  237. case DISPLAY_FONT_MEDIUM:
  238. SSD1306_SetFont( &Display, &Font_liberation_mono_9x15 );
  239. break;
  240. case DISPLAY_FONT_SEGMENT:
  241. if (Display.Height == 32) SSD1306_SetFont( &Display, &Font_Tarable7Seg_16x32 );
  242. else SSD1306_SetFont( &Display, &Font_Tarable7Seg_32x64 );
  243. break;
  244. case DISPLAY_FONT_DEFAULT:
  245. default:
  246. SSD1306_SetFont( &Display, &Font_droid_sans_fallback_15x17 );
  247. break;
  248. }
  249. switch(pos) {
  250. case DISPLAY_TOP_LEFT:
  251. default:
  252. Anchor = TextAnchor_NorthWest;
  253. break;
  254. case DISPLAY_MIDDLE_LEFT:
  255. Anchor = TextAnchor_West;
  256. break;
  257. case DISPLAY_BOTTOM_LEFT:
  258. Anchor = TextAnchor_SouthWest;
  259. break;
  260. case DISPLAY_CENTERED:
  261. Anchor = TextAnchor_Center;
  262. break;
  263. }
  264. ESP_LOGD(TAG, "SSDD1306 displaying %s at %u with attribute %u", text, Anchor, attribute);
  265. if (AddressMode != AddressMode_Horizontal) {
  266. AddressMode = AddressMode_Horizontal;
  267. SSD1306_SetDisplayAddressMode( &Display, AddressMode );
  268. }
  269. SSD1306_FontDrawAnchoredString( &Display, Anchor, text, SSD_COLOR_WHITE );
  270. if (attribute & DISPLAY_UPDATE) SSD1306_Update( &Display );
  271. va_end(args);
  272. }
  273. /****************************************************************************************
  274. * Process graphic display data from column-oriented bytes, MSbit first
  275. */
  276. static void draw_cbr(u8_t *data, int height) {
  277. #ifndef FULL_REFRESH
  278. // force addressing mode by rows
  279. if (AddressMode != AddressMode_Horizontal) {
  280. AddressMode = AddressMode_Horizontal;
  281. SSD1306_SetDisplayAddressMode( &Display, AddressMode );
  282. }
  283. // try to minimize I2C traffic which is very slow
  284. int rows = (height ? height : Display.Height) / 8;
  285. for (int r = 0; r < rows; r++) {
  286. uint8_t first = 0, last;
  287. uint8_t *optr = Display.Framebuffer + r*Display.Width, *iptr = data + r;
  288. // row/col swap, frame buffer comparison and bit-reversing
  289. for (int c = 0; c < Display.Width; c++) {
  290. u8_t byte = BitReverseTable256[*iptr];
  291. if (byte != *optr) {
  292. if (!first) first = c + 1;
  293. last = c ;
  294. }
  295. *optr++ = byte;
  296. iptr += rows;
  297. }
  298. // now update the display by "byte rows"
  299. if (first--) {
  300. SSD1306_SetColumnAddress( &Display, first, last );
  301. SSD1306_SetPageAddress( &Display, r, r);
  302. SSD1306_WriteRawData( &Display, Display.Framebuffer + r*Display.Width + first, last - first + 1);
  303. }
  304. }
  305. #else
  306. if (!height) height = Display->Height;
  307. // copy data in frame buffer
  308. for (int c = 0; c < Display.Width; c++)
  309. for (int r = 0; r < height / 8; r++)
  310. Display.Framebuffer[c*Display.Height/8 + r] = BitReverseTable256[data[c*height/8 +r]];
  311. SSD1306_SetPageAddress( &Display, 0, height / 8 - 1);
  312. // force addressing mode by columns
  313. if (AddressMode != AddressMode_Vertical) {
  314. AddressMode = AddressMode_Vertical;
  315. SSD1306_SetDisplayAddressMode( &Display, AddressMode );
  316. }
  317. SSD1306_WriteRawData(&Display, Display.Framebuffer, Display.Width * Display.Height/8);
  318. #endif
  319. }
  320. /****************************************************************************************
  321. * Process graphic display data MSBit first
  322. * WARNING: this has not been tested yet
  323. */
  324. static void draw(int x1, int y1, int x2, int y2, bool by_column, u8_t *data) {
  325. if (y1 % 8 || y2 % 8) {
  326. ESP_LOGW(TAG, "must write rows on byte boundaries (%u,%u) to (%u,%u)", x1, y1, x2, y2);
  327. return;
  328. }
  329. // default end point to display size
  330. if (x2 == -1) x2 = Display.Width - 1;
  331. if (y2 == -1) y2 = Display.Height - 1;
  332. // set addressing mode to match data
  333. if (by_column) {
  334. if (AddressMode != AddressMode_Vertical) {
  335. AddressMode = AddressMode_Vertical;
  336. SSD1306_SetDisplayAddressMode( &Display, AddressMode );
  337. }
  338. // copy the window and do row/col exchange
  339. for (int r = y1/8; r <= y2/8; r++) {
  340. uint8_t *optr = Display.Framebuffer + r*Display.Width + x1, *iptr = data + r;
  341. for (int c = x1; c <= x2; c++) {
  342. *optr++ = *iptr;
  343. iptr += (y2-y1)/8 + 1;
  344. }
  345. }
  346. } else {
  347. // just copy the window inside the frame buffer
  348. for (int r = y1/8; r <= y2/8; r++) {
  349. uint8_t *optr = Display.Framebuffer + r*Display.Width + x1, *iptr = data + r*(x2-x1+1);
  350. for (int c = x1; c <= x2; c++) *optr++ = *iptr++;
  351. }
  352. }
  353. SSD1306_SetColumnAddress( &Display, x1, x2);
  354. SSD1306_SetPageAddress( &Display, y1/8, y2/8);
  355. SSD1306_WriteRawData( &Display, data, (x2-x1 + 1) * ((y2-y1)/8 + 1));
  356. }
  357. /****************************************************************************************
  358. * Brightness
  359. */
  360. static void brightness(u8_t level) {
  361. SSD1306_DisplayOn( &Display );
  362. SSD1306_SetContrast( &Display, (uint8_t) level);
  363. }
  364. /****************************************************************************************
  365. * Display On/Off
  366. */
  367. static void on(bool state) {
  368. if (state) SSD1306_DisplayOn( &Display );
  369. else SSD1306_DisplayOff( &Display );
  370. }
  371. /****************************************************************************************
  372. * Update
  373. */
  374. static void update(void) {
  375. SSD1306_Update( &Display );
  376. }