element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • 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
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • 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
Experts, Learning and Guidance
  • Technologies
  • More
Experts, Learning and Guidance
Ask an Expert Forum Ideas? Detecting a narrow frequency within an audio signal
  • Blog
  • Forum
  • Documents
  • Leaderboard
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Experts, Learning and Guidance to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 25 replies
  • Answers 2 answers
  • Subscribers 322 subscribers
  • Views 4016 views
  • Users 0 members are here
  • microprocessor_controlled
  • bandpass
  • filter
Related
See a helpful answer?

Be sure to click 'more' and select 'suggest as answer'!

If you're the thread creator, be sure to click 'more' then 'Verify as Answer'!

Ideas? Detecting a narrow frequency within an audio signal

Former Member
Former Member over 11 years ago

I am looking for a way to detect the presence of a single musical note that lies within a real-world audio signal. For example, from a piano recording, I want to detect when Middle C (440 hz) is sounded while ignoring all the other notes.

 

Perhaps some kind of tunable bandpass filter would do the job? If so, it would have to be a very narrow bandpass filter because musical notes are separated in frequency by a ratio of about 1.06, which is quite close.

 

The thing might also be thought of as an AM receiver that operates with a carrier frequency not in the RF but in the audio frequency range.

 

In my application, the centre (detected) frequency will be controlled by microprocessor. The receiver will frequency-hop, quickly changing the detection frequency. I am imagining that the microprocessor might do this by supplying a clock frequency or by directly writing a digital value.

 

It does not need to be a precision circuit — simplicity and low cost are more important. The application can tolerate a fair degree of error.

 

Any ideas?

 

Thank-you!

 

Gordon Hicks

  • Sign in to reply
  • Cancel
Parents
  • vsluiter
    0 vsluiter over 11 years ago

    Hi Gordon,

     

    Why not use a microcontroller with an ADC for this? On this website⇒ http://www.earlevel.com/main/2012/11/26/biquad-c-source-code/ , and this nice widget Biquad calculator v2 | EarLevel Engineering you can find C code for a simple biquad filter, and you can also make a tunable notch with that. If you're using an arm core you can even use the CMSIS-DSP blocks for biquads.

    This solution will be quite cheap, and very tunable.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to vsluiter

    Hi vslluiter,

     

    Thank-you for pointing to biquad filters and for providing the good resourse links. This seems like a very good place for me to start. Because I am already familiar with analog circuitry, I was thinking in those terms, but I see that the microprocessor-based approach offers many benefits to the application, first of which is simpler electronic fabrication. I am new to DSP so I will have a bit of a learning curve ahead of me!

     

    Thanks again, super helpful.

     

    cheers,

    Gordon

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

    Play with the link that V sent by all means (its a good start) but you may have some problems because the example code there is done using double length floats which will be somewhere between slow and dead slow on a low cost micro. (If you can stretch to an ARM Cortex M4 then you'll be OK. ARM have a free DSP library you can use.)

    If the basic idea seems to be working for you then the next step is to implement the filters in fixed point if you can't afford an M4 - it's perfectly doable but harder to find example code.

    And of course if you only need one filter running with a reasonable sample rate you may get away with doubles even on an M3 clocked at a meager 24Mhz.

    If you do need to use fixed point then let us know and I'll give you an example.

     

    MK

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

    I'm definitely familiar with the challenges of floating point ops on a low cost microprocessor. One simplification I am considering is keeping the sample rate low. If I can keep my max frequency under 1000 hz, then I should be able to sample at 2000 hz, correct?

     

    I'll look into ARM Cortex M4. Right now any of the ARM Core processors are new territory for me. Do you think M0 might be feasible?

     

    Thanks again!

    Gordon

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Robert Peter Oakes
    0 Robert Peter Oakes over 11 years ago in reply to Former Member

    Keep us posted as you go, there will be plenty of folks wanting to see how this works out

     

     

     

    Thanks

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Robert Peter Oakes
    0 Robert Peter Oakes over 11 years ago in reply to Former Member

    Keep us posted as you go, there will be plenty of folks wanting to see how this works out

     

     

     

    Thanks

    • 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 © 2026 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