Can the ESP32 Handle 6 animated GIFs on 6 Screens ?

  Рет қаралды 39,888

The Last Outpost Workshop

The Last Outpost Workshop

Күн бұрын

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, ESP32 & 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.buymeacoff...
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/the...
#ESP32 #TechExperiment #MultiscreenMagic #AnimatedGIFs #MicrocontrollerMagic

Пікірлер: 98
@drgusman
@drgusman 11 ай бұрын
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 11 ай бұрын
Thanks a lot for the explanation!
@Psirust
@Psirust 11 ай бұрын
Good explanation... except these screens are not SPI. They are I2C... which is even slower than SPI by orders of magnitude.
@drgusman
@drgusman 11 ай бұрын
@@Psirust They are SPI, you can check the datasheet, the controller is a GC9A01
@Psirust
@Psirust 11 ай бұрын
​@@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 11 ай бұрын
@@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
@Axeiaa
@Axeiaa 11 ай бұрын
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 11 ай бұрын
It's possible to run those animations on esp32 with espidf only. That project KZbin channel has a video on it. I haven't seen it on Arduino ide yet.
@AmstradExin
@AmstradExin 11 ай бұрын
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.
@patrickwasp
@patrickwasp 11 ай бұрын
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.
@markwarburton8563
@markwarburton8563 11 ай бұрын
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.
@olafschermann1592
@olafschermann1592 11 ай бұрын
Awesome Experiment. Thank you . Please more of that!
@DrKaufee
@DrKaufee 11 ай бұрын
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 10 ай бұрын
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.
@0ffGridTechClub
@0ffGridTechClub 2 ай бұрын
Awesome ! I want to make one into an oscilloscope with dual display (data and clock )
@imprudens
@imprudens 11 ай бұрын
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 11 ай бұрын
Yes you’re right! Thanks for letting me know
@woofcaptain8212
@woofcaptain8212 11 ай бұрын
Yeah if I remember correctly the 3.3v regulator is rated to 500ma. Tho I might be confusing the 8266 and 32
@Sergio-np4lb
@Sergio-np4lb 10 ай бұрын
It would be great to see the sequence of the plans that Leia gives to R2 on how to destroy the Death Star
@NewtoRah
@NewtoRah 11 ай бұрын
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 11 ай бұрын
I would give it a try!
@0LoneTech
@0LoneTech 10 ай бұрын
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 11 ай бұрын
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 11 ай бұрын
Thanks for your suggestion you gave me ideas to look into it
@TheRainHarvester
@TheRainHarvester 11 ай бұрын
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(?).
@TheRainHarvester
@TheRainHarvester 11 ай бұрын
Decompress once and store the decompressed data. Then just send data[frame++]. No more bottle neck in esp32.
@halollisimo
@halollisimo 11 ай бұрын
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 11 ай бұрын
Yes you are right, all this come into play and a large frame buffer is indeed needed which is a major limitation on microcontroller
@bwetdude
@bwetdude 4 ай бұрын
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!
@HeymynameisMitch
@HeymynameisMitch 11 ай бұрын
thanks man, very inspiring
@hauntedgroundz1189
@hauntedgroundz1189 3 ай бұрын
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 3 ай бұрын
Seek this video where I run two TFT with ESP32 including how to connect the pins and configure the driver : kzbin.info/www/bejne/pp6mlGqwlLKcbqs
@user-dx3gt2dp7f
@user-dx3gt2dp7f 7 ай бұрын
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
@tvgenie8416
@tvgenie8416 Ай бұрын
It's even more amazing that we can connect wifi between the esp32 and the phone to change many different gif images through the esp32's web server, can you guide me? thank you
@silverback3633
@silverback3633 11 ай бұрын
Gives us an insight into the graphical capability of the ESP32.
@ShadowDrakken
@ShadowDrakken 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 11 ай бұрын
Thanks for the explanation
@Ncky
@Ncky 11 ай бұрын
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 10 ай бұрын
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.
@imlassuom
@imlassuom 11 ай бұрын
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.
@lindendrache8998
@lindendrache8998 4 ай бұрын
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 4 ай бұрын
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 4 ай бұрын
@@thelastoutpostworkshop THANK YOU, IT WORKS!!! OMG!! :D
@Chinito82
@Chinito82 Ай бұрын
One question, is there a way to modify the code, so that the screens have a power delay between them? For example, that the first 2 turn on normal and the rest turn on 10 seconds later? I appreciate it, this video has teach me a lot. I have learned a lot from it!
@thelastoutpostworkshop
@thelastoutpostworkshop Ай бұрын
Thank you, I do not think you can have power control, meaning control the voltage supply on the screens. But you can add a simple delay() function to delay the gif playing on the screens
@Chinito82
@Chinito82 Ай бұрын
​@thelastoutpostworkshop that's awesome 👌 but how to add the delay on the ino code?
@SantiSaputra-vt8gl
@SantiSaputra-vt8gl 3 ай бұрын
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 3 ай бұрын
Micro SD card is too slow, consider transferring the GIFs into memory before playing them
@jmjmjm439
@jmjmjm439 11 ай бұрын
Isn't the last example just broadcasting the same image to all screens, therefore only using 1/6 of the bandwidth?
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
Maybe I but I am not sure
@mrbeefhead
@mrbeefhead 11 ай бұрын
your english is cookie.
@MrYoshiCraft
@MrYoshiCraft 9 ай бұрын
Hi, thanks for the video! Just one queation, is it possible to use bigger screens, such as a 3" circular display?
@thelastoutpostworkshop
@thelastoutpostworkshop 9 ай бұрын
I did not see round screen larger available on the market, if I happen to see one, I will try it
@CAPTINKING
@CAPTINKING 11 ай бұрын
very nice!!
@clomads
@clomads 11 ай бұрын
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 11 ай бұрын
In my experimentation, the cost involved in chip selection is negligible vs the cost of reading and decompressing the GIFs for each frame
@MrFusionDesigns
@MrFusionDesigns 11 ай бұрын
Thats awesome this is exactly what i need but only with 5 screen 👏
@affinitystablepeanuts
@affinitystablepeanuts 11 ай бұрын
Looks nice.
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
It does!
@matthewjsherman
@matthewjsherman 7 ай бұрын
how do i get my 240x320 tft display esp32 to display gifs? im a complete novice
@thelastoutpostworkshop
@thelastoutpostworkshop 7 ай бұрын
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.
@bensoloart
@bensoloart 6 ай бұрын
can you please explain how to assign CS pins through the code?
@thelastoutpostworkshop
@thelastoutpostworkshop 6 ай бұрын
There is an explanation in this video : kzbin.info/www/bejne/sHPdenWIqMieitk
@bensoloart
@bensoloart 6 ай бұрын
@@thelastoutpostworkshop thank you so much! i have been trying to figure this out for so long. i actually followed your sd card one.
@user-gd2sg5tv4m
@user-gd2sg5tv4m 8 ай бұрын
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 8 ай бұрын
Thank you! Is the other LCD on the same SPI bus and with a different CS pin than the first ?
@user-gd2sg5tv4m
@user-gd2sg5tv4m 8 ай бұрын
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​
@EasyOne
@EasyOne 11 ай бұрын
nice
@veitklub
@veitklub 11 ай бұрын
4mb Ram? it does have 512kb ram i think? and 4mb flash ....
@Chinito82
@Chinito82 9 ай бұрын
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 9 ай бұрын
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 9 ай бұрын
What are the errors you get on the serial monitor ?
@Chinito82
@Chinito82 9 ай бұрын
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?
@warheaven999
@warheaven999 11 ай бұрын
with 6 screens, you can build an electronic dice
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
Nice idea!
@Alex-ck4in
@Alex-ck4in 11 ай бұрын
Could the program itself be doing suboptimal processing for such a task? (Sorry, im a software guy 😂)
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
Yes the program is not optimal, there are constraints introduced to minimize memory allocation
@blueocean7064
@blueocean7064 Ай бұрын
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 Ай бұрын
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 Ай бұрын
@@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
@GeeEmJay
@GeeEmJay 11 ай бұрын
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!
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
Thanks for the suggestion, I will try it
@andraznovak6735
@andraznovak6735 11 ай бұрын
But these are just reading the bitmaps from memory and don't have to do any decoding, right?
@thelastoutpostworkshop
@thelastoutpostworkshop 11 ай бұрын
They have to be decoded because the bitmaps would be much too large for the memory of the ESP32
@andraznovak6735
@andraznovak6735 11 ай бұрын
@@thelastoutpostworkshop How do you convert gifs to header files?
@halollisimo
@halollisimo 11 ай бұрын
@@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 10 ай бұрын
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.
@bendtherules0
@bendtherules0 11 ай бұрын
Esp32-s3 should perform better
@tungngothanh4756
@tungngothanh4756 11 ай бұрын
Can you make the eye size? kzbin.info/www/bejne/gZaUhH1uYputgNk Because you have a video tutorial about the eye but it is not as big as above thank you
Bring GIFs to Life: Animating with Round Displays & ESP32
27:26
The Last Outpost Workshop
Рет қаралды 34 М.
STM32 Guide #1: Your first STM32 dev board
12:12
Mitch Davis
Рет қаралды 206 М.
What will he say ? 😱 #smarthome #cleaning #homecleaning #gadgets
01:00
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 41 МЛН
这三姐弟太会藏了!#小丑#天使#路飞#家庭#搞笑
00:24
家庭搞笑日记
Рет қаралды 94 МЛН
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Рет қаралды 570 М.
Building a haptic input knob from scratch!
11:29
scottbez1
Рет қаралды 1,1 МЛН
Run Linux on ESP32 - how to run the Linux kernel on an ESP32
19:53
6 Horribly Common PCB Design Mistakes
10:40
Predictable Designs
Рет қаралды 191 М.
Forget WiFi! This Wireless Method is WAY Better?
12:14
GreatScott!
Рет қаралды 563 М.
I found PERFECT display
51:32
upir
Рет қаралды 589 М.
#269 TFT 3.5" Touch Screen & ESP32 built in - Elecrow review
26:42
Ralph S Bacon
Рет қаралды 32 М.
Why build an entire computer on breadboards?
28:43
Ben Eater
Рет қаралды 3,1 МЛН
How to Design Mechanical Keyboard PCBs with Kicad
20:19
Joe Scotto
Рет қаралды 86 М.
Exotic Round Displays and How to Use Them
14:21
Mr. Volt
Рет қаралды 336 М.
Google Pixel 9/Pro Review: Gimmick or Good?
24:05
Marques Brownlee
Рет қаралды 3,5 МЛН
Nokia…
0:19
Eggified
Рет қаралды 2,4 МЛН
I phone 14 pro max Vs Samsung galaxy s23 ultra #mobiles #challenge
0:20
Как настроить камеру хоп-ап
1:00
TimToker
Рет қаралды 3,4 МЛН
Слетела прошивка на LiXiang L7
1:01
Настя ЧПЕК Туман
Рет қаралды 4,1 МЛН