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.

378 lines
19 KiB

2020 November 28 Breaking Changes Update (#11053) * Branch point for 2020 November 28 Breaking Change * Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183) * Add support for soft serial to ATmega32U2 (#10204) * Change MIDI velocity implementation to allow direct control of velocity value (#9940) * Add ability to build a subset of all keyboards based on platform. * Actually use eeprom_driver_init(). * Make bootloader_jump weak for ChibiOS. (#10417) * Joystick 16-bit support (#10439) * Per-encoder resolutions (#10259) * Share button state from mousekey to pointing_device (#10179) * Add hotfix for chibios keyboards not wake (#10088) * Add advanced/efficient RGB Matrix Indicators (#8564) * Naming change. * Support for STM32 GPIOF,G,H,I,J,K (#10206) * Add milc as a dependency and remove the installed milc (#10563) * ChibiOS upgrade: early init conversions (#10214) * ChibiOS upgrade: configuration file migrator (#9952) * Haptic and solenoid cleanup (#9700) * XD75 cleanup (#10524) * OLED display update interval support (#10388) * Add definition based on currently-selected serial driver. (#10716) * New feature: Retro Tapping per key (#10622) * Allow for modification of output RGB values when using rgblight/rgb_matrix. (#10638) * Add housekeeping task callbacks so that keyboards/keymaps are capable of executing code for each main loop iteration. (#10530) * Rescale both ChibiOS and AVR backlighting. * Reduce Helix keyboard build variation (#8669) * Minor change to behavior allowing display updates to continue between task ticks (#10750) * Some GPIO manipulations in matrix.c change to atomic. (#10491) * qmk cformat (#10767) * [Keyboard] Update the Speedo firmware for v3.0 (#10657) * Maartenwut/Maarten namechange to evyd13/Evy (#10274) * [quantum] combine repeated lines of code (#10837) * Add step sequencer feature (#9703) * aeboards/ext65 refactor (#10820) * Refactor xelus/dawn60 for Rev2 later (#10584) * add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824) * [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549) * update chibios os usb for the otg driver (#8893) * Remove HD44780 References, Part 4 (#10735) * [Keyboard] Add Valor FRL TKL (+refactor) (#10512) * Fix cursor position bug in oled_write_raw functions (#10800) * Fixup version.h writing when using SKIP_VERSION=yes (#10972) * Allow for certain code in the codebase assuming length of string. (#10974) * Add AT90USB support for serial.c (#10706) * Auto shift: support repeats and early registration (#9826) * Rename ledmatrix.h to match .c file (#7949) * Split RGB_MATRIX_ENABLE into _ENABLE and _DRIVER (#10231) * Split LED_MATRIX_ENABLE into _ENABLE and _DRIVER (#10840) * Merge point for 2020 Nov 28 Breaking Change
3 years ago
  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. ## Buffer Read Example
  59. For some purposes, you may need to read the current state of the OLED display
  60. buffer. The `oled_read_raw` function can be used to safely read bytes from the
  61. buffer.
  62. In this example, calling `fade_display` in the `oled_task_user` function will
  63. slowly fade away whatever is on the screen by turning random pixels black over
  64. time.
  65. ```c
  66. //Setup some mask which can be or'd with bytes to turn off pixels
  67. const uint8_t single_bit_masks[8] = {127, 191, 223, 239, 247, 251, 253, 254};
  68. static void fade_display(void) {
  69. //Define the reader structure
  70. oled_buffer_reader_t reader;
  71. uint8_t buff_char;
  72. if (random() % 30 == 0) {
  73. srand(timer_read());
  74. // Fetch a pointer for the buffer byte at index 0. The return structure
  75. // will have the pointer and the number of bytes remaining from this
  76. // index position if we want to perform a sequential read by
  77. // incrementing the buffer pointer
  78. reader = oled_read_raw(0);
  79. //Loop over the remaining buffer and erase pixels as we go
  80. for (uint16_t i = 0; i < reader.remaining_element_count; i++) {
  81. //Get the actual byte in the buffer by dereferencing the pointer
  82. buff_char = *reader.current_element;
  83. if (buff_char != 0) {
  84. oled_write_raw_byte(buff_char & single_bit_masks[rand() % 8], i);
  85. }
  86. //increment the pointer to fetch a new byte during the next loop
  87. reader.current_element++;
  88. }
  89. }
  90. }
  91. ```
  92. ## Other Examples
  93. 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:
  94. ```c
  95. #ifdef OLED_DRIVER_ENABLE
  96. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  97. if (!is_keyboard_master()) {
  98. return OLED_ROTATION_180; // flips the display 180 degrees if offhand
  99. }
  100. return rotation;
  101. }
  102. void oled_task_user(void) {
  103. if (is_keyboard_master()) {
  104. render_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)
  105. } else {
  106. render_logo(); // Renders a static logo
  107. oled_scroll_left(); // Turns on scrolling
  108. }
  109. }
  110. #endif
  111. ```
  112. ## Basic Configuration
  113. |Define |Default |Description |
  114. |---------------------------|-----------------|--------------------------------------------------------------------------------------------------------------------------|
  115. |`OLED_DISPLAY_ADDRESS` |`0x3C` |The i2c address of the OLED Display |
  116. |`OLED_FONT_H` |`"glcdfont.c"` |The font code file to use for custom fonts |
  117. |`OLED_FONT_START` |`0` |The starting character index for custom fonts |
  118. |`OLED_FONT_END` |`223` |The ending character index for custom fonts |
  119. |`OLED_FONT_WIDTH` |`6` |The font width |
  120. |`OLED_FONT_HEIGHT` |`8` |The font height (untested) |
  121. |`OLED_TIMEOUT` |`60000` |Turns off the OLED screen after 60000ms of keyboard inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. |
  122. |`OLED_SCROLL_TIMEOUT` |`0` |Scrolls the OLED screen after 0ms of OLED inactivity. Helps reduce OLED Burn-in. Set to 0 to disable. |
  123. |`OLED_SCROLL_TIMEOUT_RIGHT`|*Not defined* |Scroll timeout direction is right when defined, left when undefined. |
  124. |`OLED_IC` |`OLED_IC_SSD1306`|Set to `OLED_IC_SH1106` if you're using the SH1106 OLED controller. |
  125. |`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.|
  126. |`OLED_BRIGHTNESS` |`255` |The default brightness level of the OLED, from 0 to 255. |
  127. |`OLED_UPDATE_INTERVAL` |`0` |Set the time interval for updating the OLED display in ms. This will improve the matrix scan rate. |
  128. ## 128x64 & Custom sized OLED Displays
  129. 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.
  130. |Define |Default |Description |
  131. |---------------------|---------------|----------------------------------------------------------------------------------------------------------------------------------------|
  132. |`OLED_DISPLAY_128X64`|*Not defined* |Changes the display defines for use with 128x64 displays. |
  133. |`OLED_DISPLAY_CUSTOM`|*Not defined* |Changes the display defines for use with custom displays.<br>Requires user to implement the below defines. |
  134. |`OLED_DISPLAY_WIDTH` |`128` |The width of the OLED display. |
  135. |`OLED_DISPLAY_HEIGHT`|`32` |The height of the OLED display. |
  136. |`OLED_MATRIX_SIZE` |`512` |The local buffer size to allocate.<br>`(OLED_DISPLAY_HEIGHT / 8 * OLED_DISPLAY_WIDTH)`. |
  137. |`OLED_BLOCK_TYPE` |`uint16_t` |The unsigned integer type to use for dirty rendering. |
  138. |`OLED_BLOCK_COUNT` |`16` |The number of blocks the display is divided into for dirty rendering.<br>`(sizeof(OLED_BLOCK_TYPE) * 8)`. |
  139. |`OLED_BLOCK_SIZE` |`32` |The size of each block for dirty rendering<br>`(OLED_MATRIX_SIZE / OLED_BLOCK_COUNT)`. |
  140. |`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`.|
  141. |`OLED_SOURCE_MAP` |`{ 0, ... N }` |Precalculated source array to use for mapping source buffer to target OLED memory in 90 degree rendering. |
  142. |`OLED_TARGET_MAP` |`{ 24, ... N }`|Precalculated target array to use for mapping source buffer to target OLED memory in 90 degree rendering. |
  143. ### 90 Degree Rotation - Technical Mumbo Jumbo
  144. !> Rotation is unsupported on the SH1106.
  145. ```c
  146. // OLED Rotation enum values are flags
  147. typedef enum {
  148. OLED_ROTATION_0 = 0,
  149. OLED_ROTATION_90 = 1,
  150. OLED_ROTATION_180 = 2,
  151. OLED_ROTATION_270 = 3, // OLED_ROTATION_90 | OLED_ROTATION_180
  152. } oled_rotation_t;
  153. ```
  154. 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.
  155. 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:
  156. | | | | | | |
  157. |---|---|---|---|---|---|
  158. | 0 | 1 | | | | |
  159. | 2 | 3 | | | | |
  160. | 4 | 5 | | | | |
  161. | 6 | 7 | | | | |
  162. However the local buffer is stored as if it was Height x Width display instead of Width x Height, e.g:
  163. | | | | | | |
  164. |---|---|---|---|---|---|
  165. | 3 | 7 | | | | |
  166. | 2 | 6 | | | | |
  167. | 1 | 5 | | | | |
  168. | 0 | 4 | | | | |
  169. So those precalculated arrays just index the memory offsets in the order in which each one iterates its data.
  170. ## OLED API
  171. ```c
  172. // OLED rotation enum values are flags
  173. typedef enum {
  174. OLED_ROTATION_0 = 0,
  175. OLED_ROTATION_90 = 1,
  176. OLED_ROTATION_180 = 2,
  177. OLED_ROTATION_270 = 3, // OLED_ROTATION_90 | OLED_ROTATION_180
  178. } oled_rotation_t;
  179. // Initialize the OLED display, rotating the rendered output based on the define passed in.
  180. // Returns true if the OLED was initialized successfully
  181. bool oled_init(oled_rotation_t rotation);
  182. // Called at the start of oled_init, weak function overridable by the user
  183. // rotation - the value passed into oled_init
  184. // Return new oled_rotation_t if you want to override default rotation
  185. oled_rotation_t oled_init_user(oled_rotation_t rotation);
  186. // Clears the display buffer, resets cursor position to 0, and sets the buffer to dirty for rendering
  187. void oled_clear(void);
  188. // Renders the dirty chunks of the buffer to OLED display
  189. void oled_render(void);
  190. // Moves cursor to character position indicated by column and line, wraps if out of bounds
  191. // Max column denoted by 'oled_max_chars()' and max lines by 'oled_max_lines()' functions
  192. void oled_set_cursor(uint8_t col, uint8_t line);
  193. // Advances the cursor to the next page, writing ' ' if true
  194. // Wraps to the begining when out of bounds
  195. void oled_advance_page(bool clearPageRemainder);
  196. // Moves the cursor forward 1 character length
  197. // Advance page if there is not enough room for the next character
  198. // Wraps to the begining when out of bounds
  199. void oled_advance_char(void);
  200. // Writes a single character to the buffer at current cursor position
  201. // Advances the cursor while writing, inverts the pixels if true
  202. // Main handler that writes character data to the display buffer
  203. void oled_write_char(const char data, bool invert);
  204. // Writes a string to the buffer at current cursor position
  205. // Advances the cursor while writing, inverts the pixels if true
  206. void oled_write(const char *data, bool invert);
  207. // Writes a string to the buffer at current cursor position
  208. // Advances the cursor while writing, inverts the pixels if true
  209. // Advances the cursor to the next page, wiring ' ' to the remainder of the current page
  210. void oled_write_ln(const char *data, bool invert);
  211. // Pans the buffer to the right (or left by passing true) by moving contents of the buffer
  212. // Useful for moving the screen in preparation for new drawing
  213. // oled_scroll_left or oled_scroll_right should be preferred for all cases of moving a static
  214. // image such as a logo or to avoid burn-in as it's much, much less cpu intensive
  215. void oled_pan(bool left);
  216. // Writes a PROGMEM string to the buffer at current cursor position
  217. // Advances the cursor while writing, inverts the pixels if true
  218. // Remapped to call 'void oled_write(const char *data, bool invert);' on ARM
  219. void oled_write_P(const char *data, bool invert);
  220. // Writes a PROGMEM string to the buffer at current cursor position
  221. // Advances the cursor while writing, inverts the pixels if true
  222. // Advances the cursor to the next page, wiring ' ' to the remainder of the current page
  223. // Remapped to call 'void oled_write_ln(const char *data, bool invert);' on ARM
  224. void oled_write_ln_P(const char *data, bool invert);
  225. // Returns a pointer to the requested start index in the buffer plus remaining
  226. // buffer length as struct
  227. oled_buffer_reader_t oled_read_raw(uint16_t start_index);
  228. // Writes a string to the buffer at current cursor position
  229. void oled_write_raw(const char *data, uint16_t size);
  230. // Writes a single byte into the buffer at the specified index
  231. void oled_write_raw_byte(const char data, uint16_t index);
  232. // Writes a PROGMEM string to the buffer at current cursor position
  233. void oled_write_raw_P(const char *data, uint16_t size);
  234. // Sets a specific pixel on or off
  235. // Coordinates start at top-left and go right and down for positive x and y
  236. void oled_write_pixel(uint8_t x, uint8_t y, bool on);
  237. // Can be used to manually turn on the screen if it is off
  238. // Returns true if the screen was on or turns on
  239. bool oled_on(void);
  240. // Can be used to manually turn off the screen if it is on
  241. // Returns true if the screen was off or turns off
  242. bool oled_off(void);
  243. // Returns true if the oled is currently on, false if it is
  244. // not
  245. bool is_oled_on(void);
  246. // Sets the brightness level of the display
  247. uint8_t oled_set_brightness(uint8_t level);
  248. // Gets the current brightness level of the display
  249. uint8_t oled_get_brightness(void);
  250. // Basically it's oled_render, but with timeout management and oled_task_user calling!
  251. void oled_task(void);
  252. // Called at the start of oled_task, weak function overridable by the user
  253. void oled_task_user(void);
  254. // Set the specific 8 lines rows of the screen to scroll.
  255. // 0 is the default for start, and 7 for end, which is the entire
  256. // height of the screen. For 128x32 screens, rows 4-7 are not used.
  257. void oled_scroll_set_area(uint8_t start_line, uint8_t end_line);
  258. // Sets scroll speed, 0-7, fastest to slowest. Default is three.
  259. // Does not take effect until scrolling is either started or restarted
  260. // the ssd1306 supports 8 speeds with the delay
  261. // listed below betwen each frame of the scrolling effect
  262. // 0=2, 1=3, 2=4, 3=5, 4=25, 5=64, 6=128, 7=256
  263. void oled_scroll_set_speed(uint8_t speed);
  264. // Begin scrolling the entire display right
  265. // Returns true if the screen was scrolling or starts scrolling
  266. // NOTE: display contents cannot be changed while scrolling
  267. bool oled_scroll_right(void);
  268. // Begin scrolling the entire display left
  269. // Returns true if the screen was scrolling or starts scrolling
  270. // NOTE: display contents cannot be changed while scrolling
  271. bool oled_scroll_left(void);
  272. // Turns off display scrolling
  273. // Returns true if the screen was not scrolling or stops scrolling
  274. bool oled_scroll_off(void);
  275. // Returns the maximum number of characters that will fit on a line
  276. uint8_t oled_max_chars(void);
  277. // Returns the maximum number of lines that will fit on the OLED
  278. uint8_t oled_max_lines(void);
  279. ```
  280. !> Scrolling and rotation are unsupported on the SH1106.
  281. ## SSD1306.h Driver Conversion Guide
  282. |Old API |Recommended New API |
  283. |-------------------------|---------------------------------|
  284. |`struct CharacterMatrix` |*removed - delete all references*|
  285. |`iota_gfx_init` |`oled_init` |
  286. |`iota_gfx_on` |`oled_on` |
  287. |`iota_gfx_off` |`oled_off` |
  288. |`iota_gfx_flush` |`oled_render` |
  289. |`iota_gfx_write_char` |`oled_write_char` |
  290. |`iota_gfx_write` |`oled_write` |
  291. |`iota_gfx_write_P` |`oled_write_P` |
  292. |`iota_gfx_clear_screen` |`oled_clear` |
  293. |`matrix_clear` |*removed - delete all references*|
  294. |`matrix_write_char_inner`|`oled_write_char` |
  295. |`matrix_write_char` |`oled_write_char` |
  296. |`matrix_write` |`oled_write` |
  297. |`matrix_write_ln` |`oled_write_ln` |
  298. |`matrix_write_P` |`oled_write_P` |
  299. |`matrix_write_ln_P` |`oled_write_ln_P` |
  300. |`matrix_render` |`oled_render` |
  301. |`iota_gfx_task` |`oled_task` |
  302. |`iota_gfx_task_user` |`oled_task_user` |