Can the ESP32 Handle 6 animated GIFs on 6 Screens ?

Sdílet
Vložit
  • čas přidán 3. 09. 2023
  • Dive in as the ESP32 microcontroller simultaneously animates 6 unique GIFs on vibrant round screens, showcasing its impressive multitasking abilities. From sci-fi HUDs to Star Wars animations, witness the blend of tech and art while understanding the intricacies of the SPI bus, frame rates, and power dynamics. Enjoyed the journey? Like, subscribe, and share your thoughts in the comments!
    Watch all the Arduino Display videos : • Arduino & Display
    Components:
    Round Display with pin headers : amzn.to/3L4pud6
    Round Display with JST: amzn.to/3CJjbHy
    ESP32 38 narrow pins: amzn.to/3OwNKFt
    🔔 Support the channel🔔
    www.buymeacoffee.com/thelasto...
    Please note that the product links are Amazon affiliate links. As an Amazon Associate, I earn from qualifying purchases at no additional cost to you. This helps support the channel and allows me to continue creating content for you. Thank you for your support!
    Code for the demonstration:
    github.com/thelastoutpostwork...
    #ESP32 #TechExperiment #MultiscreenMagic #AnimatedGIFs #MicrocontrollerMagic
  • Věda a technologie

Komentáře • 91

  • @drgusman
    @drgusman Před 9 měsíci +51

    SPI screens are notably slow. These screens are 240x240 pixels at 16 bit, so each frame is 115200 bytes of RAW data. If you clock the SPI at 40Mhz you can transfer a maximum of 4.8Mbps, that's 43 frames per second without taking in account the commands for the transfer (those are not much, but they count) and the delay between transfers. Then you need to add that while you are transferring data you are blocking the cores, so at the end you get those ~24fps with one single screen. To achieve maximum performance you can use DMA, the second core and a double buffer: in the first core you decode one frame, signal the second core to transfer that buffer, the second core prepares the DMA and triggers the transfer, meanwhile the first core starts decoding the next frame in the second buffer and so on, with this you remove any delay between transfers and maximize the time the first core can work in decoding frames. In fact the first core will end decoding a lot faster than the DMA transfer to the screen so you will need to synchronize the cores and ensure that the DMA transfer has finished before signaling the start of a new transfer.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 9 měsíci +5

      Thanks a lot for the explanation!

    • @Psirust
      @Psirust Před 9 měsíci +1

      Good explanation... except these screens are not SPI.
      They are I2C... which is even slower than SPI by orders of magnitude.

    • @drgusman
      @drgusman Před 9 měsíci +5

      @@Psirust They are SPI, you can check the datasheet, the controller is a GC9A01

    • @Psirust
      @Psirust Před 9 měsíci +2

      ​@@drgusman My apologies. I stand corrected.
      I just checked and it is indeed SPI. Usually SPI is labelled with MOSI, MISO, CS and CLK, however, the labelling on the pins give the appearance of I2C with SDA and SCL.

    • @drgusman
      @drgusman Před 9 měsíci +3

      @@Psirust Yeah, I know, I don't know why but these chinese manufacturers this days tend to put SDA and SCL instead of MOSI and CLK in that type of screen even if it's SPI, the only good way to discern it is to check if there is a CS line, posibly they have no clue on what they're building... xD

  • @0ffGridTechClub
    @0ffGridTechClub Před 4 dny +1

    Awesome ! I want to make one into an oscilloscope with dual display (data and clock )

  • @patrickwasp
    @patrickwasp Před 10 měsíci +12

    Would be great to see how to use lvgl or similar to create a fluid ui with for example smooth scroll and page transition animations.

  • @Axeiaa
    @Axeiaa Před 9 měsíci +14

    GIFs have always been an extremely compute intensive format. Those sites where back in the day you could download animated emojis from would have your desktop CPU running at 100%.
    The smoothest animations I've seen so far on the ESP32 are from 'Lottie'. No idea how easy or hard it is to get running though.

    • @muhammadshahzaib3813
      @muhammadshahzaib3813 Před 9 měsíci

      It's possible to run those animations on esp32 with espidf only. That project CZcams channel has a video on it. I haven't seen it on Arduino ide yet.

    • @AmstradExin
      @AmstradExin Před 9 měsíci

      Well Gif's themselves not really. But animated GIF's run an uncompiled script that displays an image after decoding it for a specific amount of time and converting each frame to modern graphics is a lot of programming. It is an obsolete format for really old computers that is so taxing because of its obsolesence.

  • @olafschermann1592
    @olafschermann1592 Před 9 měsíci +1

    Awesome Experiment. Thank you
    . Please more of that!

  • @HeymynameisMitch
    @HeymynameisMitch Před 10 měsíci +1

    thanks man, very inspiring

  • @markwarburton8563
    @markwarburton8563 Před 9 měsíci +4

    The ESP has 2 x SPI: HSPI and VSPI. You can use the first SPI with the first core and the second SPI with the second core. This should cut down on latency. You can also try other animated-GIF-like formats, such as APNG, WebP, AVIF, MNG and FLIF, to see if they lower your processing overhead.

  • @CAPTINKING
    @CAPTINKING Před 9 měsíci

    very nice!!

  • @DrKaufee
    @DrKaufee Před 9 měsíci +5

    I’ve been doing a few screen based projects lately involving esp32’s and screens, and memory management has been a real struggle. But Incase it matters, on top of confirming what others have said, (I’ve yet to have any problems with spi at 40mhz, and atleast on the S3 chip 80mhz has been pretty happy too), if this still turns out to be insufficient remember that on top of having two cores and command queue capabilities, you also have 2 hardware spi buses, HSPI and VSPI, so you could split the screens 3+3 and cut the bandwidth toll in half.

    • @0LoneTech
      @0LoneTech Před 8 měsíci

      You can go wider than that. It's not obvious from the name, but the I2S 0 peripheral has an LCD mode allowing you to DMA 8, 16 or 24 bits wide, and the SPI devices support 2 bit DIO and 4 bit QSPI transfers. It's not RP2040 level, but quite capable if you get a little hacky.
      It's likely this program would benefit from putting the decompression routine in RAM, so it won't get evicted from cache during data reads. After that, verify the program is double buffering correctly, and then run two processors.
      The LCD driver chip (GC9A01) also supports 2 bit SPI, which would be SPI_TRANS_MODE_DIO in the ESP32 SPI.

  • @Sergio-np4lb
    @Sergio-np4lb Před 8 měsíci +1

    It would be great to see the sequence of the plans that Leia gives to R2 on how to destroy the Death Star

  • @affinitystablepeanuts
    @affinitystablepeanuts Před 10 měsíci

    Looks nice.

  • @imprudens
    @imprudens Před 10 měsíci +7

    The power consumption part not correct. You just checked the absolute max io current of the ESP chip itself. 1: you should never reach absolute max. There is a recommended max value in the datasheet. 2: IO pin and power pin is not the same. You are not powering the screen from an IO pin but from the 3.3V regulator on the board. So you should check the datasheet of the LDO not the ESP32. 3: the current draw that you measured is on the 5V USB rail, but your screen is powered from 3.3V. If there is a linear regulator then the current is roughly the same. But if you have a switching mode PSU then the 3.3V current is like 5/3.3 = 1.5 times more then the measured on 5V.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci +3

      Yes you’re right! Thanks for letting me know

    • @woofcaptain8212
      @woofcaptain8212 Před 10 měsíci +1

      Yeah if I remember correctly the 3.3v regulator is rated to 500ma. Tho I might be confusing the 8266 and 32

  • @bwetdude
    @bwetdude Před 2 měsíci

    Je vais t'checker tes vidéos de proche!
    Je suis en train de (re)faire mes fichiers 3D pour imprimer un blaster DL-21 (Star Wars) et je voulais lui rentrer un écran rond dans le scope un 2e carré dans le body!
    En plus des piou-piou et d'une DEL qui pourrait flasher fort dans le canon.
    Aaaaanyway... Lâche pas la patate!

  • @halollisimo
    @halollisimo Před 9 měsíci

    interesting thing about GIF decoding is that decoding speed tightly depends on content you have in your GIF, so it means that if your GIF frame has lots of different pixels, wide palette (but it will still be limited to 256 color palette i think) - decoding rate will be slow because decompressor output might redraw large portion of screen, but if your GIF frame has, say, text characters appearing on black background (like that console animation) - frame rate will be high because decompressor will only give you "parts that have changed since last frame", if i understand the process correctly. there is also separate song and dance around transparency handling, to do proper which you need a large framebuffer, but you should be good if your gif does not use transparency pixels

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 9 měsíci

      Yes you are right, all this come into play and a large frame buffer is indeed needed which is a major limitation on microcontroller

  • @TheRainHarvester
    @TheRainHarvester Před 9 měsíci +2

    Decompress once and store the decompressed data. Then just send data[frame++]. No more bottle neck in esp32.

  • @EasyOne
    @EasyOne Před 9 měsíci

    nice

  • @NewtoRah
    @NewtoRah Před 10 měsíci +3

    I'm not sure what the default is for TFT_eSPI, but you may be able to bump up the communication speed as well. 40MHz is usually pretty stable with an esp32, and I've had some luck with 80MHz as well, although it won't help much if the bottleneck is in managing the gifs themselves, and not the transfer rate

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci

      I would give it a try!

    • @0LoneTech
      @0LoneTech Před 8 měsíci

      The default appears to be 27MHz SPI clock, which combined with partial updates and 16 bits per pixel gives a theoretical limit of about 1/(6*240*240*16 bit / 27Mbit/s) * 4/pi ≈ 6.21 fps. Combine this with how the decoder can't run more than one or two lines ahead, and it looks like this is a relevant bottleneck.
      The ESP32 documentation hints that 27MHz might be the limit when going through the GPIO matrix, but using tightly coupled IO_MUX pins can reach 80MHz.
      For extra fun, it appears the dual data serial mode has a different bit order in the ESP32 and display controller, so the palette format would need to be rearranged.

  • @anonymanonymni9701
    @anonymanonymni9701 Před 10 měsíci +3

    Honestly I think that the mirroring is caused by all the displays reading the same data.. since they are in parallel and you wanted only to play the gif on the first display anyway, i think there was a error in the code that pulled all CS pins active, therefore every display read the data.. imho the real limit is the spi bus, because with every display you need to send more data through the same bus.. maybe try just blinking the LCD from black to white and see the limit.. you will bypass delay with reading the gif and measure the real bandwith to the display.
    btw i'm also working on a project with esp32, i'm making a led bus panel (using P10 monochrome displays) to show the line number etc. and i was blown away by the performance of the esp32

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci

      Thanks for your suggestion you gave me ideas to look into it

    • @TheRainHarvester
      @TheRainHarvester Před 9 měsíci

      Yes good idea to test where the bottle neck is.
      Also
      If there isn't enough memory to store the decompressed gif, try decompressing only 1....or 2...or 3. You could double the frame rate if only 2 were pre-decompressed(?).

  • @user-dx3gt2dp7f
    @user-dx3gt2dp7f Před 5 měsíci

    I think it would be great if you could make a digital version of the nixie clock on these displays or a simple digital clock using images

  • @MrYoshiCraft
    @MrYoshiCraft Před 7 měsíci

    Hi, thanks for the video!
    Just one queation, is it possible to use bigger screens, such as a 3" circular display?

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 7 měsíci +1

      I did not see round screen larger available on the market, if I happen to see one, I will try it

  • @MrFusionDesigns
    @MrFusionDesigns Před 10 měsíci +1

    Thats awesome this is exactly what i need but only with 5 screen 👏

  • @hauntedgroundz1189
    @hauntedgroundz1189 Před měsícem +1

    Great Video, i was watching your other TFT videos, and have question, Any posibilities to run 2 x TFT on esp32 c3 super micro Pcb board, also i am truing to find Pin Assignment in your code, no lack.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před měsícem +1

      Seek this video where I run two TFT with ESP32 including how to connect the pins and configure the driver : czcams.com/video/pmCc7z_Mi8I/video.html

  • @imlassuom
    @imlassuom Před 9 měsíci

    Waiting part2...!! Get help from all smart programmers in order to let second core participating in the decoding process and use all available hardware to its limit to transfer data.

  • @bensoloart
    @bensoloart Před 4 měsíci

    can you please explain how to assign CS pins through the code?

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 4 měsíci

      There is an explanation in this video : czcams.com/video/zBzIBRsckTw/video.html

    • @bensoloart
      @bensoloart Před 4 měsíci

      @@thelastoutpostworkshop thank you so much! i have been trying to figure this out for so long. i actually followed your sd card one.

  • @silverback3633
    @silverback3633 Před 10 měsíci +3

    Gives us an insight into the graphical capability of the ESP32.

  • @jmjmjm439
    @jmjmjm439 Před 10 měsíci +1

    Isn't the last example just broadcasting the same image to all screens, therefore only using 1/6 of the bandwidth?

  • @SantiSaputra-vt8gl
    @SantiSaputra-vt8gl Před měsícem

    I have modified it by reading the gif on a micro SD and using 2 tft displays, it has succeeded but I have a problem with the fps dropping

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před měsícem

      Micro SD card is too slow, consider transferring the GIFs into memory before playing them

  • @matthewjsherman
    @matthewjsherman Před 5 měsíci

    how do i get my 240x320 tft display esp32 to display gifs? im a complete novice

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 5 měsíci

      First make sure your display is supported by the TFT_eSPI library and a driver is provided for your display. Next you will have to make some adjustments to the code to adapt to a 230x320 pixels screen. You also need to make sure you have enough memory. Start with one screen at a time.

  • @mrbeefhead
    @mrbeefhead Před 9 měsíci

    your english is cookie.

  • @clomads
    @clomads Před 9 měsíci

    Can you try splitting it across two SPI buses? I’m not super knowledgeable about this, but you are sending all the data down a single serial bus rather than paralleling the data transmission. I’m assuming there’s a time cost involved in the whole chip selection function.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 9 měsíci

      In my experimentation, the cost involved in chip selection is negligible vs the cost of reading and decompressing the GIFs for each frame

  • @Chinito82
    @Chinito82 Před 7 měsíci

    I have a question for you! I run the 6 screens and everything runs good!
    I want to use a tft display gc9107 T-0.85 from lilygo, the first screen runs goog but to fast on 100 fps, when I add the second display the code upload good but the screen blocks and the serial monitor shows error!
    Do I need to modify the code for this displays?

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 7 měsíci

      It appears not supported directly by the TFT_espi library, here is the comment by the developer of the library : The module seems to have a new display controller type GC9107. This appears to have the same commands and register init values as the GC9A01 but has different offsets since not all the pixel capability is used. I think this ideally needs another driver file set to avoid confusion. e.g. #define GC9107_DRIVER. This is simple to implement and I may be able find time to update the library the near future. In the meantime I see you have a solution.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 7 měsíci

      What are the errors you get on the serial monitor ?

    • @Chinito82
      @Chinito82 Před 7 měsíci

      Sorry for the delay. I fix the problem on the serial monitor.
      Now for some reason I want to run different displays with a different driver, (st7735 128x128)
      But only run the 1st display and don't want to run the other ones. Do I need to configure something on the code maybe?

  • @lindendrache8998
    @lindendrache8998 Před 2 měsíci

    You are my hero - I managed to get two displays to work, thank you so much! I have a question please: Can you tell me how to make the GIF animation slower? If I put in more frames, the gif gets too big... But I need it to be slower - can you tell me which parameter in the code to change? Thank you so much!

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 2 měsíci

      You can change the first parameter of this function to true : gif->playFrame(true, NULL);
      or you can a a delay() between each frame.

    • @lindendrache8998
      @lindendrache8998 Před 2 měsíci

      @@thelastoutpostworkshop THANK YOU, IT WORKS!!! OMG!! :D

  • @user-gd2sg5tv4m
    @user-gd2sg5tv4m Před 6 měsíci

    Hello, I am your fan.
    I used your code using esp32 dev module on 30pin.
    But why does the gif change very quickly on one LCD and the other LCD does not respond? What is the reason??

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 6 měsíci

      Thank you! Is the other LCD on the same SPI bus and with a different CS pin than the first ?

    • @user-gd2sg5tv4m
      @user-gd2sg5tv4m Před 6 měsíci

      Yes, all other pins are the same, and only cs pins are applied differently.
      Use only 1 "gc9a01" >> 6 gif files to convert quickly
      Use only two "gc9a01" >>>>>"gc9a01" in number 2 fixed output one fixed gif image, but the first "gc9a01" quickly changes six gifs..@@thelastoutpostworkshop​

  • @Alex-ck4in
    @Alex-ck4in Před 10 měsíci

    Could the program itself be doing suboptimal processing for such a task? (Sorry, im a software guy 😂)

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci +1

      Yes the program is not optimal, there are constraints introduced to minimize memory allocation

  • @veitklub
    @veitklub Před 9 měsíci +2

    4mb Ram? it does have 512kb ram i think? and 4mb flash ....

  • @warheaven999
    @warheaven999 Před 9 měsíci

    with 6 screens, you can build an electronic dice

  • @ShadowDrakken
    @ShadowDrakken Před 10 měsíci +11

    SPI communication has no defined speeds the way I2C does and can easily handle 10mbps. So, it's definitely the EPS32's limitations causing the framerates.

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci

      Thanks for the explanation

    • @Ncky
      @Ncky Před 9 měsíci

      depends, clock is limiting factor, esp32 can handle up to 80mhz clock, in his test clock is probbably in range from 20-40MHz. Using DMA it can be even faster

    • @0LoneTech
      @0LoneTech Před 8 měsíci

      Assuming 16 bit pixels and full display updates, it's already running at least 30Mbps. The ESP32 should be capable of 80Mbps (but the breadboard won't be), and the displays could be optimized by using D/C as data, not writing the corner regions, not writing static regions, and perhaps using a different colour depth. Sadly this display board lacks the TE line to prevent tearing.

  • @andraznovak6735
    @andraznovak6735 Před 10 měsíci

    But these are just reading the bitmaps from memory and don't have to do any decoding, right?

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 10 měsíci +1

      They have to be decoded because the bitmaps would be much too large for the memory of the ESP32

    • @andraznovak6735
      @andraznovak6735 Před 10 měsíci

      @@thelastoutpostworkshop How do you convert gifs to header files?

    • @halollisimo
      @halollisimo Před 9 měsíci

      @@andraznovak6735 you dont convert gifs to header files, you use decompressor library (AnimatedGIF in this case) to process gif binary and library outputs pixels while it decodes gif blocks within that binary

    • @0LoneTech
      @0LoneTech Před 8 měsíci

      You can convert arbitrary data to in memory data using objcopy. A similar process was done here to build header files, they're just hex dumps in C format. One tool to do this is xxd -include. This is the method (though not exact tool) of delivering the GIF data to the AnimatedGIF routines in this project, so halollisimo was mistaken. As long as the data is constant the ESP32 can store it in flash memory; that's why it uses const and PROGMEM.

  • @GeeEmJay
    @GeeEmJay Před 9 měsíci

    Try this on a Teensy 4.1 - 600mhz speed, ability to increase ram to 8 and even 16mb using PSRAM chips and 3 SPI bus lines!

  • @blueocean7064
    @blueocean7064 Před 3 dny

    Hello: thank you for this video tutorial.
    I have tried assembling according to the video here, using 2 TFT screens to display gif animations gif_1 and gif_2. The result displayed on the screens shows one screen perfectly, but on the second screen, the animations appear overlapped (gif_1 and gif_2 animations appear simultaneously).
    Please kindly provide information on what needs to be fixed.
    The program code is as follows:
    #include
    #include
    #include "AnimatedGIF.h"
    // Examples images
    #include "images/hyperspace.h"
    #include "images/hud_6.h"
    //#include "images/nostromo.h"
    //#include "images/hud_1.h"
    //#include "images/hud_2.h"
    //#include "images/hud_5.h"
    //#include "images/hud_7.h"
    //#include "images/darthvader.h"
    //#include "images/x_wing.h"
    //#include "images/bb8.h"
    // Adjust this value based on the number of displays
    const int NUM_DISPLAYS = 2;
    // Add more CS pins if you have more displays, each display must have a dedicated pin
    const int CS_PINS[NUM_DISPLAYS] = { 15, 22 };
    int currentScreenIndex = 0;
    AnimatedGIF gif_1;
    AnimatedGIF gif_2;
    //AnimatedGIF gif_3;
    //AnimatedGIF gif_4;
    //AnimatedGIF gif_5;
    //AnimatedGIF gif_6;
    TFT_eSPI tft = TFT_eSPI();
    unsigned long lastFrameSpeed = 0;
    void setup() {
    Serial.begin(115200);
    tft.init();
    for (int i = 0; i < NUM_DISPLAYS; i++) {
    pinMode(CS_PINS[i], OUTPUT);
    digitalWrite(CS_PINS[i], LOW); // select the display
    tft.fillScreen(TFT_BLACK);
    tft.setRotation(2); // Adjust Rotation of your screen (0-3)
    digitalWrite(CS_PINS[i], HIGH); // Deselect the display
    }
    openGif(&gif_1, hyperspace, sizeof(hyperspace));
    openGif(&gif_2, hud_6, sizeof(hud_6));
    //openGif(&gif_3, nostromo, sizeof(nostromo));
    //openGif(&gif_4, x_wing, sizeof(x_wing));
    //openGif(&gif_5, hud_2, sizeof(hud_2));
    //openGif(&gif_6, bb8, sizeof(bb8));
    }
    void loop() {
    playGif(&gif_1, 0);
    playGif(&gif_2, 1);
    //playGif(&gif_3, 2);
    //playGif(&gif_4, 3);
    //playGif(&gif_5, 4);
    //playGif(&gif_6, 5);
    }
    void openGif(AnimatedGIF *gif, const uint8_t *gifImage, int gifSize) {
    gif->begin(BIG_ENDIAN_PIXELS);
    if (!gif->open((uint8_t *)gifImage, gifSize, GIFDraw)) {
    Serial.printf("Could not open gif
    ");
    }
    }
    void playGif(AnimatedGIF *gif, int screenIndex) {
    currentScreenIndex = screenIndex;
    int res = gif->playFrame(false, NULL);
    if (res == 0) {
    // If no more frames are available, reset the GIF to the beginning
    gif->reset();
    gif->playFrame(false, NULL);
    }
    if (res == -1) {
    Serial.printf("Gif Error = %d on screen %d
    ", gif->getLastError(), screenIndex);
    }
    if (screenIndex == 0) {
    if (lastFrameSpeed == 0) {
    lastFrameSpeed = millis();
    } else {
    Serial.printf("Screen 0 FPS=%f
    ", 1000.0f / (millis() - lastFrameSpeed));
    lastFrameSpeed = millis();
    }
    }
    }
    Thank you.
    PS :
    when I disconnect the CS wires from pin 15 and 22, and restarted the esp32, then screen still can display the gif animation. but the 1st and 2nd screen appear overlapping animations ( gif_1 and gif_2 appear on the same time ).
    Pin connection :
    MOSI : 23
    CLK : 18
    CS : 15 and 22
    DC : 2
    RST : 4

    • @thelastoutpostworkshop
      @thelastoutpostworkshop  Před 2 dny

      If you see overlapping animation, it's a problem with CS pins. First thing make sure the GIFDdraw function has these lines at the beginning : digitalWrite(CS_PINS[currentScreenIndex], LOW); // Select the display
      tft.startWrite();
      and these lines at the end of the function : tft.endWrite();
      digitalWrite(CS_PINS[currentScreenIndex], HIGH); // Deselect the display
      Also make sure you can safely use pins 15 and 22 on your ESP32 development board.
      Try using other pins for CS.

    • @blueocean7064
      @blueocean7064 Před 2 dny +1

      @@thelastoutpostworkshop Hello Sir : Thank you for your reply. Highly apapreciated.
      Problem solved. I changed the cs pins. The Gifdraw function already has the command function as you wrote before. Thank you so much.
      Best regards,
      Samuel

  • @bendtherules0
    @bendtherules0 Před 9 měsíci +1

    Esp32-s3 should perform better

  • @tungngothanh4756
    @tungngothanh4756 Před 10 měsíci

    Can you make the eye size? czcams.com/video/Ke1SJ8-6zJw/video.html Because you have a video tutorial about the eye but it is not as big as above thank you