Search found 32 matches

by Minyiky
Thu Dec 03, 2020 10:11 am
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

LVGL is a major achievement enabling lovely GUI design. Their design criteria could hardly be more different from mine. I aim to write small, portable code in pure MicroPython which runs on official firmware. The tradeoff is a limited set of simple widgets. I completely understand that, and having ...
by Minyiky
Wed Dec 02, 2020 10:05 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

An update from today, I spent some time looking tat c code to see if I could get some speed increases. I will start off by saying I know nothing about c and so will almost certainly have made it less efficient than possible. I strongly based it (forked and modified) from a driver for an st7789 displ...
by Minyiky
Tue Dec 01, 2020 7:52 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

it's designed for use with an external frame buffer: as discussed this isn't practicable with these larger displays. I see the problems that you (and @rdagger) are up against. As a quick side note, there is the option os the esp32 WROVER module or something like the tiny pico which have 4MiB extern...
by Minyiky
Tue Dec 01, 2020 3:12 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

Having done some more work today and looking through documentation it looks like you can only send data in rectangular sections by providing x1, x2, y1, y2. Therefore i tdont see a way of sending over data that isnt in a rectanglular format, unless the ram is read first and then over writtenfor a se...
by Minyiky
Mon Nov 30, 2020 3:30 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

I have been doing some work and have managed a solid rectangle to display in ~45ms which is plenty fast enough realistically. the isue is when ots of instructions must be sent, a very stark example of this is a 45 dgreeline vs a horizontal line, a 100 pixel horizontal line is being sent in one instr...
by Minyiky
Sun Nov 29, 2020 5:30 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

It is interesting to hear that you are looking into support for ili9341 but am beggining to understan the difficulties involved. I also understand what you mean about addiung touch support, I see a lot of displays with them, especially ili9341 ones, alhough for the project I am working on I don't ne...
by Minyiky
Sun Nov 29, 2020 11:31 am
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

Thank you for your detailed response, I had indeed seen your GUI before and it looked perfect if not for the display drivers. I have done some investigation and timed some functions, it looks like the limitation is potentially to do with how the data is being sent, not making use of the frame buffer...
by Minyiky
Sat Nov 28, 2020 9:15 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Re: Best driver for ili9341 display

Thank you for the feedback, In the code I was using the baud rate was set to 40,000,000, above what you have mentioned, I have tried both lowering to 10,000,000 and increasing to 400,000,000 with no change in performance. As an extreme I set the baud rate much lower and that did indeed slow down the...
by Minyiky
Fri Nov 27, 2020 4:34 pm
Forum: ESP32 boards
Topic: Best driver for ili9341 display
Replies: 40
Views: 26089

Best driver for ili9341 display

Hello everyone, I am working on a project using an ili9341 display connected to a firebeetle esp32 board and am looking for a good ili9341 driver. I have been using the driver here (https://github.com/rdagger/micropython-ili9341) and the screen is working but incredibly slow, on the order of seconds...
by Minyiky
Thu Nov 26, 2020 5:15 pm
Forum: General Discussion and Questions
Topic: Connecting to an MS5541-CM Pressure sensor
Replies: 2
Views: 1321

Re: Connecting to an MS5541-CM Pressure sensor

Sorry for the delay, I didnt see that I had a notification, I have managed to get it working with your help so thank you very much