Search found 11 matches
- Thu Jul 15, 2021 11:13 am
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: EVE4 Assistance
- Replies: 1
- Views: 1927
Re: EVE4 Assistance
I'm not sure what the issue was before but the display is now working fine with the above parameters.
- Thu Jul 08, 2021 11:53 am
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: EVE4 5-15Vdc Question
- Replies: 3
- Views: 19699
Re: EVE4 5-15Vdc Question
I received assistance from Matrix Oribital support and I wanted to share it with others in case it may be helpful.
The connector in the bottom left corner of the board is a MATE-N-LOK connector. The attached photo shows its polarity.
BLVDD VCC (Pins 17 and 18),VCC (Pins 1 and 16), and VCC (MATE-N ...
The connector in the bottom left corner of the board is a MATE-N-LOK connector. The attached photo shows its polarity.
BLVDD VCC (Pins 17 and 18),VCC (Pins 1 and 16), and VCC (MATE-N ...
- Thu Jul 08, 2021 11:46 am
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: EVE4 Assistance
- Replies: 1
- Views: 1927
EVE4 Assistance
I recently received a EVE4 7" display:
https://www.matrixorbital.com/ftdi-eve/eve-bt817-bt818/eve4x-70g-ips
I have previously worked with an EVE3 5" display connected to an ESP32 micro-controller. The 5" was working well but when I tried to replicate the connections and code (with parameters ...
https://www.matrixorbital.com/ftdi-eve/eve-bt817-bt818/eve4x-70g-ips
I have previously worked with an EVE3 5" display connected to an ESP32 micro-controller. The 5" was working well but when I tried to replicate the connections and code (with parameters ...
- Mon Jul 05, 2021 9:51 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: EVE4 5-15Vdc Question
- Replies: 3
- Views: 19699
EVE4 5-15Vdc Question
For the EVE4x-70G-IPS display, I have the 5-15 VDC option for the backlight. I am assuming that this is the two prong connector that is located in the lower left of the board in the attached photo. I wanted to see how to identify the polarity for the connection and also to know if this is a standard ...
- Tue Mar 02, 2021 5:37 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
I attempted to replicate your example and hey, at least I got a zero and half of a number 1 working, ha!
20210302_175054.jpg
EVE_cmd_dl(DL_COLOR_RGB | WHITE);
EVE_cmd_dl(DL_BEGIN | EVE_BITMAPS);
EVE_cmd_setbitmap(MEM_BIGFONT, EVE_COMPRESSED_RGBA_ASTC_8x8_KHR, 224, 384);
EVE_cmd_dl(CELL(0));
EVE ...
20210302_175054.jpg
EVE_cmd_dl(DL_COLOR_RGB | WHITE);
EVE_cmd_dl(DL_BEGIN | EVE_BITMAPS);
EVE_cmd_setbitmap(MEM_BIGFONT, EVE_COMPRESSED_RGBA_ASTC_8x8_KHR, 224, 384);
EVE_cmd_dl(CELL(0));
EVE ...
- Sun Feb 28, 2021 1:51 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
With your help, I was able to create a 255 size font (just numbers, no other characters) with the Eve Asset Builder and get it uploaded to the display.
20210228_125720.jpg
The map file has these values:
unified.blob : 0 : 4096
LemonMilkMedium-mLZYV_255_ASTC.glyph : 4096 : 1032192
LemonMilkMedium ...
20210228_125720.jpg
The map file has these values:
unified.blob : 0 : 4096
LemonMilkMedium-mLZYV_255_ASTC.glyph : 4096 : 1032192
LemonMilkMedium ...
- Sat Feb 27, 2021 8:54 am
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
After I wrote that last post to you, I downloaded the EVE Asset Builder and tried to create a font myself. I was able to use the font generator to create a glyph and xfont with a limited character set (0123456789), turn that into a bin, and then convert that into hex with the BIN2C converter ...
- Fri Feb 26, 2021 6:03 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
Thank you again, immensely helpful! I am trying to do things one small step at a time so I can learn what each change equates to on the display.
I started by adding:
//EVE_cmd_romfont(16,32); //First three lines commented out
//EVE_cmd_romfont(17,33); //First three lines commented out
//EVE_cmd ...
I started by adding:
//EVE_cmd_romfont(16,32); //First three lines commented out
//EVE_cmd_romfont(17,33); //First three lines commented out
//EVE_cmd ...
- Thu Feb 25, 2021 9:53 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
Thank you so much for the quick and helpful reply!
I've made another attempt to get the Weather Demo working but still have init issues.
I have two more questions. For your example Rudolph, the task watchdog is triggered every 5 seconds, is this normal behavior? All seems to be displaying well so ...
I've made another attempt to get the Weather Demo working but still have init issues.
I have two more questions. For your example Rudolph, the task watchdog is triggered every 5 seconds, is this normal behavior? All seems to be displaying well so ...
- Sat Feb 20, 2021 5:16 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
Re: ESP32 & Eve3 Display Help
Using Rudolph's code I got it to work!
I had to change the #define TEST_UTF8 from a 1 to a 0 under tft.c and the display came to life!
I would still like to be able to use the original Matrix Orbital example to connect to the display so I would like to see if anyone has a suggestion as to how I ...
I had to change the #define TEST_UTF8 from a 1 to a 0 under tft.c and the display came to life!
I would still like to be able to use the original Matrix Orbital example to connect to the display so I would like to see if anyone has a suggestion as to how I ...
- Sat Feb 20, 2021 3:06 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: ESP32 & Eve3 Display Help
- Replies: 12
- Views: 8334
ESP32 & Eve3 Display Help
Good afternoon everyone,
I am seeking help in connecting an Eve 3 Display - https://www.matrixorbital.com/ftdi-eve/eve-bt815-bt816/eve3-50a-ips
This is a non-touch model with 128 mb of flash.
I am trying to connect it to an ESP32 board as per the included photo. I have compiled the https://github ...
I am seeking help in connecting an Eve 3 Display - https://www.matrixorbital.com/ftdi-eve/eve-bt815-bt816/eve3-50a-ips
This is a non-touch model with 128 mb of flash.
I am trying to connect it to an ESP32 board as per the included photo. I have compiled the https://github ...