You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

321 lines
17 KiB

  1. # OLED Driver
  2. ## Supported Hardware
  3. OLED modules using SSD1306 or SH1106 driver ICs, communicating over I2C.
  4. Tested combinations:
  5. |IC |Size |Platform|Notes |
  6. |---------|------|--------|------------------------|
  7. |SSD1306 |128x32|AVR |Primary support |
  8. |SSD1306 |128x64|AVR |Verified working |
  9. |SSD1306 |128x32|Arm | |
  10. |SH1106 |128x64|AVR |No rotation or scrolling|
  11. Hardware configurations using Arm-based microcontrollers or different sizes of OLED modules may be compatible, but are untested.
  12. !> Warning: This OLED driver currently uses the new i2c_master driver from Split Common code. If your split keyboard uses I2C to communicate between sides, this driver could cause an address conflict (serial is fine). Please contact your keyboard vendor and ask them to migrate to the latest Split Common code to fix this. In addition, the display timeout system to reduce OLED burn-in also uses Split Common to detect keypresses, so you will need to implement custom timeout logic for non-Split Common keyboards.
  13. ## Usage
  14. To enable the OLED feature, there are three steps. First, when compiling your keyboard, you'll need to add the following to your `rules.mk`:
  15. ```make
  16. OLED_DRIVER_ENABLE = yes
  17. ```
  18. Then in your `keymap.c` file, implement the OLED task call. This example assumes your keymap has three layers named `_QWERTY`, `_FN` and `_ADJ`:
  19. ```c
  20. #ifdef OLED_DRIVER_ENABLE
  21. void oled_task_user(void) {
  22. // Host Keyboard Layer Status
  23. oled_write_P(PSTR("Layer: "), false);
  24. switch (get_highest_layer(layer_state)) {
  25. case _QWERTY:
  26. oled_write_P(PSTR("Default\n"), false);
  27. break;
  28. case _FN:
  29. oled_write_P(PSTR("FN\n"), false);
  30. break;
  31. case _ADJ:
  32. oled_write_P(PSTR("ADJ\n"), false);
  33. break;
  34. default:
  35. // Or use the write_ln shortcut over adding '\n' to the end of your string
  36. oled_write_ln_P(PSTR("Undefined"), false);
  37. }
  38. // Host Keyboard LED Status
  39. led_t led_state = host_keyboard_led_state();
  40. oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
  41. oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
  42. oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
  43. }
  44. #endif
  45. ```
  46. ## Logo Example
  47. In the default font, certain ranges of characters are reserved for a QMK logo. To render this logo to the OLED screen, use the following code example:
  48. ```c
  49. static void render_logo(void) {
  50. static const char PROGMEM qmk_logo[] = {
  51. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x8B, 0x8C, 0x8D, 0x8E, 0x8F, 0x90, 0x91, 0x92, 0x93, 0x94,
  52. 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF, 0xB0, 0xB1, 0xB2, 0xB3, 0xB4,
  53. 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF, 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0x00
  54. };
  55. oled_write_P(qmk_logo, false);
  56. }
  57. ```
  58. ## Other Examples
  59. In split keyboards, it is very common to have two OLED displays that each render different content and are oriented or flipped differently. You can do this by switching which content to render by using the return value from `is_keyboard_master()` or `is_keyboard_left()` found in `split_util.h`, e.g:
  60. ```c
  61. #ifdef OLED_DRIVER_ENABLE
  62. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  63. if (!is_keyboard_master()) {
  64. return OLED_ROTATION_180; // flips the display 180 degrees if offhand
  65. }
  66. return rotation;
  67. }
  68. void oled_task_user(void) {
  69. if (is_keyboard_master()) {
  70. render_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)
  71. } else {
  72. render_logo(); // Renders a static logo
  73. oled_scroll_left(); // Turns on scrolling
  74. }
  75. }
  76. #endif
  77. ```
  78. ## Basic Configuration
  79. |Define |Default |Description |
  80. |---------------------------|-----------------|--------------------------------------------------------------------------------------------------------------------------|
  81. |`OLED_DISPLAY_ADDRESS` |`0x3C` |The i2c address of the OLED Display |
  82. |`OLED_FONT_H` |`"glcdfont.c"` |The font code file to use for custom fonts |
  83. |`OLED_FONT_START` |`0` |The starting characer index for custom fonts |
  84. |`OLED_FONT_END` |`223` |The ending characer index for custom fonts |
  85. |`OLED_FONT_WIDTH` |`6` |The font width |
  86. |`OLED_FONT_HEIGHT` |`8` |The font height (untested) |
  87. |`OLED_TIMEOUT` |`60000` |Turns off the OLED screen after 60000ms of keyboard inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. |
  88. |`OLED_SCROLL_TIMEOUT` |`0` |Scrolls the OLED screen after 0ms of OLED inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. |
  89. |`OLED_SCROLL_TIMEOUT_RIGHT`|*Not defined* |Scroll timeout direction is right when defined, left when undefined. |
  90. |`OLED_IC` |`OLED_IC_SSD1306`|Set to `OLED_IC_SH1106` if you're using the SH1106 OLED controller. |
  91. |`OLED_COLUMN_OFFSET` |`0` |(SH1106 only.) Shift output to the right this many pixels.<br />Useful for 128x64 displays centered on a 132x64 SH1106 IC.|
  92. ## 128x64 & Custom sized OLED Displays
  93. The default display size for this feature is 128x32 and all necessary defines are precalculated with that in mind. We have added a define, `OLED_DISPLAY_128X64`, to switch all the values to be used in a 128x64 display, as well as added a custom define, `OLED_DISPLAY_CUSTOM`, that allows you to provide the necessary values to the driver.
  94. |Define |Default |Description |
  95. |---------------------|---------------|----------------------------------------------------------------------------------------------------------------------------------------|
  96. |`OLED_DISPLAY_128X64`|*Not defined* |Changes the display defines for use with 128x64 displays. |
  97. |`OLED_DISPLAY_CUSTOM`|*Not defined* |Changes the display defines for use with custom displays.<br>Requires user to implement the below defines. |
  98. |`OLED_DISPLAY_WIDTH` |`128` |The width of the OLED display. |
  99. |`OLED_DISPLAY_HEIGHT`|`32` |The height of the OLED display. |
  100. |`OLED_MATRIX_SIZE` |`512` |The local buffer size to allocate.<br>`(OLED_DISPLAY_HEIGHT / 8 * OLED_DISPLAY_WIDTH)`. |
  101. |`OLED_BLOCK_TYPE` |`uint16_t` |The unsigned integer type to use for dirty rendering. |
  102. |`OLED_BLOCK_COUNT` |`16` |The number of blocks the display is divided into for dirty rendering.<br>`(sizeof(OLED_BLOCK_TYPE) * 8)`. |
  103. |`OLED_BLOCK_SIZE` |`32` |The size of each block for dirty rendering<br>`(OLED_MATRIX_SIZE / OLED_BLOCK_COUNT)`. |
  104. |`OLED_COM_PINS` |`COM_PINS_SEQ` |How the SSD1306 chip maps it's memory to display.<br>Options are `COM_PINS_SEQ`, `COM_PINS_ALT`, `COM_PINS_SEQ_LR`, & `COM_PINS_ALT_LR`.|
  105. |`OLED_SOURCE_MAP` |`{ 0, ... N }` |Precalculated source array to use for mapping source buffer to target OLED memory in 90 degree rendering. |
  106. |`OLED_TARGET_MAP` |`{ 24, ... N }`|Precalculated target array to use for mapping source buffer to target OLED memory in 90 degree rendering. |
  107. ### 90 Degree Rotation - Technical Mumbo Jumbo
  108. !> Rotation is unsupported on the SH1106.
  109. ```c
  110. // OLED Rotation enum values are flags
  111. typedef enum {
  112. OLED_ROTATION_0 = 0,
  113. OLED_ROTATION_90 = 1,
  114. OLED_ROTATION_180 = 2,
  115. OLED_ROTATION_270 = 3, // OLED_ROTATION_90 | OLED_ROTATION_180
  116. } oled_rotation_t;
  117. ```
  118. OLED displays driven by SSD1306 drivers only natively support in hardware 0 degree and 180 degree rendering. This feature is done in software and not free. Using this feature will increase the time to calculate what data to send over i2c to the OLED. If you are strapped for cycles, this can cause keycodes to not register. In testing however, the rendering time on an ATmega32U4 board only went from 2ms to 5ms and keycodes not registering was only noticed once we hit 15ms.
  119. 90 degree rotation is achieved by using bitwise operations to rotate each 8 block of memory and uses two precalculated arrays to remap buffer memory to OLED memory. The memory map defines are precalculated for remap performance and are calculated based on the display height, width, and block size. For example, in the 128x32 implementation with a `uint8_t` block type, we have a 64 byte block size. This gives us eight 8 byte blocks that need to be rotated and rendered. The OLED renders horizontally two 8 byte blocks before moving down a page, e.g:
  120. | | | | | | |
  121. |---|---|---|---|---|---|
  122. | 0 | 1 | | | | |
  123. | 2 | 3 | | | | |
  124. | 4 | 5 | | | | |
  125. | 6 | 7 | | | | |
  126. However the local buffer is stored as if it was Height x Width display instead of Width x Height, e.g:
  127. | | | | | | |
  128. |---|---|---|---|---|---|
  129. | 3 | 7 | | | | |
  130. | 2 | 6 | | | | |
  131. | 1 | 5 | | | | |
  132. | 0 | 4 | | | | |
  133. So those precalculated arrays just index the memory offsets in the order in which each one iterates its data.
  134. ## OLED API
  135. ```c
  136. // OLED rotation enum values are flags
  137. typedef enum {
  138. OLED_ROTATION_0 = 0,
  139. OLED_ROTATION_90 = 1,
  140. OLED_ROTATION_180 = 2,
  141. OLED_ROTATION_270 = 3, // OLED_ROTATION_90 | OLED_ROTATION_180
  142. } oled_rotation_t;
  143. // Initialize the OLED display, rotating the rendered output based on the define passed in.
  144. // Returns true if the OLED was initialized successfully
  145. bool oled_init(oled_rotation_t rotation);
  146. // Called at the start of oled_init, weak function overridable by the user
  147. // rotation - the value passed into oled_init
  148. // Return new oled_rotation_t if you want to override default rotation
  149. oled_rotation_t oled_init_user(oled_rotation_t rotation);
  150. // Clears the display buffer, resets cursor position to 0, and sets the buffer to dirty for rendering
  151. void oled_clear(void);
  152. // Renders the dirty chunks of the buffer to OLED display
  153. void oled_render(void);
  154. // Moves cursor to character position indicated by column and line, wraps if out of bounds
  155. // Max column denoted by 'oled_max_chars()' and max lines by 'oled_max_lines()' functions
  156. void oled_set_cursor(uint8_t col, uint8_t line);
  157. // Advances the cursor to the next page, writing ' ' if true
  158. // Wraps to the begining when out of bounds
  159. void oled_advance_page(bool clearPageRemainder);
  160. // Moves the cursor forward 1 character length
  161. // Advance page if there is not enough room for the next character
  162. // Wraps to the begining when out of bounds
  163. void oled_advance_char(void);
  164. // Writes a single character to the buffer at current cursor position
  165. // Advances the cursor while writing, inverts the pixels if true
  166. // Main handler that writes character data to the display buffer
  167. void oled_write_char(const char data, bool invert);
  168. // Writes a string to the buffer at current cursor position
  169. // Advances the cursor while writing, inverts the pixels if true
  170. void oled_write(const char *data, bool invert);
  171. // Writes a string to the buffer at current cursor position
  172. // Advances the cursor while writing, inverts the pixels if true
  173. // Advances the cursor to the next page, wiring ' ' to the remainder of the current page
  174. void oled_write_ln(const char *data, bool invert);
  175. // Pans the buffer to the right (or left by passing true) by moving contents of the buffer
  176. // Useful for moving the screen in preparation for new drawing
  177. // oled_scroll_left or oled_scroll_right should be preferred for all cases of moving a static
  178. // image such as a logo or to avoid burn-in as it's much, much less cpu intensive
  179. void oled_pan(bool left);
  180. // Writes a PROGMEM string to the buffer at current cursor position
  181. // Advances the cursor while writing, inverts the pixels if true
  182. // Remapped to call 'void oled_write(const char *data, bool invert);' on ARM
  183. void oled_write_P(const char *data, bool invert);
  184. // Writes a PROGMEM string to the buffer at current cursor position
  185. // Advances the cursor while writing, inverts the pixels if true
  186. // Advances the cursor to the next page, wiring ' ' to the remainder of the current page
  187. // Remapped to call 'void oled_write_ln(const char *data, bool invert);' on ARM
  188. void oled_write_ln_P(const char *data, bool invert);
  189. // Writes a string to the buffer at current cursor position
  190. void oled_write_raw(const char *data, uint16_t size);
  191. // Writes a single byte into the buffer at the specified index
  192. void oled_write_raw_byte(const char data, uint16_t index);
  193. // Writes a PROGMEM string to the buffer at current cursor position
  194. void oled_write_raw_P(const char *data, uint16_t size);
  195. // Can be used to manually turn on the screen if it is off
  196. // Returns true if the screen was on or turns on
  197. bool oled_on(void);
  198. // Can be used to manually turn off the screen if it is on
  199. // Returns true if the screen was off or turns off
  200. bool oled_off(void);
  201. // Basically it's oled_render, but with timeout management and oled_task_user calling!
  202. void oled_task(void);
  203. // Called at the start of oled_task, weak function overridable by the user
  204. void oled_task_user(void);
  205. // Set the specific 8 lines rows of the screen to scroll.
  206. // 0 is the default for start, and 7 for end, which is the entire
  207. // height of the screen. For 128x32 screens, rows 4-7 are not used.
  208. void oled_scroll_set_area(uint8_t start_line, uint8_t end_line);
  209. // Sets scroll speed, 0-7, fastest to slowest. Default is three.
  210. // Does not take effect until scrolling is either started or restarted
  211. // the ssd1306 supports 8 speeds with the delay
  212. // listed below betwen each frame of the scrolling effect
  213. // 0=2, 1=3, 2=4, 3=5, 4=25, 5=64, 6=128, 7=256
  214. void oled_scroll_set_speed(uint8_t speed);
  215. // Begin scrolling the entire display right
  216. // Returns true if the screen was scrolling or starts scrolling
  217. // NOTE: display contents cannot be changed while scrolling
  218. bool oled_scroll_right(void);
  219. // Begin scrolling the entire display left
  220. // Returns true if the screen was scrolling or starts scrolling
  221. // NOTE: display contents cannot be changed while scrolling
  222. bool oled_scroll_left(void);
  223. // Turns off display scrolling
  224. // Returns true if the screen was not scrolling or stops scrolling
  225. bool oled_scroll_off(void);
  226. // Returns the maximum number of characters that will fit on a line
  227. uint8_t oled_max_chars(void);
  228. // Returns the maximum number of lines that will fit on the OLED
  229. uint8_t oled_max_lines(void);
  230. ```
  231. !> Scrolling and rotation are unsupported on the SH1106.
  232. ## SSD1306.h Driver Conversion Guide
  233. |Old API |Recommended New API |
  234. |-------------------------|---------------------------------|
  235. |`struct CharacterMatrix` |*removed - delete all references*|
  236. |`iota_gfx_init` |`oled_init` |
  237. |`iota_gfx_on` |`oled_on` |
  238. |`iota_gfx_off` |`oled_off` |
  239. |`iota_gfx_flush` |`oled_render` |
  240. |`iota_gfx_write_char` |`oled_write_char` |
  241. |`iota_gfx_write` |`oled_write` |
  242. |`iota_gfx_write_P` |`oled_write_P` |
  243. |`iota_gfx_clear_screen` |`oled_clear` |
  244. |`matrix_clear` |*removed - delete all references*|
  245. |`matrix_write_char_inner`|`oled_write_char` |
  246. |`matrix_write_char` |`oled_write_char` |
  247. |`matrix_write` |`oled_write` |
  248. |`matrix_write_ln` |`oled_write_ln` |
  249. |`matrix_write_P` |`oled_write_P` |
  250. |`matrix_write_ln_P` |`oled_write_ln_P` |
  251. |`matrix_render` |`oled_render` |
  252. |`iota_gfx_task` |`oled_task` |
  253. |`iota_gfx_task_user` |`oled_task_user` |