Hello everyone, I have been trying for several days to get this screen to work with the Tennsy 4.0 but nothing works. I probably have to get mixed up in the connections, could you help me?
I probably have to get mixed up in the connections, could you help me?
here is what the serial wrote to me with the library of Kurts_ILI9488_t3n_and_clip_tests:
Begin: CS:10, DC:8RST: 9
Size of RAFB: 2
::begin 2000398c 255 255 255
ILI9488_t3::begin - End
Display Power Mode: 0x0
MADCTL Mode: 0x0
Pixel Format: 0x0
Image Format: 0x0
Self Diagnostic: 0x0
Just before frist draw Test Screen
Use FB: 0 235
1
Tennsy 9 => screen DC/RS
Tennsy 10 => screen CS
Tennsy 8 => screen RESET
hello, I don't know why but it works now,
I had to plug in several pines
but not include them in the script....
I will be able to move forward with my project thank you all
ILI9488_t3(&SPIx, TFT_CS, TFT_DC, TFT_RST, TFT_MOSI, TFT_SCK, TFT_MISO) ;
Thank you for this additional informationThe library defaults to using SPI pins 11 (MOSI) , 12 (MISO) and SCK (13). The constructor you are using in the ILI9488_t3 library uses the default pins so no need to specify them. Now if you wanted to use a different SPI bus for example you would have to use the full constructor as shown in the example and specify all the pins
Code:ILI9488_t3(&SPIx, TFT_CS, TFT_DC, TFT_RST, TFT_MOSI, TFT_SCK, TFT_MISO) ;