2024-11-20 04:42 AM
Dear all!
i need help, I try to fill Screen in Red, but can't. I download library from GitHub. I don't know how to fix it. i attach original library, i disable 1 line in C file. Pin PB7 control 1 led and it blink as my expect, can you help share me how ti fix this issue.
2024-11-22 04:23 AM
Hello @khanhcong861989 ,
A blinky example and using a screen are not the same level of difficulty.
You will have to read a lot of documentation and try a few different things before it works I guess.
That being said, let me help you the best I can.
If you want to use TouchGFX to create a GUI, please, start by reading our documentation and more specificaly, you should read the board bring up guide .
Once you correctly setup your board, you can try to fill the screen to red : display framebuffer .
If you do not want to use TouchGFX, then you should just use your screen's library.
To do so, look at resources online, there is plenty of various quality :
Overall, if you want me to help you, you should prove more information about your project:
I hope this helps! :smiling_face_with_smiling_eyes:
Regards,
2024-12-10 06:06 AM
Hello @khanhcong861989 ,
Have you been able to move forward with your issue?
If you did, could you select the comment that helped you the most as "best answer".
Regards,
2024-12-10 08:37 PM
Dear!
my issue wasn't fixed yet, bro. i still try my best to display the screen
2024-12-12 04:35 AM
Hello @khanhcong861989 ,
Are you blocked at something specific?
Otherwise, you should first try to control your display before enabling TouchGFX because TouchGFX's job is to render the UI to a framebuffer and store it in memory, then TouchGFX sends the framebuffer to the display. It is more likely that the rendering will work fine, but it might not work to send the rendered data to the memory or to send the data to the display, so you should test those 2 separately.
You should try to just et your screen to a solid color by using the functions provided for it (such as FMC_fill_Screen or whatever).
Maybe have a look at some YouTube videos if you are stuck :
- How to set up TouchGFX with SPI Displays || ILI9341
- A fast TouchGFX library for ILI9341, ILI9488 and ST7735 on STM32
- How to integrate TouchGFX in a custom board (The long way round)
Regards,