Тёмный

Animations on OLED display - Arduino 

Volos Projects
Подписаться 99 тыс.
Просмотров 199 тыс.
50% 1

Helloo! I created program which can be used to make simple animations for OLED display. It can generate code for each frame of GIF animation. In this video I will show you how to make this kind of animations. With these animations your project will look awsome. They are great for loading screens, waiting time or for games.
SUBSCRIBE HERE:
/ @volosprojects
You can also buy me a coffe at:
ko-fi.com/volo...
NEW SIMILAR VIDEO: • Making animation from ...
PLESAE SUBSCRIBE!
Follow me on Instagram / volosprojects
Buy this OLED display here:
www.banggood.c...
I am working hard to make quality content every week, feel free to check my channel and subscribe!
Thank youi My channel: / @volosprojects
LEARN HOW TO MAKE FRAME FROM THIS VIDEO :
• Freeform Arduino Project
Download Libraries :
github.com/stb...
github.com/ada...
Download emptyOled sketch:
drive.google.c...
Download working clock animation example:
drive.google.c...

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 272   
@VolosProjects
@VolosProjects 3 года назад
Buy this OLED display here: www.banggood.com/custlink/v33yHN9Gks
@paulaburbano180
@paulaburbano180 3 года назад
Great explanation,but could you post the sketch code? is not in the description :( thankss
@toaster_oven.
@toaster_oven. 2 года назад
@@ArduinoClub Hello, where did you find his program. I can't find it in the description.
@deadpooldagon4837
@deadpooldagon4837 2 года назад
@@ArduinoClub where do you find this program could you please tell me
@ArduinoClub
@ArduinoClub 2 года назад
​@@deadpooldagon4837Look at my channel, in the last video I posted a link to a blog that has all the information.
@deadpooldagon4837
@deadpooldagon4837 2 года назад
@@ArduinoClub I looked at it and it did not could you give me the link if you would be so kind
@umamaheshwar1587
@umamaheshwar1587 3 года назад
Can you give the download link of OLED animations software
@cookiece
@cookiece 6 месяцев назад
up
@ibnu001
@ibnu001 3 месяца назад
Wokwi animator
@FlorianB-j8d
@FlorianB-j8d 11 дней назад
4 years later you helped me that much thx !
@VolosProjects
@VolosProjects 10 дней назад
Nice to hear that, have fun 3😀
@hagiwakawai
@hagiwakawai 20 дней назад
I was trying to find a way to animation easily and this video is my life-saver! Thank you very much!!!
@cesarams0292
@cesarams0292 Год назад
Hey! Where can I find the links for the program? Thank you very much
@Grtiger100
@Grtiger100 3 года назад
Your OLED Animations application can't be downloaded when attempting you get the following message: Sorry, this file is infected with a virus Only the owner is allowed to download infected files.
@yugen042
@yugen042 3 года назад
Such great timing! I just happened to start a project that needs this and your tool will certainly come in handy. Much appreciated. Just out of principle I have to ask you to open source it though, I'm genuinely curious about the inner workings. Also what about color oleds/gifs?
@hamssadek7315
@hamssadek7315 Год назад
that was so helpful i tried more than a software to convert the pics but not a single one worked right so you helped me a lot thanks
@Elkkkkkk
@Elkkkkkk 2 года назад
thanks for the tutorial but the link to the program seems to be missing :/
@cantinasongband
@cantinasongband 4 года назад
This is really awesome! I have 2 comments for you. First, how can we make the animation display without blocking the arduino from doing other tasks? Second, instead of repeating the code to draw the bitmaps 28 times, you can run a for loop like this to make it easier to read the code, although it's still blocking code: int i = 0; int numFrames = 28; const unsigned char* frames[numFrames] = {frame0, frame1, frame2, frame3, frame4, frame5, frame6, frame7, frame8, frame9, frame10, frame11, frame12, frame13, frame14, frame15, frame16, frame17, frame18, frame19, frame20, frame21, frame22, frame23, frame24, frame25, frame26, frame27}; for (i; i < numFrames; ++i) { display.clearDisplay(); display.drawBitmap(xx, yy, frames[i], 48, 48, 1); display.display(); }
@BlueeBubble
@BlueeBubble 4 года назад
Hi, when I did this it said you didn't declare frames 🤔
@cantinasongband
@cantinasongband 4 года назад
@@BlueeBubble frames is the variable declared in the 3rd line. const unsigned char* frames[numFrames] it is an array of pointers when you try to use the code, is frames declared in the same code block as the for loop that uses it?
@shadowgreen123
@shadowgreen123 2 года назад
Try to use a scheduler and a method to increase the frames in each step
@GameFlife
@GameFlife Год назад
exactly what i needed for my tiny desk companion tks bro!
@N.g.Chanal
@N.g.Chanal 3 года назад
u r genius dear master.
@IlIDINOIlI
@IlIDINOIlI 3 года назад
Hvala na videu, nadam se da cu to uspijeti...
@grimonmilk7287
@grimonmilk7287 2 года назад
Hi this is a really good video but the one problem is that I can't find the software in the description. I may just be blind but if it isn't there please could I get the link?
@jeissondrenth8842
@jeissondrenth8842 2 года назад
drive.google.com/file/d/1ECufN2p8tpTUwq2UFgZK_Rq3wDmOACDo/view
@dreadbolt12
@dreadbolt12 4 года назад
Subscribed! Thank you for the content cant wait to start building my own arduino projects. also music is badass!
@MadhavMadupu-iy8vl
@MadhavMadupu-iy8vl 4 года назад
THE BEST VIDEO ABT OLED AND THESE THING WORK
@herschel1969
@herschel1969 3 года назад
ur software is useful and we can make videos in128x64 oled
@RosieResearch
@RosieResearch 4 года назад
This was great! My 4th grader was able to learn how to do this from your video! Her image is scaled improperly on height though (it is squished too tall), do you know how to fix the aspect ratio?
@asmrgrowth1190
@asmrgrowth1190 4 года назад
Here's a good link for that issue startingelectronics.org/tutorials/arduino/modules/OLED-128x64-I2C-display/
@soypunk666
@soypunk666 2 года назад
@@asmrgrowth1190 I don't think that answers the cuestion... I Have the same issue
@sibaramdatta5625
@sibaramdatta5625 Год назад
Your software of TFT animation from gif is not responding maximum time very slow support when responding. Can you give me some tricks of it.
@ferdinandvollmeyer8356
@ferdinandvollmeyer8356 3 года назад
Thanks for that, Greetz form Cologne, have Phun and stay healthy...
@playerx3608
@playerx3608 Год назад
Thank you Volos, I'm subscribing to your youtube channel, because your channel amazing 👍🏼👍🏼👍🏼
@stef3162
@stef3162 3 года назад
tnx for this awsome vid and your program it was so helpfull
@AetherGhoul
@AetherGhoul 4 года назад
Amazing, thanks
@cuarentenaviral4756
@cuarentenaviral4756 4 года назад
Subscribe you! de México x2
@kalban112
@kalban112 3 года назад
WOW, this is absolutely awesome, thank you mister
@miguel000127
@miguel000127 Год назад
hello can you post the OLEDanimations program pls ?
@jorgerallado
@jorgerallado 3 года назад
where can i find your aplication for animations?
@ashishdmc
@ashishdmc 3 года назад
Great tutorial. The OLED Animation Aplication is not downloading from the link. It says that its infected and only the owner can download it. Is there a workaround Thanks
@PabloLucio
@PabloLucio 3 года назад
Hello! First of all, thanks for the tutorial I have a simple question that I can't solve by myself. I can get the screen to show the animation and it's working fine, but don't know why, the image is stretching, so it's taller that I should (and it goes out from the screen in the down part), and it's less width that it should. Any idea about why this might be happening?
@bob-ny6kn
@bob-ny6kn 2 года назад
Set the display to 64 pix height (128 x 64)
@electronic7979
@electronic7979 4 года назад
Excellent
@izaknikabou2625
@izaknikabou2625 3 месяца назад
The application to download the code is not in description!! Please send link
@captainplatypus4294
@captainplatypus4294 2 года назад
Where is the download link for the software on the last step? the OLEDanimations.
@ernestorivero9909
@ernestorivero9909 2 года назад
Of these types of video there is a lot in you tube and they are very good but I look for one that is animations on led screens, for example I have a screen that I made with led WS2812B, which are addressable leds the screens is 64 pixels long x 24 high and I would like to know how to bring animations to this screen
@chivainmanfoumbi9026
@chivainmanfoumbi9026 3 года назад
You are just a PRO !!! Thanks for that video !!!!!
@eduardomoron9590
@eduardomoron9590 4 года назад
Great job mister!!!, I 'll subscribe and waithing news videos
@kevingpearce
@kevingpearce 3 года назад
Great video, but where is the download link for "LCD Assistant" ?
@axltrain838
@axltrain838 4 года назад
Thank you mate, you're awesome
@BHANUPRAKASH-nc8hz
@BHANUPRAKASH-nc8hz 4 года назад
thank you for your software ......😀👍
@GiegX
@GiegX 4 года назад
Wow thanks!! But, let me know, can we change the resolution to a different than 48x48 pix? I cant use 50x50 or 30x30 pix image cause it got messed up on OLED, only 48pix works fine
@teasyer
@teasyer 2 года назад
Thanks for this helpful video - I left a subscribtion for your channel
@dwalden74
@dwalden74 4 года назад
Great video! Just what I was looking for! 👍🏼👍🏼👍🏼
@VolosProjects
@VolosProjects 4 года назад
thank you :)
@matts2581
@matts2581 4 года назад
Absolutely the shizz' bro'. TY kindly for sharing this! :D
@threetimescursed
@threetimescursed Год назад
Great tutorial but you made it so hard to find the software. I just gave up
@beatlessteve1010
@beatlessteve1010 2 года назад
Previet! Comrad Voloyda!
@henrywood327
@henrywood327 4 года назад
Thank you so much friend, for sharing your knowledge.
@VolosProjects
@VolosProjects 4 года назад
i am glad you like it :)
@youtubesultan2543
@youtubesultan2543 2 года назад
thanks for sharing where i can found app OLEDanimations from you sir? thanks :D
@krafterHD
@krafterHD 4 года назад
Great tutorial. I got to the end with the laughing face but the animation speed is a lot slower than the one you show. tt is set to 0. Am I missing something?
@VolosProjects
@VolosProjects 4 года назад
You need to use libraries from description
@krafterHD
@krafterHD 4 года назад
@@VolosProjects Thank you very much. Adafruit_SSD1306_Wemos_OLED done the trick. I was using the wrong one and didn't realize it.
@aminsheykhzadeh4548
@aminsheykhzadeh4548 4 года назад
@@VolosProjects this library shows random spots and wrong location on my Oled...
@shadowgreen123
@shadowgreen123 4 года назад
@@aminsheykhzadeh4548 Same to me, I installed the version avaliable at Library Manager in IDE and the clock animation works fine.
@taltommie4247
@taltommie4247 Год назад
Great work !!Thanks for sharing !
@davydbar
@davydbar 2 года назад
Gracias por compartir y tu gran colaboración
@thiagosanches6754
@thiagosanches6754 4 месяца назад
This is gold! 🥇
@Lusitano95132
@Lusitano95132 4 года назад
Great work !!! Thanks for sharing !!!
@_adamalfath
@_adamalfath 4 года назад
BRAVO! Thanks man for the app, really useful
@wellingtongandolphiniwgand6207
@wellingtongandolphiniwgand6207 4 года назад
Hello, Volos Project, how are you? Thanks for sharing. I am trying to run the OLEDAnimations program but my antivirus and windows block the program. Would you have any other link to download the SW? would you have a paid license for SW?
@davidscottkrause1
@davidscottkrause1 3 года назад
You are a wizard!!! Great video!
@GIOVANNADUESPINOSA
@GIOVANNADUESPINOSA 3 года назад
very very interesting congratulation, thank you, hug to everyone
@offline5177
@offline5177 4 месяца назад
Hello. Do you have the OLEDanimations app? :D
@impulsembedded7147
@impulsembedded7147 2 года назад
That looks cool. Thanks for sharing man👍
@محمدمهدیبیات-ب8ن
thank you ,This video very useful
@thierry-yvesalvesaraujo7520
Thanks, my friend
@DreixeiGamer
@DreixeiGamer 3 года назад
Where can i see the download link for the OLEDanimations software
@zorabixun
@zorabixun 2 года назад
Could you explain, how is it to use only an Arduino chipset in the project ? .... I am new to it, so I can learn more about it, thanks 😊
@therealpepeu
@therealpepeu 4 года назад
I'm hooked and subscribed! Now I just need to start making stuff again.
@VolosProjects
@VolosProjects 4 года назад
thank you :)
@captainwaffle4768
@captainwaffle4768 Год назад
I don't find the download link for your program in the description, has it been deleted?
@VolosProjects
@VolosProjects 4 года назад
you are using wrong library, delete old OLED libraries (you have probaly standard Adafruit library), and install this one github.com/stblassitude/Adafruit_SSD1306_Wemos_OLED
@vinyltheif
@vinyltheif Год назад
Your software looks great! How many bytes are each frame? I intend to use a 16*32 display controlled from a PIC.
@ianthehunter3532
@ianthehunter3532 Год назад
do you figure out?
@TheCharlieMolina
@TheCharlieMolina 2 года назад
REALLY GREAT TUTORIAL !!!! THANKS !!!, I did'nt find the sketch, where is the link?
@Иван98
@Иван98 6 месяцев назад
Ё-маё, я ничего не понял 😂 Мне очень понравилось, надеюсь когда придет мой дисплей на ардуино получится сделать нечто похожее. Вам тоже Have a nice day
@clowzeradventure
@clowzeradventure Год назад
thanks for all this informations 😊
@ArduinoBoy
@ArduinoBoy 4 года назад
sir will it work on 0.96 inch display
@chivainmanfoumbi9026
@chivainmanfoumbi9026 3 года назад
how to get the OLED animations Software ?
@janzugic6798
@janzugic6798 4 года назад
wait a second, the options on your right click... the language. dobar video stari moj
@VolosProjects
@VolosProjects 4 года назад
Hvala 😀
@pandregumor
@pandregumor 3 года назад
Excellent video!!! ... I expect more videos, *I don't see the Links of the programs* ... very original, Saludos de Colombia.. suscrita
@syncro66500
@syncro66500 4 года назад
You're the best , THX
@riddletom646
@riddletom646 4 года назад
looks good,but it doesn't work for my 128*32 display ,the code output by the OLED animation was worry ,can you teach me how to apply for my display ,thanks
@jerthemaker
@jerthemaker Год назад
Sir, the app you created in VB... How does it work to create the code for each frame? Is it using the first app you showed in the video?
@MikeysLab
@MikeysLab 10 месяцев назад
Why not store the frames as an array of arrays/pointers and use a for loop? This would make the code so much cleaner. There is way too much duplication in your code my friend.
@tallnrough68
@tallnrough68 Год назад
Is there a way to connect a sensor/switch to the arduino nano to activate a different set of animations? And when the sensor/switch goes back to normal state the regular animation plays ?
@chipko
@chipko 2 года назад
You keep amazing me ... you're one iof my favourite channels now. I would include lunch but your recent video was not veggie (my problem, not yours!)
@VolosProjects
@VolosProjects 2 года назад
Tnx alot, i am glad you lile my content. Next time i will prepare something vegan.😀
@chipko
@chipko 2 года назад
@@VolosProjects ooooo I like vegan or vegetarian :P. I'm working through tft espi now .. I felt rubbish with it but you explain it very well
@Ryxxi_makes
@Ryxxi_makes 4 года назад
Thank you ! I got it working using your libraries, also managed to add some text before the animation starts but how do i stop it from resetting and displaying my text ? I want the text to display then the animation, but i want tge animation to continue instead of resetting back to the text.
@mczeno
@mczeno 3 года назад
Thank you for the video. I'm a beginner when it comes to tech, so I'm a little lost. When you open EmptyOLED, there's already code inside the program, did you code that? If so in what language? I want to make an animation but I have little coding experience.
@bob-ny6kn
@bob-ny6kn 2 года назад
Download in description
@RestorAsik
@RestorAsik 3 года назад
Very smart
@JshDav
@JshDav 10 месяцев назад
Thanks for the great video! any chance of a reupload of that magnificent program you made? I would very much love to give it a go! Please & thanks 😁
@markpolanski4917
@markpolanski4917 3 года назад
can u make an video how to connect this all wires and the oled display and the Arduino Nano pls thx
@arduino5267
@arduino5267 4 года назад
Svaka čast
@jm4-a872
@jm4-a872 Год назад
Link to OLEDAnimation Software??? Download link in description, but where?????
@foziezzz1250
@foziezzz1250 3 года назад
Thank you so muuch!! :D And its very Neat !
@RD-ni7qe
@RD-ni7qe 3 года назад
If I have a 800x480 5" Color TFT LCD Module (SPI), will my Arduino Uno be powerful enough for a 'smooth' animation using 800x480 frames?
@Kepeera
@Kepeera Год назад
Nice tutorial but where is the "Link in description"??
@nafisfuadjim4817
@nafisfuadjim4817 2 года назад
Hello..I want to draw many animations on my OLED..but my UNO hasnot enough space to store so-many animation-frames..how i can store the animation frames(converted to C code) at a SD card..and source it to the main arduino code?
@thomasmcneil9598
@thomasmcneil9598 8 месяцев назад
So, where is the link to the OLED Animations software?
@SalZam150
@SalZam150 3 года назад
Will this work on colour display and with colour animation of APNG(Animated PNG)?
@VolosProjects
@VolosProjects 3 года назад
i think not
@curlypatch
@curlypatch 3 года назад
This video is a year ago but hopefully I could still get an answer. Would this be compatible with the Tiny85 version?
@curlypatch
@curlypatch 3 года назад
@@thenextproblem8001 Thank you!
@curlypatch
@curlypatch 3 года назад
@@thenextproblem8001 How were you able to adjust the speed of the gif as well as set it to plain white? I tried using the code you used with the arduino nano but the gif is slow as well as the color isn't just white but rather the top side is yellow and the bottom is blue
@curlypatch
@curlypatch 3 года назад
@@thenextproblem8001 i have the yellow/blue is it possible to set the color to monochrome on this version?
@curlypatch
@curlypatch 3 года назад
@@thenextproblem8001 okay thanks!
@RaupeNimmersatt13
@RaupeNimmersatt13 Год назад
Hi, your video helped me a lot! But could you upload your code for the OLED again? I am currently trying to write this on a PIC 33 and need some input
@lofi_lover_girl
@lofi_lover_girl Год назад
hey, this is a great video but it doesnt work with the ssd1351 oled what do i do?
@turbo_co27
@turbo_co27 2 года назад
Is it possible to have a starting animation and display one frame at the end that stays on till it is turned off?
@ericBcreator
@ericBcreator 4 года назад
Nice job, subscribed.
@cantinasongband
@cantinasongband 4 года назад
How is it possible that the gifs play at the correct speed on the OLED display without using any delay functions?
@moonmatthew
@moonmatthew 2 года назад
If i want to use this in a splash screen, do i just put The generated code in the byte array and it will work?
@geldregen
@geldregen 3 года назад
Moze neki tutorijal za display koj pokazuje gif, ali da ima boje i tkt?
@Mankuwa
@Mankuwa Год назад
that's so cool, can you share the link to your app?
@AbdulM88
@AbdulM88 3 года назад
What's that thing called that had the wires going into it? The board thing?? Please
Далее
Arduino OLED Gauge
37:14
Просмотров 64 тыс.
SSD1306 oled display Animations
6:54
Просмотров 27 тыс.
how to display images on 0.96" oled using arduino
7:07
I found PERFECT display
51:32
Просмотров 625 тыс.
DIY Laser Image Projector (100ft+ Range!)
20:08
Просмотров 330 тыс.
The coolest robot I've ever built!
19:40
Просмотров 4,7 млн
Converting devices to USB Type-C
16:25
Просмотров 7 млн
Try these 16 Brilliant ESP32 projects!!!
11:18
Просмотров 586 тыс.