Animations on OLED display - Arduino

Поділитися
Вставка
  • Опубліковано 30 лис 2024

КОМЕНТАРІ • 274

  • @VolosProjects
    @VolosProjects  3 роки тому +8

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

    • @paulaburbano180
      @paulaburbano180 3 роки тому +7

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

    • @toaster_oven.
      @toaster_oven. 2 роки тому +2

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

    • @deadpooldagon4837
      @deadpooldagon4837 2 роки тому +1

      @@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 роки тому +2

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

  • @jan3019
    @jan3019 10 днів тому

    One of the best how to in oled Display!! Thank you very much!!

  • @umamaheshwar1587
    @umamaheshwar1587 3 роки тому +25

    Can you give the download link of OLED animations software

    • @cookiece
      @cookiece 8 місяців тому +1

      up

    • @ibnu001
      @ibnu001 5 місяців тому

      Wokwi animator

  • @FlorianB-j8d
    @FlorianB-j8d 2 місяці тому

    4 years later you helped me that much thx !

  • @cesarams0292
    @cesarams0292 Рік тому +6

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

  • @hagiwakawai
    @hagiwakawai 2 місяці тому

    I was trying to find a way to animation easily and this video is my life-saver! Thank you very much!!!

  • @Grtiger100
    @Grtiger100 3 роки тому +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.

  • @hakimkakooza4899
    @hakimkakooza4899 2 роки тому +1

    Could you please share the link to download OLEDanimations application

  • @threetimescursed
    @threetimescursed Рік тому +1

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

  • @captainplatypus4294
    @captainplatypus4294 2 роки тому +1

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

  • @grimonmilk7287
    @grimonmilk7287 2 роки тому +3

    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

  • @Elkkkkkk
    @Elkkkkkk 3 роки тому +2

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

  • @jm4-a872
    @jm4-a872 Рік тому +1

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

  • @thomasmcneil9598
    @thomasmcneil9598 10 місяців тому +1

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

  • @yugen042
    @yugen042 3 роки тому +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?

  • @DreixeiGamer
    @DreixeiGamer 3 роки тому +1

    Where can i see the download link for the OLEDanimations software

  • @sibaramdatta5625
    @sibaramdatta5625 Рік тому +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.

  • @N.g.Chanal
    @N.g.Chanal 4 роки тому +1

    u r genius dear master.

  • @jorgerallado
    @jorgerallado 3 роки тому +2

    where can i find your aplication for animations?

  • @ashishdmc
    @ashishdmc 3 роки тому +2

    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

  • @cantinasongband
    @cantinasongband 4 роки тому +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 4 роки тому

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

    • @cantinasongband
      @cantinasongband 4 роки тому +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 2 роки тому

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

  • @herschel1969
    @herschel1969 3 роки тому +1

    ur software is useful and we can make videos in128x64 oled

  • @jerthemaker
    @jerthemaker Рік тому +1

    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?

  • @Kepeera
    @Kepeera 2 роки тому

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

  • @kevingpearce
    @kevingpearce 3 роки тому +1

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

  • @ferdinandvollmeyer8356
    @ferdinandvollmeyer8356 3 роки тому

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

  • @RosieResearch
    @RosieResearch 4 роки тому +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 4 роки тому +1

      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

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

  • @GameFlife
    @GameFlife Рік тому

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

  • @TheCharlieMolina
    @TheCharlieMolina 2 роки тому

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

  • @chivainmanfoumbi9026
    @chivainmanfoumbi9026 3 роки тому +1

    how to get the OLED animations Software ?

  • @offline5177
    @offline5177 5 місяців тому +1

    Hello.
    Do you have the OLEDanimations app? :D

  • @MadhavMadupu-iy8vl
    @MadhavMadupu-iy8vl 4 роки тому

    THE BEST VIDEO ABT OLED
    AND THESE THING WORK

  • @twigwonderkid
    @twigwonderkid Місяць тому

    Hi, where can i download your vistual studio code that automatically generates the frames ?

  • @lorenzoiaccarini6966
    @lorenzoiaccarini6966 3 роки тому

    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);"

  • @IlIDINOIlI
    @IlIDINOIlI 3 роки тому

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

  • @gamingandcodingstuff751
    @gamingandcodingstuff751 2 роки тому

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

  • @ernestorivero9909
    @ernestorivero9909 2 роки тому +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

  • @krafterHD
    @krafterHD 4 роки тому +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  4 роки тому +2

      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.

  • @AbdulM88
    @AbdulM88 3 роки тому

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

  • @VolosProjects
    @VolosProjects  4 роки тому +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

  • @Twork6969
    @Twork6969 Рік тому

    Where is your custom app

  • @lofi_lover_girl
    @lofi_lover_girl Рік тому

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

  • @fablesfables
    @fablesfables Рік тому

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

  • @MikeysLab
    @MikeysLab 11 місяців тому

    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.

  • @youtubesultan2543
    @youtubesultan2543 2 роки тому

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

  • @miguel000127
    @miguel000127 2 роки тому

    hello can you post the OLEDanimations program pls ?

  • @playerx3608
    @playerx3608 2 роки тому

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

  • @geldregen
    @geldregen 3 роки тому

    Moze neki tutorijal za display koj pokazuje gif, ali da ima boje i tkt?

  • @QuintusGaius
    @QuintusGaius Рік тому +1

    Where to find software you made?

  • @Иван98
    @Иван98 7 місяців тому

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

  • @andruino_
    @andruino_ Рік тому

    Салют! Все супер, но где можно поиметь эту программу для конвертации gif в код? Не нашел ссылки.. Спасибо!

  • @PabloLucio
    @PabloLucio 3 роки тому +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 2 роки тому

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

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

  • @GiegX
    @GiegX 4 роки тому +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

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

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

  • @curlypatch
    @curlypatch 3 роки тому +1

    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 роки тому +1

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

  • @captainwaffle4768
    @captainwaffle4768 Рік тому

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

  • @nuwanchathuranga8479
    @nuwanchathuranga8479 4 роки тому

    Thanks for all .....

  • @wellingtongandolphiniwgand6207
    @wellingtongandolphiniwgand6207 4 роки тому +1

    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?

  • @RD-ni7qe
    @RD-ni7qe 4 роки тому

    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?

  • @GIOVANNADUESPINOSA
    @GIOVANNADUESPINOSA 3 роки тому

    very very interesting congratulation, thank you, hug to everyone

  • @robhopper5729
    @robhopper5729 Рік тому

    Where is the link to OLED Animations???

  • @teasyer
    @teasyer 2 роки тому

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

  • @ArduinoBoy
    @ArduinoBoy 4 роки тому +1

    sir will it work on 0.96 inch display

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

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

  • @SalZam150
    @SalZam150 3 роки тому +1

    Will this work on colour display and with colour animation of APNG(Animated PNG)?

  • @hypixelghg3768
    @hypixelghg3768 Рік тому

    hi ....
    where did u find that screen i want that one :D

  • @chivainmanfoumbi9026
    @chivainmanfoumbi9026 3 роки тому

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

  • @beatlessteve1010
    @beatlessteve1010 2 роки тому

    Previet! Comrad Voloyda!

  • @jesus_malik
    @jesus_malik Рік тому

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

  • @davydbar
    @davydbar 3 роки тому

    Gracias por compartir y tu gran colaboración

  • @vinyltheif
    @vinyltheif Рік тому +2

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

  • @oscarsierra4655
    @oscarsierra4655 4 роки тому +1

    hello, how can I get the application?

  • @Mankuwa
    @Mankuwa Рік тому

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

  • @nicolasjonasson4820
    @nicolasjonasson4820 2 роки тому

    Is it possible to use this to make a gui? like a menu with some animated parts

  • @kalban112
    @kalban112 3 роки тому +1

    WOW, this is absolutely awesome, thank you mister

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

  • @thierry-yvesalvesaraujo7520

    Thanks, my friend

  • @izaknikabou2625
    @izaknikabou2625 5 місяців тому +1

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

  • @donvee1419
    @donvee1419 Рік тому

    Is it possible to use this with an ai chatbot?

  • @taltommie4247
    @taltommie4247 Рік тому

    Great work !!Thanks for sharing !

  • @kevinm3359
    @kevinm3359 2 роки тому

    where is the download link for the program u wrote can't find it

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

  • @janzugic6798
    @janzugic6798 4 роки тому

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

  • @ritik8234
    @ritik8234 3 роки тому

    can we make an app to display the same on the computer?

  • @zubairuabana8785
    @zubairuabana8785 4 роки тому

    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"

  • @davidscottkrause1
    @davidscottkrause1 3 роки тому

    You are a wizard!!! Great video!

  • @RaupeNimmersatt13
    @RaupeNimmersatt13 2 роки тому

    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

  • @electronic7979
    @electronic7979 4 роки тому +2

    Excellent

  • @stef3162
    @stef3162 3 роки тому +1

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

  • @coolchessnerd
    @coolchessnerd 3 роки тому +1

    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

  • @pandregumor
    @pandregumor 4 роки тому

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

  • @dreadbolt12
    @dreadbolt12 4 роки тому +5

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

  • @grantscott1686
    @grantscott1686 3 роки тому

    How is your OLED display running the animations so smoothly? Mine is very slow and choppy...

    • @VolosProjects
      @VolosProjects  3 роки тому +1

      You are probably using standard adafruit library, i am using another library, you can download it from description.

    • @grantscott1686
      @grantscott1686 3 роки тому

      @@VolosProjects I'm looking at the standard Adafruit library and it has the same #include name as the one you are using. I have both installed, should I uninstall the standard one?

    • @VolosProjects
      @VolosProjects  3 роки тому +1

      @@grantscott1686 yes

  • @cantinasongband
    @cantinasongband 4 роки тому

    How is it possible that the gifs play at the correct speed on the OLED display without using any delay functions?

  • @_haheng
    @_haheng 3 роки тому

    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.