driver_SSD1306.c 14 KB

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