Raspberry Pi Spectrum Analyzer, w/ Python & RGB LED Strip

Поділитися
Вставка
  • Опубліковано 14 жов 2024
  • music: / 320036531622 Documentation: www.instructabl... Realtime FFT of MP3s in Python code, levels sent to RGB LED strip from adafruit. Some people call this a Graphic Equalizer, too. Music by Sharkara, on album Lights.

КОМЕНТАРІ • 20

  • @reviathon360
    @reviathon360 10 років тому +1

    Dang it. You beat me to this! I had this as an idea for months (but I bought the wrong kind of RGB's. Needed Common Anode, not common Cathode. )
    Oh well. That open source brilliance though. Good job on the project!

    • @ScottDriscoll
      @ScottDriscoll 10 років тому +1

      thanks! myself and the LightShow Pi community would love any improvements you can make. The strip I used is pretty expensive.

  • @pilotkid2011
    @pilotkid2011 9 років тому +1

    is there a version of your code for regular RGB led strips that do not have addressing or what would I need to modify? Also is there a way to connect this into spotify?

    • @BMCGhastCast
      @BMCGhastCast 7 років тому

      pilotkid2011 you need adressable leds, they have a small chip between each led which makes them controllable. to modify them you eould need to attach a small chip to every led which would cost you more time and money (ubless you are a chinese working in a led factory. you could connect it to spotify as it uses whatever music or sound it hears, i havent looked into the code but if you run it from your pc it should be possible.

  • @JustinsChannel
    @JustinsChannel 5 років тому

    Is It possible if I use SMD3528 RGB LED Strip
    ? Please Reply ASAP.. badly needed

  • @Shiznit711
    @Shiznit711 10 років тому +1

    I can't find this music anywhere!

  • @EliteTester
    @EliteTester 10 років тому

    Nice that looks very good

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

    does this work with WS2812 3pol adressable RGB ?

  • @davidwells4969
    @davidwells4969 10 років тому

    How did you index that number of lights when the output of a Rasbery Pi is less than that? Thats something I have been wondering in building my spectrum analyzer.

    • @CuriousInventor
      @CuriousInventor  10 років тому +2

      The entire LED strip is controlled by two pins. Each LED is attached to an addressable chip in the strip.

  • @rwoodfolk
    @rwoodfolk 10 років тому

    This looks like as nice Pi Project to try :-)

  • @Aaronemmanuel-27
    @Aaronemmanuel-27 3 роки тому

    still trying to find the music

  • @alexannovavarela9410
    @alexannovavarela9410 5 років тому

    this is soooooooooooooooooooooo cool, Pi 2 ... it is possible to do it with it?>

  • @chrissawyer1317
    @chrissawyer1317 10 років тому

    Please link to the music! I can't find it :((

  • @joshuatarbutton7282
    @joshuatarbutton7282 10 років тому

    Cool

  • @JurekOK
    @JurekOK 10 років тому

    why do 2048 points if you only use 5 strips? do 64 points and save on energy . . . .

    • @ScottDriscoll
      @ScottDriscoll 10 років тому

      there's almost more time in getting the audio data into a numpy array than than actually doing the fft, so decreasing the fft size doesn't necessarily speed it up, since you end up doing more prep work. You're right that 2048 is unnecessary. Either changing the fft size or just doing 5 band-pass filters might be faster.