micropython-ili9341
micropython-ili9341 copied to clipboard
MicroPython ILI9341Display & XPT2046 Touch Screen Driver
Allow for a stream of bytes to be read, as opposed to just a file on disk. Potential use case is if bytes are downloaded from the network.
Thanks a million for your awesome work. I want to have "sliders", so I needed more than just "touch event detection", plus my board issues spurious events occasionally, so I've...
Is there a way to implement manually updating the display similar to the show() function in the ssd1306 library. My guess is adding another buffer to the Block() function.
Instead of letting self.block() function send pixels to the LCD, it might be faster if block() updated an internal array, and a display.push_pixels() sent all the pixels directly to the...