achimdoebler / UGUI

µGUI - Open Source GUI module for embedded systems
Other
1.2k stars 415 forks source link

ILI9341 + ESP32 ESP-IDF + uGUI #28

Open sukeshak opened 6 years ago

sukeshak commented 6 years ago

What does it take to make to make uGUI work with ILI9341 + ESP32 ESP-IDF ? Any pointers highly appreciated.

saikataeie commented 6 years ago

You need to write a simple c program to access the pixel of your display and name that function as pset.If you have draw point code for your display, then it will do the job for you. You just need to change the name of your draw point function to pset.You also need to write the display initialization function for your display and need to call that in main. After writing your pset function you need to initialize ugui core by calling UG_init function. You 'll see that pset function is already linked with UG_init. After these steps you are ready to use all the functions of ugui.

wpmwpm commented 6 years ago

Thanks