diff options
| author | Pete Johanson <peter@peterjohanson.com> | 2020-07-25 23:16:04 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-25 23:16:04 -0400 | 
| commit | 998f42a2ed225e1ad0e67cc1e033619622b314c4 (patch) | |
| tree | 52f4abf4c3959cb9ab602e99d9aee587b3d646b8 /app/boards/shields/lily58/Kconfig.defconfig | |
| parent | 91d8237cab170e16d5a9349c06d15ac6e78e14cd (diff) | |
| parent | 5e96c0014a2a2a97c7363df9c74f062d0e3b806b (diff) | |
Merge pull request #63 from petejohanson/display/initial-lvgl-display-support
Initial display support.
Diffstat (limited to 'app/boards/shields/lily58/Kconfig.defconfig')
| -rw-r--r-- | app/boards/shields/lily58/Kconfig.defconfig | 40 | 
1 files changed, 40 insertions, 0 deletions
| diff --git a/app/boards/shields/lily58/Kconfig.defconfig b/app/boards/shields/lily58/Kconfig.defconfig index 8f278b0..89f217b 100644 --- a/app/boards/shields/lily58/Kconfig.defconfig +++ b/app/boards/shields/lily58/Kconfig.defconfig @@ -12,3 +12,43 @@ config ZMK_KEYBOARD_NAME  	default "Lily58 Right"  endif + +if SHIELD_LILY58_LEFT || SHIELD_LILY58_RIGHT + +if ZMK_DISPLAY + +config I2C +	default y + +config SSD1306 +	default y + +config SSD1306_REVERSE_MODE +	default y + +endif # ZMK_DISPLAY + +if LVGL + +config LVGL_HOR_RES +	default 128 + +config LVGL_VER_RES +	default 32 + +config LVGL_VDB_SIZE +	default 64 + +config LVGL_DPI +	default 148 + +config LVGL_BITS_PER_PIXEL +	default 1 + +choice LVGL_COLOR_DEPTH +	default LVGL_COLOR_DEPTH_1 +endchoice + +endif # LVGL + +endif | 
