Difference between revisions of "STM32 LVGL ST7789"

From Stm32World Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
[[Category:Work in progress]][[Category:C]] [[Category:STM32 Development]] [[Category:STM32CubeMX]] [[Category:STM32CubeIde]] [[Category:Embedded]] [[Category:STM32]] {{metadesc|LVGL with ST7789 Display on STM32}}
 
[[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.
 
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 ==
 
== Miscellaneous Links ==
  
 
* [https://lvgl.io/ Light and Versatile Graphics Library main site]
 
* [https://lvgl.io/ Light and Versatile Graphics Library main site]

Latest revision as of 04: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.

ST7789 Pins.png

Miscellaneous Links