Difference between revisions of "STM32 LVGL ST7789"
Jump to navigation
Jump to search
(Created page with "Category:Work in ProgressCategory:C Category:STM32 Development Category:STM32CubeMX Category:STM32CubeIde Category:Embedded Category:STM32 {{metade...") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Work in | + | [[Category:Work in progress]][[Category:C]] [[Category:STM32 Development]] [[Category:STM32CubeMX]] [[Category:STM32CubeIde]] [[Category:Embedded]] [[Category:STM32]] {{metadesc|LVGL with ST7789 Display on STM32}} |
+ | This page contains notes on porting LVGL to STM32 using a [[ST7789]] display. | ||
− | + | == Wiring == | |
+ | |||
+ | Displays with the [[ST7789]] comes in many different variants, but in essence they all use a single direction [[SPI]] connection (MOSI only). On some variants the CS (Chip Select) line is permanently pulled low, but on the one I am using here, the CS line is wired. | ||
+ | |||
+ | [[File:ST7789 Pins.png|400px]] | ||
+ | |||
+ | == Miscellaneous Links == | ||
+ | |||
+ | * [https://lvgl.io/ Light and Versatile Graphics Library main site] |
Latest revision as of 03:35, 20 February 2022
This page contains notes on porting LVGL to STM32 using a ST7789 display.
Wiring
Displays with the ST7789 comes in many different variants, but in essence they all use a single direction SPI connection (MOSI only). On some variants the CS (Chip Select) line is permanently pulled low, but on the one I am using here, the CS line is wired.