Replies: 2 comments 1 reply
-
Display has started to showing something, once I changed SPi freq to 5 MHz. |
Beta Was this translation helpful? Give feedback.
1 reply
-
This seems to use the "SPI2" controller. In your Setup70b_ESP32_S3_ILI9341.h, you may try adding:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have issue with using ili9341. After all manipulation and setup display only blinks weakly each time tft.fillRect is called.
I have esp32s3 N16R8
![image](https://user-images.githubusercontent.com/22212232/198972760-10af13d4-572f-4da6-a72e-2b292110c5bc.png)
ili9341 display.
![image](https://user-images.githubusercontent.com/22212232/198973034-5a651b89-6f07-4046-a667-c938d86d0337.png)
I connected spi as mentioned alternative for esp32s3 SPI2 or FSPI.
#define TFT_CS 10 // 10 or 34 (FSPI CS0)
#define TFT_MOSI 11 // 11 or 35 (FSPI D)
#define TFT_SCLK 12// 12 or 36 (FSPI CLK)
#define TFT_MISO 13 // 13 or 37 (FSPI Q)
LED pin or backlight is connected to 3.3V. Display and esp are powered from 3.3V
For code I used ellipse example https://github.com/Bodmer/TFT_eSPI/blob/master/examples/320%20x%20240/TFT_Ellipse/TFT_Ellipse.ino
Configs.
In User_Setup_Select.h I commented
#include <User_Setup.h>
and uncommented
#include <User_Setups/Setup70b_ESP32_S3_ILI9341.h>
In config file I changed PIN definition as mentioned above.
Added RGB instead of BGR and specify height and width (320x240)
But display only blinks. No picture, no drawing, nothing. Only looks like it on and off backlight with 2000 ms delay.
No runtime errors.
Please help me to explain what is issue here.
Beta Was this translation helpful? Give feedback.
All reactions