8bit parralel ili9341 driver for micropython? #12043
-
hi i have an uno 2.4inch tft shield that uses 8bit parallel bus for data transfer i can use mcufriends_kvb to use it with arduino, is there a library for the 8bit parallel ili9341 for me to use? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
This comment was marked as off-topic.
This comment was marked as off-topic.
-
I's unclear if you want to use it with C code or Python. If you want to use Python, you can have a look at the Pico variant of the SSD1963 driver here, which also uses an 8 bit 8080-type parallel bus. There are PIO scripts to drive the bus, especially file https://github.com/robert-hh/SSD1963-TFT-Library-for-PyBoard-and-RP2040/blob/master/rp2040/tft_pio.py. Granted, it may be hard to find the right parts in the file to use. The actual PIO state machine are at the beginning of the class and are usually only a few bytes long. |
Beta Was this translation helpful? Give feedback.
I's unclear if you want to use it with C code or Python. If you want to use Python, you can have a look at the Pico variant of the SSD1963 driver here, which also uses an 8 bit 8080-type parallel bus. There are PIO scripts to drive the bus, especially file https://github.com/robert-hh/SSD1963-TFT-Library-for-PyBoard-and-RP2040/blob/master/rp2040/tft_pio.py. Granted, it may be hard to find the right parts in the file to use. The actual PIO state machine are at the beginning of the class and are usually only a few bytes long.