element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Build Amazing Speaker
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 5 replies
  • Subscribers 392 subscribers
  • Views 502 views
  • Users 0 members are here
  • noise cancellation
  • digital signal processing
  • speaker amplifier
  • visual eq
  • speaker
Related

Build Amazing Speaker

abolfazlnejatian
abolfazlnejatian over 8 years ago

Hey everyone

I’m gonna build up a PC speaker with Arduino, and my desired speaker detailed as follows:

  1. 3.5 mm jack, Bluetooth and USB as an input section.
  2. I need to make some process on my input signal (FFT and cross-correlation) in order to create visual EQ on LCD, Reinforcing/Weakening some signal’s frequency in case of need and pass signal throw an adaptive noise cancellation like RLS (or LMS algorithm in the case of memory shortage) and a vocal commander, turn on/down volume, next/previous and pause/stop command with voice command.(it’s totally depend on the processing speed and memory, I doubt Arduino can handle it image)
  3. And in output section, two approximately 60 Watt speakers (I don’t know which one is more accurate!!! two mono amplifier or one stereo amplifier.)

So gimme your point of views about it and its Strengths/weak points.

I did a lot of DSP works in MATLAB environment and I know about the basis of signal processing but I don’t know about the feasibility of run it on Arduino(maybe due or mega can deal with it)

And would you please recommend your intended modules for section one and three of my question.

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 8 years ago

    There are a lot of parts to this project, personally I would challenge it a bit at a time rather than trying to accomplish everything at once.

     

    Firstly I would look at getting a 2 channel amplifier that could handle your speakers and has a basic input stage using just the 3.5mm jack. This is the part that is going to define the majority of your power requirement, which produces another problem at the very first instance. How are you going to power it? Once you have worked out a power supply that can drive the amplifier, you will need to consider getting a slightly larger one that can handle the other components later on. Maybe the LCD screen will need an additional 1.5A on top of the processing etc..

     

    Once you have the amplifier up and running, you can take a copy of the signal from the input stage to be able to send it to the DSP. How are you going to do this without disrupting the signal going to the amp? its possible that you can run the signal into the DSP and then back out to the amp but this would likely be more complex. Running the DSP with a copy of the signal/ as a parallel process would allow you to still use the basic system while you are working on it.

     

    There will likely be some lag between how fast the DSP can perform the FFT and use the results in a visual display when compared to the sound that comes out of the speakers, this is inevitable and this is why the faster the DSP is and the more efficiently you can get it to perform is paramount.

     

    Next is the display, can the DSP handle the display also? or would a separate controller be needed to send the output of the DSP to?

     

    Sorry I haven't offered any specific help at this stage but it is a large project with a lot of other complexities that could make any suggestions difficult without knowing more exact details. The synopsis of this is to Keep It Simple from the beginning and slowly work upwards, unexpected obstacles can and will arise.

     

    EDIT

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    A quick side note on the power supply, driving 2 x 60W speakers at 12V = minimum power supply requirement of 12V at 10A without any other considerations is going to require something pretty beefy. In power supply language Beefy = Expensive

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 8 years ago

    There are a lot of parts to this project, personally I would challenge it a bit at a time rather than trying to accomplish everything at once.

     

    Firstly I would look at getting a 2 channel amplifier that could handle your speakers and has a basic input stage using just the 3.5mm jack. This is the part that is going to define the majority of your power requirement, which produces another problem at the very first instance. How are you going to power it? Once you have worked out a power supply that can drive the amplifier, you will need to consider getting a slightly larger one that can handle the other components later on. Maybe the LCD screen will need an additional 1.5A on top of the processing etc..

     

    Once you have the amplifier up and running, you can take a copy of the signal from the input stage to be able to send it to the DSP. How are you going to do this without disrupting the signal going to the amp? its possible that you can run the signal into the DSP and then back out to the amp but this would likely be more complex. Running the DSP with a copy of the signal/ as a parallel process would allow you to still use the basic system while you are working on it.

     

    There will likely be some lag between how fast the DSP can perform the FFT and use the results in a visual display when compared to the sound that comes out of the speakers, this is inevitable and this is why the faster the DSP is and the more efficiently you can get it to perform is paramount.

     

    Next is the display, can the DSP handle the display also? or would a separate controller be needed to send the output of the DSP to?

     

    Sorry I haven't offered any specific help at this stage but it is a large project with a lot of other complexities that could make any suggestions difficult without knowing more exact details. The synopsis of this is to Keep It Simple from the beginning and slowly work upwards, unexpected obstacles can and will arise.

     

    EDIT

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    A quick side note on the power supply, driving 2 x 60W speakers at 12V = minimum power supply requirement of 12V at 10A without any other considerations is going to require something pretty beefy. In power supply language Beefy = Expensive

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube