ADC LED Volume Meter with Arduino Uno - The Learning Circuit

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

КОМЕНТАРІ • 41

  • @cbmeeks
    @cbmeeks 3 роки тому +16

    Came for the circuit, stayed for the ukulele.

  • @fleacircusdirector
    @fleacircusdirector 3 роки тому +4

    You could add an analogue pot to control the sensitivity by scaling your offsets. The Arduino map function is good for that.

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

    I took one of the audio jacks off my 8X8X8 LED cube circuit board and put it in a pair of headphones for a coworker. It originally was a hardwired cord that got cut in a car door. My coworker just bought a new M/M phone chord with microphone to plug into the headphones and he couldn't be happier!

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

    Thanks Karen! As always your projects/tutorials are intriguing. Keep them coming.

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

    Ha, I never used the notation shown to trigger an led. Another thing learned. thanks Karen.

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

    You could use a timer instead of delay with an interval of 25ms. Leave the mcu to keep cycling round the loop and record the max, mean or average value per timed interval. Reset the value(s) after each interval. Might look a little better.

  • @mikemargo
    @mikemargo 3 роки тому +4

    the code is using a linear scale to drive the VU meter... its a logarithmic scale for audio.....

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

      Thinking the same thing... I'd go log.

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

      That's why i didn't include LM3914 in my comment.

  • @cbmeeks
    @cbmeeks 3 роки тому +5

    For me, I would wire the RED LED's into an ESP32 to send commands to the house WiFi so that when the kids got too loud, internet goes down.

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

    Presented in such a fun, smiley manner.

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

    Nice! Perfect illustration for "killing a fly with a canon".

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

    Amazing, I think if you add a capacitor on each LED you may have some cool fade effects!
    but will be costly somehow

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

    i like your teaching style💯

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

    Thank you!

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

    You are talented.

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

    Go maker Karen!! Fun video.

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

    Yeah Master
    Your recompense
    Bigger than all
    God bless you
    Merci
    FR.

  • @chintamanisahastrabudhe3649

    How can I display my output on screen if I am measuring liquid quantities? Right now I am reading them physically by taking into the bottle

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

    Wow!

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

    Great circuit. I'm gonna give it a try.
    How can I get the circuit to respond to a certain frequency so that I can build an array and make a spectrum analyser?

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

      Use filter capacitors and blocking diodes to notch each frequency, Use LM3915s or LM3916s to save space. Chain them to stack 20 or more LEDs in each graph.

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

    Awesome video!! Thanks for uploading it! I don't know why but it bugged me the way "aux" was pronounced. 😆

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

      How do you pronounce it? I said it the same way I’d say auxiliary.

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

    Karen adding to her cool factor again

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

      [puts on sunglasses] Always. 😎

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

      @@maker_karen1785 When you're cool, the sun shines on you 24 hours a day.

  • @J.D-g8.1
    @J.D-g8.1 Місяць тому

    Was that a Cartman "here" you said? ;)

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

    Incorporate it into a turbo meter on my sports car. It already has a meter of sorts built in but I would have to stare at the dash to read it.

  •  3 роки тому

    It would be perfect with more LEDs on a home made DDR machine 😉

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

    Haaaaa cantiiiik

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

    Anyone remember Knight Rider? Thinking this could be used to build his (KITT's) voice box display.

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

      I used same one to build controller for chasing strobe lights

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

      Oops! You didn't want scan display on front. Sorry. In that case, read my other post for LM3915 chip.

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

    No gloves?

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

      I shoot at my home now where I CONTROL THE THERMOSTAT!! MUAHAHAHA!!

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

    Hi Karen

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

    Oh yeah Lady.

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

    honestly, as nice and simple as that code is, it would be rather slow. to keep it using arduino but to get max responsiveness you could use the map routine to 8 and then use that value to drive the pins directly with PORTX... personally I wouldnt even use the arduino tools and would just run raw c with DDRX and PORTX but I'm a masochist.