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 Using 40 low frequency Mics.
  • 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 Suggested Answer
  • Replies 21 replies
  • Answers 12 answers
  • Subscribers 394 subscribers
  • Views 2639 views
  • Users 0 members are here
Related

Using 40 low frequency Mics.

noblemaster
noblemaster over 8 years ago

Hi,

I am working on a device that takes input from 40 microphones and send data to PC via Arduino.

I want to use low frequency microphones (5Hz onwards) with around 200-250Hz sampling for each mic.

 

For this purpose, my preliminary design is like this...

    40 Mics --> 40 PreAmp circuits --> Mux Shield II --> Arduino DUE --> PC

 

Please suggest me suitable commercial available preAmp circuits and any suggestion on the design is most welcome.

 

Thanks.

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 8 years ago in reply to noblemaster +2 suggested
    Your answer suggests you are willing to spend over $1000 per channel to get the best possible. If that is not true, the description needs to be more complete in order to get a helpful answer.
  • michaelkellett
    michaelkellett over 8 years ago in reply to noblemaster +2 suggested
    To measure at up to 100Hz you need to sample each microphone at 500Hz or faster. For each microphone you will need a a buffer amplifier as shown on the Invensys data sheet and an anti-aliasing low pass…
  • rachaelp
    rachaelp over 8 years ago in reply to DAB +2 suggested
    DAB is right, the USB on the Arduino is serial over USB, i.e. it just shows up as a serial port on the PC and you'll probably be maxed out at 115200 baud (I may be wrong here but you should look into it…
  • noblemaster
    0 noblemaster over 8 years ago in reply to michaelkellett

    Thanks a lot for the detailed answer. Actually my input is concentrated below 50Hz and there is no/minimum frequency expectation (i mean not a powerful shoot) above 100 Hz therefore I am not considering anti-alias filter right now.

     

     

    That is why I am only concerned with lower cuttoff.

    In this manner... What do you suggest? Shall I go with just changing capacitor? or any thing else is required to make it compatible with ICS-40300 mic?

    I am thinking to modify this board --> https://www.sparkfun.com/products/9868 by changing mic model and input capacitor upto 27uF....

     

     

    Thanks again.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • michaelkellett
    0 michaelkellett over 8 years ago in reply to noblemaster

    If you are using  a microphone then you pretty much HAVE to have an anti alias filter - if you don't then any sound at frequencies above half the sampling rate is converted into signals within the same band as the wanted signals. Unless your application has some feature that ensures unwanted sounds never reach the microphone you will need the filter. Can you tell us  a bit more about the application.

     

    The Sparkfun board could be modified as you suggest.

     

    How far from the multiplexer will the microphones be ?

     

    MK

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • noblemaster
    0 noblemaster over 8 years ago in reply to michaelkellett

    Yes the environment I am working does filter sound for me.

    I am planning to put mics with around 6inch wired connected to preamp which will be nearly connected to Mux Shield II which will be near to Arduino Due from where data will be fed by serial communication USB to PC. So you can say all setup is placed side-by-side.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • DAB
    0 DAB over 8 years ago in reply to noblemaster

    I am not sure the USB can handle the amount of data you can collect from 40 microphones.

    Are you going to do any preprocessing before you send the data, or just send up the raw data?

     

    DAB

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • noblemaster
    0 noblemaster over 8 years ago in reply to DAB

    No Sir... I am not doing any preprocessing except preamp. All the processing will be done on recorded data in PC.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • rachaelp
    0 rachaelp over 8 years ago in reply to DAB

    DAB is right, the USB on the Arduino is serial over USB, i.e. it just shows up as a serial port on the PC and you'll probably be maxed out at 115200 baud (I may be wrong here but you should look into it to make sure before you build everything up). So assuming this is the maximum you can get and you are doing 12-bit sampling so you'll need to spread this over two serial words then with 7 bits, no parity and 1 stop bit you are at 18 bits per sample (two serial words) which is 6400 samples per second maximum which leads to a maximum sample rate of 160 samples per second per microphone which is well short of the 200-250Hz sample rate you were looking for.

     

    Best Regards,

     

    Rachael

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • noblemaster
    0 noblemaster over 8 years ago in reply to rachaelp

    I've tested Arduino Due, working good at  624000 Baud over USB. I hope it will be quite good for me. What do you say?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • rachaelp
    0 rachaelp over 8 years ago in reply to noblemaster

    Noble M wrote:

     

    I've tested Arduino Due, working good at 624000 Baud over USB. I hope it will be quite good for me. What do you say?

    Ok that sounds promising then. Have you tested it with large continuous data streams to ensure that you don't get any dropped/garbled data if anything doesn't quite sync up right?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • noblemaster
    0 noblemaster over 8 years ago in reply to rachaelp

    I did like this... connected 1 Mic and read 40 times in a 5milisecond-loop for a duration of about 5seconds. I applied 2-3 thumb-press signals during recording. Printed 40 results on the same line and sent to PC with this huge baud after every 40 recorded samples. Initial thought was that if all goes well then all 40 recordings will be same.

     

    Analysed 40 time series recordings and calculated correlation coefficients that were 0.99-0.999... So i feel that I've got pretty much success.

    What do you say?

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • rachaelp
    0 rachaelp over 8 years ago in reply to noblemaster

    I was thinking more along the lines of sending a known data set at rate which is utilizing a reasonable percentage of the link bandwidth, e.g. a counting value or a PRBS sequence incrementing at a set rate and send this over an extended period of time with something on the other end monitoring what it receives continuously and counting errors. I'd set this up and run it for hours or days to be sure something wasn't going to go wrong occasionally.

     

    But at the end of the day it depends on what your application is doing and whether you can tolerate the occasional error once in a while and deal with / recover from it as to whether its worth the effort to validate the data link any further, it might not be so if you are happy with the validation you've done so far then that's great as then it looks like you should have enough bandwidth for what you are trying to do.

     

    Best Regards,


    Rachael

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
<>
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