Animations on OLED display - Arduino

Sdílet
Vložit
  • čas přidán 7. 09. 2024

Komentáře • 269

  • @VolosProjects
    @VolosProjects  Před 3 lety +8

    Buy this OLED display here:
    www.banggood.com/custlink/v33yHN9Gks

    • @paulaburbano180
      @paulaburbano180 Před 3 lety +7

      Great explanation,but could you post the sketch code? is not in the description :( thankss

    • @toaster_oven.
      @toaster_oven. Před 2 lety +2

      @@ArduinoClub Hello, where did you find his program. I can't find it in the description.

    • @deadpooldagon4837
      @deadpooldagon4837 Před 2 lety +1

      @@ArduinoClub where do you find this program could you please tell me

    • @ArduinoClub
      @ArduinoClub Před 2 lety

      ​@@deadpooldagon4837Look at my channel, in the last video I posted a link to a blog that has all the information.

    • @deadpooldagon4837
      @deadpooldagon4837 Před 2 lety +1

      @@ArduinoClub I looked at it and it did not could you give me the link if you would be so kind

  • @umamaheshwar1587
    @umamaheshwar1587 Před 3 lety +25

    Can you give the download link of OLED animations software

  • @Grtiger100
    @Grtiger100 Před 3 lety +4

    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.

  • @cesarams0292
    @cesarams0292 Před rokem +5

    Hey! Where can I find the links for the program? Thank you very much

  • @yugen042
    @yugen042 Před 3 lety +10

    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 Před rokem

    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

  • @cantinasongband
    @cantinasongband Před 4 lety +5

    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 Před 4 lety

      Hi, when I did this it said you didn't declare frames 🤔

    • @cantinasongband
      @cantinasongband Před 4 lety +1

      @@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 Před 2 lety

      Try to use a scheduler and a method to increase the frames in each step

  • @Elkkkkkk
    @Elkkkkkk Před 2 lety +2

    thanks for the tutorial but the link to the program seems to be missing :/

  • @sibaramdatta5625
    @sibaramdatta5625 Před rokem +1

    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.

  • @GameFlife
    @GameFlife Před rokem

    exactly what i needed for my tiny desk companion tks bro!

  • @miguel000127
    @miguel000127 Před rokem

    hello can you post the OLEDanimations program pls ?

  • @izaknikabou2625
    @izaknikabou2625 Před 2 měsíci +1

    The application to download the code is not in description!! Please send link

  • @N.g.Chanal
    @N.g.Chanal Před 3 lety +1

    u r genius dear master.

  • @RosieResearch
    @RosieResearch Před 4 lety +6

    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 Před 4 lety +1

      Here's a good link for that issue startingelectronics.org/tutorials/arduino/modules/OLED-128x64-I2C-display/

    • @soypunk666
      @soypunk666 Před 2 lety

      @@asmrgrowth1190 I don't think that answers the cuestion... I Have the same issue

  • @Иван98
    @Иван98 Před 5 měsíci

    Ё-маё, я ничего не понял 😂
    Мне очень понравилось, надеюсь когда придет мой дисплей на ардуино получится сделать нечто похожее.
    Вам тоже Have a nice day

  • @IlIDINOIlI
    @IlIDINOIlI Před 3 lety

    Hvala na videu, nadam se da cu to uspijeti...

  • @herschel1969
    @herschel1969 Před 3 lety +1

    ur software is useful and we can make videos in128x64 oled

  • @electronic7979
    @electronic7979 Před 4 lety +2

    Excellent

  • @ferdinandvollmeyer8356

    Thanks for that, Greetz form Cologne, have Phun and stay healthy...

  • @grimonmilk7287
    @grimonmilk7287 Před 2 lety +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 Před rokem

      drive.google.com/file/d/1ECufN2p8tpTUwq2UFgZK_Rq3wDmOACDo/view

  • @MadhavMadupu-iy8vl
    @MadhavMadupu-iy8vl Před 4 lety

    THE BEST VIDEO ABT OLED
    AND THESE THING WORK

  • @captainplatypus4294
    @captainplatypus4294 Před 2 lety

    Where is the download link for the software on the last step? the OLEDanimations.

  • @youtubesultan2543
    @youtubesultan2543 Před rokem

    thanks for sharing
    where i can found app OLEDanimations from you sir?
    thanks :D

  • @dreadbolt12
    @dreadbolt12 Před 4 lety +5

    Subscribed! Thank you for the content cant wait to start building my own arduino projects. also music is badass!

  • @threetimescursed
    @threetimescursed Před rokem +1

    Great tutorial but you made it so hard to find the software. I just gave up

  • @kalban112
    @kalban112 Před 3 lety +1

    WOW, this is absolutely awesome, thank you mister

  • @ernestorivero9909
    @ernestorivero9909 Před 2 lety +1

    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

  • @jorgerallado
    @jorgerallado Před 3 lety +1

    where can i find your aplication for animations?

  • @AetherGhoul
    @AetherGhoul Před 4 lety +4

    Amazing, thanks

  • @offline5177
    @offline5177 Před 3 měsíci +1

    Hello.
    Do you have the OLEDanimations app? :D

  • @playerx3608
    @playerx3608 Před rokem

    Thank you Volos, I'm subscribing to your youtube channel, because your channel amazing 👍🏼👍🏼👍🏼

  • @stef3162
    @stef3162 Před 3 lety +1

    tnx for this awsome vid and your program it was so helpfull

  • @thiagosanches6754
    @thiagosanches6754 Před 3 měsíci

    This is gold! 🥇

  • @PabloLucio
    @PabloLucio Před 3 lety +5

    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 Před 2 lety

      Set the display to 64 pix height (128 x 64)

  • @hakimkakooza4899
    @hakimkakooza4899 Před rokem

    Could you please share the link to download OLEDanimations application

  • @ashishdmc
    @ashishdmc Před 3 lety +1

    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

  • @axltrain838
    @axltrain838 Před 4 lety +2

    Thank you mate, you're awesome

  • @chipko
    @chipko Před 2 lety

    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  Před 2 lety +1

      Tnx alot, i am glad you lile my content. Next time i will prepare something vegan.😀

    • @chipko
      @chipko Před 2 lety

      @@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

  • @captainwaffle4768
    @captainwaffle4768 Před rokem

    I don't find the download link for your program in the description, has it been deleted?

  • @TheCharlieMolina
    @TheCharlieMolina Před 2 lety

    REALLY GREAT TUTORIAL !!!! THANKS !!!, I did'nt find the sketch, where is the link?

  • @eduardomoron9590
    @eduardomoron9590 Před 4 lety +2

    Great job mister!!!, I 'll subscribe and waithing news videos

  • @GIOVANNADUESPINOSA
    @GIOVANNADUESPINOSA Před 3 lety

    very very interesting congratulation, thank you, hug to everyone

  • @chivainmanfoumbi9026
    @chivainmanfoumbi9026 Před 3 lety

    You are just a PRO !!! Thanks for that video !!!!!

  • @matts2581
    @matts2581 Před 4 lety +3

    Absolutely the shizz' bro'. TY kindly for sharing this! :D

  • @henrywood327
    @henrywood327 Před 4 lety +1

    Thank you so much friend, for sharing your knowledge.

  • @janzugic6798
    @janzugic6798 Před 4 lety

    wait a second, the options on your right click... the language. dobar video stari moj

  • @BHANUPRAKASH-nc8hz
    @BHANUPRAKASH-nc8hz Před 4 lety +1

    thank you for your software ......😀👍

  • @kevingpearce
    @kevingpearce Před 3 lety +1

    Great video, but where is the download link for "LCD Assistant" ?

  • @Lusitano95132
    @Lusitano95132 Před 4 lety +2

    Great work !!! Thanks for sharing !!!

  • @dwalden74
    @dwalden74 Před 4 lety +1

    Great video! Just what I was looking for! 👍🏼👍🏼👍🏼

  • @GiegX
    @GiegX Před 4 lety +2

    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

  • @jm4-a872
    @jm4-a872 Před rokem

    Link to OLEDAnimation Software??? Download link in description, but where?????

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

    So, where is the link to the OLED Animations software?

  • @teasyer
    @teasyer Před 2 lety

    Thanks for this helpful video - I left a subscribtion for your channel

  • @DreixeiGamer
    @DreixeiGamer Před 3 lety

    Where can i see the download link for the OLEDanimations software

  • @krafterHD
    @krafterHD Před 4 lety +2

    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  Před 4 lety +2

      You need to use libraries from description

    • @krafterHD
      @krafterHD Před 4 lety

      @@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 Před 4 lety

      @@VolosProjects this library shows random spots and wrong location on my Oled...

    • @shadowgreen123
      @shadowgreen123 Před 4 lety

      @@aminsheykhzadeh4548 Same to me, I installed the version avaliable at Library Manager in IDE and the clock animation works fine.

  • @beatlessteve1010
    @beatlessteve1010 Před 2 lety

    Previet! Comrad Voloyda!

  • @markpolanski4917
    @markpolanski4917 Před 3 lety

    can u make an video how to connect this all wires and the oled display and the Arduino Nano pls thx

  • @wellingtongandolphiniwgand6207

    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?

  • @tallnrough68
    @tallnrough68 Před rokem

    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 ?

  • @taltommie4247
    @taltommie4247 Před rokem

    Great work !!Thanks for sharing !

  • @zorabixun
    @zorabixun Před 2 lety

    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 😊

  • @gamingandcodingstuff751

    where is the lnk for the app
    to conver t the gif file into arduino code

  • @therealpepeu
    @therealpepeu Před 4 lety

    I'm hooked and subscribed! Now I just need to start making stuff again.

  • @davydbar
    @davydbar Před 2 lety

    Gracias por compartir y tu gran colaboración

  • @dickdon2631
    @dickdon2631 Před rokem

    My man, i can't download OLEDAnimations,can you upload somewhere easily to get?

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

    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 😁

  • @impulsembedded7147
    @impulsembedded7147 Před 2 lety

    That looks cool. Thanks for sharing man👍

  • @lorenzoiaccarini6966
    @lorenzoiaccarini6966 Před 3 lety

    if the lines are separated for y ou, change "#define OLED_RESET -1 // GPIO0
    //Adafruit_SSD1306 display(OLED_RESET);" with "Adafruit_SSD1306 display(128, 64, &Wire, -1, 800000UL, 100000UL);"

  • @Ryxxi_makes
    @Ryxxi_makes Před 4 lety

    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.

  • @_adamalfath
    @_adamalfath Před 4 lety +1

    BRAVO! Thanks man for the app, really useful

  • @RD-ni7qe
    @RD-ni7qe Před 3 lety

    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?

  • @davidscottkrause1
    @davidscottkrause1 Před 3 lety

    You are a wizard!!! Great video!

  • @nafisfuadjim4817
    @nafisfuadjim4817 Před 2 lety

    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?

  • @raymondmichael4987
    @raymondmichael4987 Před 2 lety

    Subed today, I love display too you'll be my next channel after upir which I can surely lewrn something wonderful regards display

  • @riddletom646
    @riddletom646 Před 4 lety

    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

  • @pandregumor
    @pandregumor Před 3 lety

    Excellent video!!! ... I expect more videos, *I don't see the Links of the programs* ... very original, Saludos de Colombia.. suscrita

  • @clowzeradventure
    @clowzeradventure Před rokem

    thanks for all this informations
    😊

  • @vinyltheif
    @vinyltheif Před rokem +2

    Your software looks great!
    How many bytes are each frame? I intend to use a 16*32 display controlled from a PIC.

  • @jerthemaker
    @jerthemaker Před rokem

    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?

  • @user-ve9ch9nr2l
    @user-ve9ch9nr2l Před rokem

    thank you ,This video very useful

  • @curlypatch1391
    @curlypatch1391 Před 3 lety +1

    This video is a year ago but hopefully I could still get an answer. Would this be compatible with the Tiny85 version?

    • @curlypatch1391
      @curlypatch1391 Před 3 lety

      @@thenextproblem8001 Thank you!

    • @curlypatch1391
      @curlypatch1391 Před 3 lety

      @@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

    • @curlypatch1391
      @curlypatch1391 Před 3 lety

      @@thenextproblem8001 i have the yellow/blue is it possible to set the color to monochrome on this version?

    • @curlypatch1391
      @curlypatch1391 Před 3 lety +1

      @@thenextproblem8001 okay thanks!

  • @lofi_lover_girl
    @lofi_lover_girl Před rokem

    hey, this is a great video but it doesnt work with the ssd1351 oled what do i do?

  • @chivainmanfoumbi9026
    @chivainmanfoumbi9026 Před 3 lety

    how to get the OLED animations Software ?

  • @VolosProjects
    @VolosProjects  Před 4 lety +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

  • @fablesfables
    @fablesfables Před rokem

    Hi, anyone have his link to his OLEDAnimations windows program that he wrote in VisualBasic?

  • @moonmatthew
    @moonmatthew Před 2 lety

    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?

  • @turbo_co27
    @turbo_co27 Před 2 lety

    Is it possible to have a starting animation and display one frame at the end that stays on till it is turned off?

  • @thierry-yvesalvesaraujo7520

    Thanks, my friend

  • @Kepeera
    @Kepeera Před rokem

    Nice tutorial but where is the "Link in description"??

  • @robhopper5729
    @robhopper5729 Před rokem

    Where is the link to OLED Animations???

  • @syncro66500
    @syncro66500 Před 4 lety +1

    You're the best , THX

  • @jesus_malik
    @jesus_malik Před rokem

    Broo where is the link of the program what you use for convert to arduino code ? :,v

  • @AbdulM88
    @AbdulM88 Před 3 lety

    What's that thing called that had the wires going into it? The board thing?? Please

  • @arduino5267
    @arduino5267 Před 4 lety

    Svaka čast

  • @RaupeNimmersatt13
    @RaupeNimmersatt13 Před rokem

    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

  • @zubairuabana8785
    @zubairuabana8785 Před 3 lety

    Please can u assist me, i am using arduino mega but once i try to verify my code or upload it, it will pope this"error compiling for board arduino/genuino mega 2560"

  • @ericBcreator
    @ericBcreator Před 3 lety

    Nice job, subscribed.

  • @_haheng
    @_haheng Před 3 lety

    is there any other way to loop each frame more efficient than draw it one by one ?. i have try it with for loop and the result my bitmap is crashing. but it work if i draw each frame one by one.

  • @Mankuwa
    @Mankuwa Před rokem

    that's so cool, can you share the link to your app?