thelastoutpostworkshop / ESP32ManyRoundScreenTest

Can the ESP32 handle 6 animated GIFs on 6 different Screens at the same time ?
https://youtu.be/0YEKLuVf1E4
MIT License
12 stars 3 forks source link

need help to remap ESP32-s3 N16R8 #1

Open bereza0007 opened 4 months ago

bereza0007 commented 4 months ago

hello, if you can help me to remap for ESP32 s3 wroom1 n16r8, really appreciated, watched all your videos, cant find solution. I made some .h videos but cant fit to 3mb flash. esp32-s3 wroom1 n16r8 - 1 esp32-s3 wroom1 n16r8

thelastoutpostworkshop commented 4 months ago

There is a limit on how many .h you can load into program memory, program memory is limited.

bereza0007 commented 4 months ago

Sorry, issue not with .h Problem with ESP32 n16r8 Some GPOI pins from your video not matching with my ESP32 n16r8 How to reassigned pins ?

On Thu, May 23, 2024, 3:21 AM thelastoutpostworkshop < @.***> wrote:

There is a limit on how many .h you can load into program memory, program memory is limited.

— Reply to this email directly, view it on GitHub https://github.com/thelastoutpostworkshop/ESP32ManyRoundScreenTest/issues/1#issuecomment-2126749361, or unsubscribe https://github.com/notifications/unsubscribe-auth/AK7VP4QTHBXI7NJ64WRM73LZDW7MDAVCNFSM6AAAAABIE5GPHSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRWG42DSMZWGE . You are receiving this because you authored the thread.Message ID: <thelastoutpostworkshop/ESP32ManyRoundScreenTest/issues/1/2126749361@ github.com>

bereza0007 commented 4 months ago

i guess said wrong about remap. what i mean pins, sorry

bereza0007 commented 4 months ago

yt

thelastoutpostworkshop commented 4 months ago

Based on the pinout of your board, in Setup46_GC9A01_ESP32,h would try these : TFT_MOSI 4 TFT_SCLK 5 TFT_DC 6 TFT_RST 7

For the CS of the screens you can use any of these : 15,16,17,18,8, 9, 10,11,12,13

bereza0007 commented 4 months ago

Hello, I think you talking about Setup46_GC9A01_ESP32,h in your "Master DALL-E Image Generation with ESP32!" setup, correct?

I am referring to your "Can the ESP32 Handle 6 animated GIFs on 6 Screens ?" video, i cant locate Setup46_GC9A01_ESP32,h

i just need to figure out how to define BUS pins to work in that code for esp32 n16r2 chip, ,BTW, its the same DEV Board u used for Dalle video.

Thanks you,

thelastoutpostworkshop commented 4 months ago

if you have the TFT_eSPI library installed, you should be able to navigate to TFT_eSPI.h, then to User_SetupSelect.h.
In that header file, you will find this line // #include <User_Setups/Setup46_GC9A01_ESP32.h> // Setup file for ESP32 and GC9A01 SPI bus TFT 240x240 You have to uncomment it.
it is in this header file that you defined SPI pins, I am not sure what you mean by BUS pins.