Search found 67 matches

by Rudolph
Tue Oct 27, 2020 7:45 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: ESP Sample Code for an EVE3 Display
Replies: 1
Views: 1531

Re: ESP Sample Code for an EVE3 Display

Nice, I have a project with EVE3-43G modules currently and my cases look similar. :-) I only wish DigiKey had EVE3-43G-IPS-BLH-TPC-Fxx but they "only" have EVE3-43G-BLM-TPC-F32. Same goes for the other IPS versions, these are not even listed. I do wonder about the current consumption thoug...
by Rudolph
Sat Sep 05, 2020 1:35 pm
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Code-Library for EVE TFTs
Replies: 3
Views: 7251

Re: Code-Library for EVE TFTs

I just released the first interation of V5 of my code library:
https://github.com/RudolphRiedel/FT800-FT813/tree/5.x

This removes support for FT800 and FT801 but in return it is even faster.
And I am preparing for the release of EVE4 but for the time beeing had to remove anything related to it.
by Rudolph
Tue Sep 01, 2020 11:45 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Using Custom Fonts
Replies: 28
Views: 6782

Re: Using Custom Fonts

Thank you for the kind words. 1. Why use EAB 1.4 when 1.6 is released? Does not matter much in this context though You have an EVE3, why bother with legacy format? Why SETFONT and not SETFONT2? You can even flash the font to the external FLASH of the EVE3. So I would use Extended Format with ASTC an...
by Rudolph
Sat Jul 04, 2020 11:04 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Arduino EVE2 / EVE3 Examples
Replies: 21
Views: 7658

Re: Arduino EVE2 / EVE3 Examples

This is correct, this is all my small example does, just a couple of basic functions. This is more to show how things work in general and how to get things going than a fance demonstration of what EVE can do. >DL size changes between 640 and 784 between presses. The display-list size changes because...
by Rudolph
Sat Jun 20, 2020 9:46 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Arduino EVE2 / EVE3 Examples
Replies: 21
Views: 7658

Re: Arduino EVE2 / EVE3 Examples

I have an Arduino example as well, maybe give this a spin? https://github.com/RudolphRiedel/FT800-FT813/tree/4.x/example_projects/EVE_Test_Arduino_PlatformIO EVE2 and EVE3 displays are directly supported, you just need to select one in EVE_config.h. The Arduino specific code is at the end of EVE_tar...
by Rudolph
Sat Nov 23, 2019 3:36 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Drawing Scope on Eve2-50G
Replies: 5
Views: 7466

Re: Drawing Scope on Eve2-50G

Without even looking at the example, the easy way to do this is with a LINE_STRIP primitive. Just loop thru an array and use the counter for X and the array value for Y in the VERTEX2F() commands. The way VERTEX2F() works though with 15 bits for X and Y, it comes with a cost, this requires a little ...
by Rudolph
Sat May 12, 2018 8:53 am
Forum: EVE2 & EVE3 & EVE4 SPI TFT's
Topic: Code-Library for EVE TFTs
Replies: 3
Views: 7251

Code-Library for EVE TFTs

Just a little self-promotion, well, sort of since the stuff is for free under MIT license, I have a code-library for FT8xx up on Github: https://github.com/RudolphRiedel/FT800-FT813. This is setup to support the full range of FT8xx. Although I plan to remove FT80x support in the future, likely when ...