Arduino NANO Propeller LED Analog Clock

Поделиться
HTML-код
  • Опубликовано: 29 авг 2024
  • In this video you will learn how to make Arduino NANO Propeller LED Analog Clock using Arduino NANO, Hall Sensor, magnet, LEDs and Resistors
    You can download Arduino code on the following link
    www.hobbyprojec...
    You can watch the another video of this project with Time Setting Feature here • Update 1 for Arduino N...
    Video Submitted by Joginder
    Thank you liking this Project and providing your suggestions. We will try to add the more features for this project suggested by you.
    Kits & Components Link
    amzn.to/3pJzHiY
    Water Level Monitor using NodeMCU
    • Water Level Monitor us...
    Experiment with NodeMCU ESP8266: Door Status Monitor
    • Experiment with NodeMC...
    LIKE | SHARE | SUBSCRIBE FOR MORE VIDEOS LIKE THIS.
    Thanks for watching.

Комментарии • 1 тыс.

  • @moosemanuk
    @moosemanuk 4 года назад +12

    Spent the first 19 minutes wondering where this was all going, and the rest of the video just in awe of what you created! Amazing!

    • @jkepps
      @jkepps 3 года назад

      Ditto!

  • @ebealienthy
    @ebealienthy 5 лет назад +2

    Unlike thousands of Makers (fake) who sell tutorials,
    and a thousand courses copied to others,
    here we have instructions and sketches. Great you have my like!

  • @valterleao6795
    @valterleao6795 3 года назад +6

    ADOREI meu amigo, estou aprendendo a trabalhar com o Arduino, estou fascinado com esse universo! Ah tenho 62 anos e ainda adoro aprender ❗️
    Abraço aqui do Brasil 🇧🇷

  • @burgersnchips
    @burgersnchips 5 лет назад +15

    A second magnet 90° out of phase with the original one would tell this device everything it needs to know about the roataion speed of the motor, with a little clever programming this could sync up the face to a variable motor speed on every rotation.

    • @cll1out
      @cll1out 5 лет назад

      This idea would be a more accurate version of what I was thinking. With even just the single index magnet, some mathematics and timing measurements could be involved to determine the RPM, wait for the motor to stabilize, and then "start up" the clock display. All the while keep measuring and readjusting the display to match inevitable but ever so slight variations in motor speed.

  • @alanullmer8369
    @alanullmer8369 5 лет назад +48

    I find this to be an interesting project. I look forward to assembling this project. As to some of the rude response by the know it alls, shame on them. I find your generosity in sharing your knowledge comforting.

  • @beef0678
    @beef0678 4 года назад

    I've just watched 5 DIY project videos and you are the first person who actually knows how to solder properly, nice video!

  • @Corbald
    @Corbald 5 лет назад +95

    You should use millis() to sync up your lights to your driving motor speed.
    define oldMillis = millis() in your setup(), then at the beginning of your main loop, define newMillis = millis(). Check to see how long it's been since the last loop with newMillis - oldMillis, then you can use the Hall sensor as the benchmark for your RPM. Adjust a pause to taste and then assign oldMillis = newMillis at the end.
    Now you can run your motor at it's optimal speed (read: quietest) and have the arduino adjust it's display rate to match.

    • @protonx80
      @protonx80 5 лет назад +3

      i was going to post exactly what you are saying ... but you said it in a much better way ......there should be no need to adjust the speed of the motor to complete the display ... only to optimise the rotation of the motor

    • @Corbald
      @Corbald 5 лет назад +5

      @Jason Alannah I'm only a hobbyist coder, myself, but I took a look at your code, and you're doing a lot of bit shifting, which I'm not very good at. I'm guessing it's to do with the LEDs. So without comments, it's hard for me to tell what's going on. I see some built in delays, which look too precise to be anything but timing for the clock display. I can only tell you how I would approach the project.
      1) Divide the entire 'image' to be drawn into slices, say 36 to make the maths easier. You can do this with cartesian -> polar coordinate mapping, or just hand write each slice and stuff it in an array during Setup(). If you do the latter, you'll still have to account for the position of the hands of the clock during runtime, but you'll have to do that either way.
      2) Hall effect sensor triggers the beginning of a 'frame' (via the interrupt) and polls the time (millis()) into newTime variable.
      3) newTime - oldTime = elapsedTime. This is the length of time it took the _previous_ loop to do the entire rotation.
      4)elapsedTime / 36 = sliceTime. You want sliceTime so you can track how long each slice is taking on average.
      5) "while (millis() - newTime)/i < sliceTime" -- Here is where we're delaying, between each slice. We want each slice to last 1/36 of a 'frame' or full rotation.
      6) don't forget to set oldTime = newTime!
      pseudocode (I don't even know what language I think in, anymore!):
      Setup(){
      oldTime = millis(); // something to start with
      ### // register an interrupt for the hall effect sensor(I don't remember how with arduino, google it)
      }
      Main(){
      while true {
      ### // figure out the proper time and create the clock face and an array of slices to draw it.
      ### // Probably only needs to update once per second.
      }
      }
      Interrupt(){
      newTime = millis(); //fetch the current time
      elapsedTime = newTime - oldTime; // get the time it took to do the previous loop
      sliceTime = elapsedTime / 36; // the length of time each slice should take
      for i = 1 to 36 { // do each slice
      ### // draw a slice
      while (millis() - newTime)/i < sliceTime { // delay until the current slice should have completed
      pass;
      }
      }
      oldTime = newTime; // update oldTime
      }
      It's rough, but that's what I came up with off the cuff.

    • @pemulungelit9050
      @pemulungelit9050 5 лет назад +3

      Hey bro, what if we change the battery with wireless charging?

    • @SteveJones172pilot
      @SteveJones172pilot 5 лет назад +2

      @@pemulungelit9050 Thats what has stopped me from doing something like this.. I want it to be run by wall power, which means either using a slip ring, which complicates the mounting of it, or to do some kind of inductive charging.. haven't spent any time figuring it out. I wonder how long that battery lasts though!

    • @TOXICCENAOFFICIAL
      @TOXICCENAOFFICIAL 5 лет назад

      @@Corbald can i use proximity sensor instead of hall sensor

  • @mrromeor5994
    @mrromeor5994 5 лет назад +16

    I appreciate you much more as a man, because you do not have very sophisticated tools you do not have good conditions and you can prove that you can Thnx man !!

  • @Goman1244
    @Goman1244 5 лет назад +46

    Thank you for taking the time and effort to share this project with us. The video was well done and the layout of your clock was beautiful.

    • @JohnCena-uf8sz
      @JohnCena-uf8sz Год назад

      Please send the source code we have to submit project on Monday

  • @ivandjones
    @ivandjones 3 года назад +1

    Came for the video, stayed for the music. Truly beautiful. Thank you.

  • @myronplichota7965
    @myronplichota7965 5 лет назад +9

    Hobby Projects, you create short circuits between space, time, hardware and software! That is what embedded computing is all about. Kudos, maestro!

    • @pan_czerwony5437
      @pan_czerwony5437 5 лет назад +2

      Better not create short circuits or ya might frie your arduino lol

  • @manuelgustavo5916
    @manuelgustavo5916 4 года назад +1

    No sé que edad tenga usted. Pero definitivamente nació para esto... 👏👏👏

  • @repairfreak
    @repairfreak 5 лет назад +5

    It never ceases to amaze me what creative minds can figure out what to do next with Electronics. 😁👍

  • @Technotronic27
    @Technotronic27 3 года назад +1

    Круто, оригинально! Шикарный проект! Есть одно но, кто будет это пытаться собрать - питание микроконтроллера с диодами у ротора от аккумулятора, для подзарядки часы придется останавливать и аккумулятор надо будет снимать, лучше сделать на бесконтактной передачи энергии через вращающийся трансформатор на роторе.

  • @jhiggz9258
    @jhiggz9258 4 года назад +7

    Beautiful project and I love the high speed video of construction, nothing left out but all of it in reasonable time frame. Thanks for posting all of it!

  • @PetterBruland
    @PetterBruland 4 года назад +35

    Most soothing music, and just pure enjoyment looking at you making this wonderful clock. Thank you

  • @Harrzack
    @Harrzack 5 лет назад +26

    Very clever coding to sync all the hands & text! 👏🏾

    • @piotrr5439
      @piotrr5439 5 лет назад +2

      exceptional example of rpm determination!

    • @husnainarif2354
      @husnainarif2354 5 лет назад

      mar sai coding nahi horahi.plz help me

  • @des2610
    @des2610 5 лет назад +77

    There is some skill in those hands.

    • @quytuvan5399
      @quytuvan5399 4 года назад +1

      Are you have code?

    • @robegatt
      @robegatt 3 года назад

      No there isn't, it is a crappy job.

    • @gerardmontessuit7854
      @gerardmontessuit7854 3 года назад

      @@robegatt Facile d'insulter et toi avec tes deux mains gauche quel est ta réalisation personnelle?

    • @robegatt
      @robegatt 3 года назад

      @@gerardmontessuit7854 What do you know about me? do not make assumptions. That is an hobbist thing and it is fine, but do not call it a skillful job.

    • @mppreparacoes9688
      @mppreparacoes9688 3 года назад

      Parabéns.....lindo projeto.....

  • @user-ov4zl7lz7i
    @user-ov4zl7lz7i 5 лет назад +27

    Проект супер, попробую повторить . Автору уважение, не прячет код

    • @user-io7on2yt4u
      @user-io7on2yt4u 5 лет назад +2

      Осталось только узнать, откуда берется время, и как его корректировать. :-))))))))

    • @vlaomao
      @vlaomao 5 лет назад

      @@user-io7on2yt4u время захардкожено

    • @ryazanman
      @ryazanman 5 лет назад +1

      @@user-io7on2yt4u можно использовать модуль реального времени, чтобы время бралось оттуда.

    • @user-io7on2yt4u
      @user-io7on2yt4u 5 лет назад +2

      @@ryazanman Можно. Но я его здесь в упор не вижу. :-)))))))

    • @aas84
      @aas84 5 лет назад

      @@user-io7on2yt4u время устанавливается тут: "byte hours = 12; // start time
      byte minutes = 15;
      byte seconds = 00;" корректировать только в скетче.

  • @ocsrc
    @ocsrc 5 лет назад +2

    You are more intelligent than 99% of the world
    I couldn't even follow what you are doing

    • @ajaypranav1390
      @ajaypranav1390 5 лет назад

      Try this persistence of vision display. You will get what he is doing

    • @repairfreak
      @repairfreak 5 лет назад

      I’m lost without understanding code. However it’s cool to see that other people can figure it all out 1st for us hardware guys, so we can just upload via the usb, and then sit back and enjoy the magic light-show, lol.

  • @d1o2n4
    @d1o2n4 5 лет назад +7

    Awesome vid! Genuinely surprised when you started it spinning. I though you were just going to show a LED bar responding to the rpm of the motor. Very inspiring stuff and really liked the calming music in the background which seemed to put me in the zone for learning stuff.

  • @lxathu
    @lxathu 4 года назад

    Watching the clock is, let's be frank, is horrible for the eye, but this old-school movie idea with leds is priceless. And so is the production, of course.
    I'm convinced to sub.

  • @stevencooper2464
    @stevencooper2464 5 лет назад +5

    Genius! Absolute genius! I just started playing with an Arduino Uno for a lighting project, but I'm seeing so many other things I want to try.

  • @abidnaqshbandi942
    @abidnaqshbandi942 4 года назад +12

    I am just amazed to see the outcome. This is one of best LED projects I’ve seen. Awesome!!!!!!!

  • @GyroGearlooseHelis
    @GyroGearlooseHelis 5 лет назад +9

    A few "upgrades" I intend to do when I build this:
    1) Wireless interface -- a simple 433MHz serial line would be simple enough to get data in. A slip-ring could work, but there's more friction/noise issues. A full bluetooth serial would be overkill. Clock could be set, and text could be changed on the fly using that interface.
    2) Power -- You have a rotor and a stationary magnet (aka a generator?), so just put a coil and a diode on the rotating board, and you can suck in pulses of power. Replace battery with a largish capacitor and voltage regulator, or shove power into the battery with a voltage cap to keep from overcharging. Nano already has a Vreg, so I'm going to see if just a coil/diode/capacitor is enough.
    3) Optional: Time retention -- this design is terrible for wandering time. Add an RTC chip to maintain the time while running, and possibly between runs. Or, if #1 is implemented, have some external control re-setting the time periodically. I'm probably going with the updates
    4) Code optimization -- I know this is bitshifting for performance, but this code is obscure. I'll rework it to be a lot easier to read and maintain. That snipe aside, THANK YOU for the starting point from which I'll be working -- huge jumpstart to the effort!
    5) I'm using a ProMini -- if you can't use the USB interface runtime, no reason to have it onboard after programming.
    6) Adjustable balance -- since I'll be playing with adding/removing things, I'll add a longitudinal bolt and two nuts (to seize one another) so the CoG can be adjusted easily and precisely for balancing/noise.
    One change that seems obvious but probably isn't good -- Synchronizing the display delays to RPMs. Yes, I had the first initial thought that controlling the RPMs wasn't a good control mechanism, but adjusting delays could cause a more ragged display. Assuming the (calibrated) motor holds speed fairly stable once spun up, static delays probably produce a crisper result. If not, you NEED to adjust delays at all costs. I might play with this, but I *expect* to not want the self-adjusting delay.

  • @Abhilashkp
    @Abhilashkp 4 года назад +6

    This man is from another planet. ❤️

  • @willytarazona20
    @willytarazona20 5 лет назад +5

    This is the most amazing proyect that I've ever seen.

  • @bybecker
    @bybecker 4 года назад +2

    VERY, very nice job. You really know how to teach in a didactic and clear way. Congratulations.

  • @steveemmins3728
    @steveemmins3728 4 года назад +20

    That was terrific - excellent video my friend, you’re a gifted man.
    Cheers.

  • @martinda7446
    @martinda7446 5 лет назад

    As per replies elsewhere the issue is with requirement here to adjust supply for correct sync of clockface. The ideal way is to adjust the timing with respect to hall pulse, not everyone can have a stabilised 0.01% power supply )) as the results are determined by supply quality. Nicely done though and only other thing would be to use slip rings on the spindle which is fairly easy to DIY and keep the Nano and battery off the board opening up more possibilities for motor control and keeping the rotational mass down and allowing for full battery control.

  • @GarageScience
    @GarageScience 5 лет назад +27

    Well made video, congrats on the successful project!

  • @hiltonroberts8742
    @hiltonroberts8742 5 лет назад +1

    Brilliant! Simple components and no elaborate display screen needed. Everything is illusion, only motion is real!

    • @ashutoshkumar-en8id
      @ashutoshkumar-en8id 5 лет назад

      Can you please tell me about the specification of hall sensor that has been used here. And if you know kindly let me know the link from where i can buy it . Please help me.

  • @qps9380
    @qps9380 5 лет назад +12

    Anyone wanting to build this on their own, make sure to balance the weight, otherwise you're going to make a vibration motor.

    • @TOXICCENAOFFICIAL
      @TOXICCENAOFFICIAL 5 лет назад +2

      Can i replace the hall sensor with proximity sensor

    • @ashutoshkumar-en8id
      @ashutoshkumar-en8id 5 лет назад +1

      I also cant able to find this sensor. I found but with another name. kindly help me too

  • @krtbrt
    @krtbrt 5 лет назад +2

    Reverse drill bit technology...........this IS state of the art.
    Awesome

  • @gregthomas7950
    @gregthomas7950 5 лет назад +9

    Very cool project and great video! Loved the background music.

  • @EZOne58
    @EZOne58 3 года назад +2

    This is very fascinating! I would love to do this one as my final project in Electronics Technology (AAS)

  • @xxJerry19xx
    @xxJerry19xx 5 лет назад +3

    If you will place another magnets on backplate and some coil and charging circuit on rotating PCB you can keep battery charged, or don't use battery, only capacitor... Nice broject... battery isbetter because of RTC...

  • @magefreak9356
    @magefreak9356 4 года назад +1

    This is a really awesome project!!! I've been looking into doing this for a while and this definitely helps me figure stuff out. On mobile, the code on your website has little to no returns. It's almost like 1 line. I can tell by context clues where the comments // end, but it's kind of odd.
    Otherwise great video!

  • @jblo6822
    @jblo6822 5 лет назад +6

    Wondering how long that battery will last. Really cool project.

  • @saicm432
    @saicm432 4 года назад +2

    This is a really nice project. I have one doubt. Please let me know how to set the current time in the clock. I think it would help a lot of hobbyists trying to build this. Thanks.

    • @hobbyprojects
      @hobbyprojects  4 года назад

      Please check this ruclips.net/video/7WrKRQ0hiUg/видео.html

  • @SurajSingh-vz7xn
    @SurajSingh-vz7xn 5 лет назад +6

    You know the meaning of finishing..🙏🙏Good job..

  • @victordave2011
    @victordave2011 3 года назад

    Great one! You only need to shoot it with about 30fps for video to make it look uncut seamless. But for the eyes it would be undistinguishable ofcourse.

  • @mandelbro777
    @mandelbro777 4 года назад +3

    cool little project. Love the idea ... so interesting for children to look at and understand how time delays can work with components in motion.

  • @r.d.machinery3749
    @r.d.machinery3749 4 года назад +1

    Great stuff. I like the addition of the blue LED creating a nice border around the clock.

  • @DimitriosRoussos
    @DimitriosRoussos 3 года назад +3

    That's was really great, very clever and really inspired , I was just wondering how you managed calculated the delays and rpm? Really great work, bravo!

  • @thiagojoaquimdasilva8537
    @thiagojoaquimdasilva8537 4 года назад +1

    O CARA É UM ARTISTA MODERNO ISSO SIM É ARTE MODERNA!!!

  • @MikeSims70
    @MikeSims70 5 лет назад +12

    OMG, I absolutely LOVE this ... I'm definitely going to build one! Thank you for sharing.

    • @dll7860
      @dll7860 5 лет назад +1

      Bro ur bulid this project, this project are working or not working

    • @eagleanurag
      @eagleanurag 5 лет назад

      @@dll7860 absolutely working when you will do everything right

  • @isoguy.
    @isoguy. 4 года назад +1

    Good project, adding a real time clock and custom pub would make it better

    • @hobbyprojects
      @hobbyprojects  4 года назад

      Please check this ruclips.net/video/JQSWUY2GB_w/видео.html

  • @sarimbinwaseem
    @sarimbinwaseem 5 лет назад +13

    End Level man.....One of the BEST...

  • @CXensation
    @CXensation 5 лет назад +2

    Interesting project.
    Could be modified to any analog instrument readout.
    Tachometer, Odometer, Voltmeter etc, but the motor should be rpm controlled.
    With 2 center rings for slide contacts, the supply connection rids off the onboard battery.
    With a bluetooth or zigbee addition, the processor could be remote controlled for various display settings, e.g. a true multimeter with several ranges.
    Using a vertical rotating (drum) display, you could even make an oscilloscope showing vaweforms, e.g. the old rotating cola-can project.

    • @davidgiardini1275
      @davidgiardini1275 5 лет назад

      You don't need RPM control, you can measure the RPMs from the halll sensor and adjust the tun on timing. Didn't see the code but should be doable this way.

    • @CXensation
      @CXensation 5 лет назад

      @@davidgiardini1275 Its do-able this way, but will give flutter on the readout, as the processor only can correct pr 1 revolution.
      A motor control using emv sensing is very precise and was often used in former echo-sounders using exactly this type of readout.

    • @CXensation
      @CXensation 5 лет назад

      @@davidgiardini1275 Its perfectly do-able this way but will give flutter on the readout, as the processoer con only correct pr 1 revolution.
      With a motor controller using emv, as the former type echo sounder readouts used, it will be much more stable.

  • @scrunchdaksh3941
    @scrunchdaksh3941 4 года назад +3

    mastermind of the world

  • @SaachBolo
    @SaachBolo 4 года назад +1

    That was just amazing I was wondering how will be the clock but at the end it was just mesmerising

  • @tilmar120
    @tilmar120 5 лет назад +13

    Great project. Well presented. Nice, neat and clever.

  • @GeorgeGeorge-xj2bc
    @GeorgeGeorge-xj2bc 4 года назад

    The frequency for multiplexing led displays must be larger than 50HZ to avoid flickering and less than 100HZ to avoid ghost imaging.The clock image has 60 fixed points,so the ideal frequency would be 60 x 80HZ=4800HZ refresh rate or 208us timer interrupt interval and 80 motor rotations per second.Per minute the rotations would are 288.000 which is out of reality.So for less flickering need less light points per rotation or higher speed rotation.

  • @franciscopaz5139
    @franciscopaz5139 5 лет назад +3

    Hola que tal como estas, muchas gracias por compartir el video y tus conocimientos. Saludos y éxitos.

  • @MiharuNV750
    @MiharuNV750 5 лет назад +2

    Работает 30 минут на этом малюсеньком аккумуляторе.
    Доооо, полезная вещь!

    • @user-el7jq9fw7v
      @user-el7jq9fw7v 5 лет назад

      ну зачем всё обсирать то?

    • @user-dr1wj4jm3c
      @user-dr1wj4jm3c 5 лет назад

      Подвести по валу питание, и будет вечно.

  • @MORIHITESH599
    @MORIHITESH599 3 года назад +3

    Amazing whatch👍👍👏👏🙏🙏🇳🇪🇳🇪👌👌

  • @jeffgrundy7258
    @jeffgrundy7258 3 года назад +2

    Wonderful project. I wonder if I can make it so that the second hand emulates a true analog clock moment.

  • @1rubineto
    @1rubineto 5 лет назад +7

    thank you for sharing your wisdom

  • @jmans4928
    @jmans4928 9 месяцев назад

    You have a nice website very well documented everything, great job.

  • @haliskomec6511
    @haliskomec6511 5 лет назад +9

    nice job fellow artisan nice job.

  • @robertroigsantamaria
    @robertroigsantamaria 5 лет назад +1

    So nice! - some ideas: with another hall sensor you could make an interface to set time up, or change modes or whatever... maybe an IR reciver... or ESP8266 and do it via wifi. paint the board black to even improve the contrast. The idea to time the RPM and divide the frame to achieve perfect display regardles of motor speed, is grat. it would allow greater rpm and less flicker.

  • @nikolaivacko5397
    @nikolaivacko5397 4 года назад +12

    Thank You so much for making this video!
    Just one question: Why is there a 10k ohm resistor on Hall sensor on the diagram, but not in the real design?

    • @hobbyprojects
      @hobbyprojects  4 года назад +8

      You will not need 10k Ohm as the port pin already pulled up in the programming. Please check this "pinMode(sensorPin,INPUT_PULLUP);" inside code.

  • @audranemery3317
    @audranemery3317 3 года назад +1

    One the easiest tuto about that. Thanks you.

  • @ajaypranav1390
    @ajaypranav1390 5 лет назад +5

    Superb bro congratulations, try the same with RGB LED with that you get unlimited possibilities to unleash. All the best again. Can I have your email plz.

  • @jetdriver1jetdriver194
    @jetdriver1jetdriver194 4 года назад +1

    Awesome job & tutorial! I'm going to have to work on my soldering skills.
    One question: How long will that battery last? If not too long, is there another way of powering your masterpiece??
    Thanks for an inspirational project!

    • @hobbyprojects
      @hobbyprojects  4 года назад

      There is a wireless power supply video here ruclips.net/video/dLq6xyBIDPY/видео.html

  • @porcherricardo
    @porcherricardo 5 лет назад +4

    Parabéns pelos projetos!

  • @larrycook8540
    @larrycook8540 4 года назад +1

    Thank you for a great video, everything from the speed, content, and music was perfect. Looking forward to searching your other posts.

  • @imaneferradj9606
    @imaneferradj9606 5 лет назад +3

    It's a great job , thank you for the video !

  • @Creative_Electronics
    @Creative_Electronics 4 года назад +1

    That's so cool
    Ik don't even noW how it can work because it rotates!!👍👍

  • @jesusestavoltando6301
    @jesusestavoltando6301 5 лет назад +3

    Hi, you really like your projects between them.
    Repulsive Magnetic Levitation using Arduino
    I wonder if I can use Arduino Nano? if so which pins to use thank you very much

    • @hobbyprojects
      @hobbyprojects  5 лет назад +1

      Connect Arduino Nano Digital Pin 3 to 1K Ohm register and Arduino Analog Pin A0 to output of hall sensor. Same as Arduino Uno pins used in the diagram.

  • @daniellybaert1958
    @daniellybaert1958 3 года назад +1

    That's a real piece of art !!!

  • @besgrom3
    @besgrom3 5 лет назад +9

    Круто получилось, лайк.

    • @user-ih3vf2qm1u
      @user-ih3vf2qm1u 4 года назад

      ТОЛЬКО СУНУЛ АРДУИНО В ЮСБ ВХОД СГОРЕЛО САПРОТИВЛЕНИЕ ЧТО ЭТО МОЖЕТ БЫТЬ

  • @aldergate-ca
    @aldergate-ca 4 года назад +1

    Mesmerizing. Amazing, Captivating and well produced video. Thanks.

  • @pcremont1893
    @pcremont1893 5 лет назад +6

    лайк Спасибо для начинающих самое то )

  • @vijaychaudhari2807
    @vijaychaudhari2807 3 года назад +1

    Very nicely explained waiting for upcoming project sir

  • @badeakabha5962
    @badeakabha5962 4 года назад +7

    the best of the best on realy its wonderfull

  • @user-zaRSFSR
    @user-zaRSFSR 4 года назад +1

    волшебство - микросхемы без проблемы)))

  • @SDinnovation
    @SDinnovation 5 лет назад +4

    Super
    project i will also try to build it thanks...

  • @djguro
    @djguro 3 года назад +1

    This is long video, but it is awesome result! ❤️ p.s. this is 1000-th comment. :)

  • @djangoclashcomdjango45
    @djangoclashcomdjango45 5 лет назад +6

    Q lindo e a música foi perfeito

  •  3 года назад +1

    Felicidades!!!
    Un excelente proyecto muy interesante y con unos resultados geniales...
    Te has ganado un nuevo y Fiel Suscriptor...
    Gracias por compartir éste proyecto...

  • @lucianobuonerba9390
    @lucianobuonerba9390 5 лет назад +2

    Bravo e molto bello

  • @johnglielmi6428
    @johnglielmi6428 4 года назад +1

    Great Job, and fascinating Persistence of Vision project. I like the updated clock even better.

  • @jv_johny
    @jv_johny 5 лет назад +3

    How do you set the time???? Very nice.

    • @hobbyprojects
      @hobbyprojects  5 лет назад +2

      Time setting options will be provided in the future video. Thanks

  • @dineshvyas
    @dineshvyas 5 лет назад +2

    Elegant style of video.
    Liked it so much.

  • @strolent
    @strolent 5 лет назад +4

    That was fantastic !

  • @marioantonioardilesgabanch6647
    @marioantonioardilesgabanch6647 3 года назад +1

    Excelente proyecto tratare de replicarlo saludos desde arequipa peru

  • @SAHNI-um1jh
    @SAHNI-um1jh 5 лет назад +4

    Cool 😎
    But can we not give direct supply to this instead of using battery

    • @mutedsounds2k
      @mutedsounds2k 5 лет назад

      How would you connect the supply wires to a rotating Arduino?

    • @Corbald
      @Corbald 5 лет назад +3

      @@mutedsounds2k Google "Slip Ring" (Addendum:) I've had some luck using headphone jacks as slip rings. You get +V, GND and DATA as a bonus. You can buy the female to male extender, cut it in half and have both ends for your project.

    • @SAHNI-um1jh
      @SAHNI-um1jh 5 лет назад +1

      Yes

    • @ctbully
      @ctbully 5 лет назад +3

      @@SAHNI-um1jh You must work for Microsoft ! You gave a proper answer but the information you provided was useless !

    • @SAHNI-um1jh
      @SAHNI-um1jh 5 лет назад +2

      John Bull I am not employed to give you information 😤👊

  • @CastleVintners
    @CastleVintners 5 лет назад +2

    Superb result! It looks so great running, really like the video with ethereal sound track rather than dialogue and explanation.

  • @waschdl5997
    @waschdl5997 5 лет назад +3

    You should add a real-time feature

  • @user-qz9em6mc5i
    @user-qz9em6mc5i 4 года назад +2

    Молодец, делает с душой.

  • @RaviShankar-it1mj
    @RaviShankar-it1mj 5 лет назад +4

    Dear guys.. please tell me its working or not bcz.. we will make a diploma project in one week and i have no more time so pls guys help me...

    • @hobbyprojects
      @hobbyprojects  5 лет назад +1

      The project is tested and working. You can start work on it.

  • @_BangDroid_
    @_BangDroid_ 3 года назад +1

    Cool project! And I love the music, very relaxing

  • @marcelojordao6602
    @marcelojordao6602 5 лет назад +10

    parabens!!!

  •  5 лет назад

    Really love the craftsmanship and how relaxing the video is.

  • @wilton2ne
    @wilton2ne 5 лет назад +3

    Fantástico, muito bom.

  • @WADIK2000
    @WADIK2000 4 года назад

    Ноутбук на зарядку, планшет на зарядку, смартфон на зарядку, сигарету на зарядку, так еще и часы настенные на зарядку! ))

  • @omsingharjit
    @omsingharjit 5 лет назад +3

    But how do i Change time ? , And can you interface this with Android app using mit AI 2 ??? So we will able to change many graphical
    (Custom text ) mode using Android as remote ??

  • @PATILGameking
    @PATILGameking 5 лет назад +1

    You Deserve millions of subscribers. Well. done