Can the GC9A01 Driver be added? #94
wingedwarrior64
started this conversation in
Ideas
Replies: 3 comments 13 replies
-
that driver is already added... add To use you would add code similar to what is below to your main.py file that gets uploaded to the device. import gc9a01
display = gc9a01.GC9801(
data bus,
width,
height,
...
) |
Beta Was this translation helpful? Give feedback.
0 replies
-
OK so to create your own firmware I need to know what OS you are using.. |
Beta Was this translation helpful? Give feedback.
2 replies
-
OK so you are running under window and you have WSL. I recommend using WSL. It is essentially the same thing as Virtual Box except it is not as isolated from the host OS. sudo apt-get install build-essential cmake ninja-build python git
cd ~
git clone https://github.com/lvgl-micropython/lvgl_micropython
cd lvgl_micropython
python3 make.py esp32 submodules mpy_cross flash-size=4 DISPLAY=gc9a01 |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@kdschlosser :
Is there any way to add the GC9A01 Driver to your repository? Or is there a better way to do this? I am going to be completely honest, I am brand new to ESP32s and LVGL and I am completely lost. GC-RmG from the LVGL forum said you were the guy to talk to. I started this thread in the LVGL Forum: https://forum.lvgl.io/t/i-am-so-lost-how-in-the-actual-do-you-use-this-thing/17010/2. In case you're wondering just how lost and new I am, that'll give you some background. I still haven't figured out how to create my custom firmware... so there's that... Any help would be greatly appreciated. Thank you.
Beta Was this translation helpful? Give feedback.
All reactions