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 Arduino soundpad suggestions for assignment
  • 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 Verified Answer
  • Replies 8 replies
  • Answers 4 answers
  • Subscribers 389 subscribers
  • Views 970 views
  • Users 0 members are here
Related

Arduino soundpad suggestions for assignment

fbirch
fbirch over 5 years ago

Hello everyone,

 

I'm hoping to use an arduino and some basic code in a group assignment and have zero experience with arduinos and very little coding knowledge.

 

I'd like to create an 8x8 grid of buttons that contain RGB lightning, and are attached to a speaker of some description to play a tone. The intention is to create a soundpad-esque (like a launchpad) tactile device that enables me to play a tone or series of tones when one of the buttons in the 8x8 grid are pressed. I'd also like to be able to have a colour displayed on the RGB lighting attached to the associated button.

 

I shall be using python to play a data value as a MIDI tone or series of tones, along with using a different data value to select a colour.

 

I am looking for hardware advice, as I have very little experience with Ardunio or circuitry in general. I will have access to a vast array of tools and five weeks to become competent enough to create such a project, along with a team of 5-8 people to assist. We are all in a similar boat with experience, however are eager to learn. I have already looked into multiple tutorials and other resources but it appears the options are near endless, so any assistance with recommendations or advice on this build specifically would be greatly appreciated.

 

Thank you for your time!

  • Sign in to reply
  • Cancel

Top Replies

  • shabaz
    shabaz over 5 years ago +5 suggested
    Hi Finn, This is quite general, I'm not sure what part you specifically need help with and I can't advise on your entire project. If you mean how to detect presses, then as you mention, buttons ( switches…
  • fmilburn
    fmilburn over 5 years ago +5 suggested
    Hi Finn, Expanding a bit on what Shabaz has outlined... Adafruit has a project which seems similar to what you have described: https://www.adafruit.com/product/1929 It is open source and there are links…
  • fmilburn
    fmilburn over 5 years ago in reply to fbirch +2 verified
    There is a fair amount of difference between Python and C / C++ as far as languages go, but Arduino is set up for beginners and isn't hard to learn. In my opinion C with some C++ is better suited to microcontrollers…
Parents
  • shabaz
    0 shabaz over 5 years ago

    Hi Finn,

     

    This is quite general, I'm not sure what part you specifically need help with and I can't advise on your entire project. If you mean how to detect presses, then as you mention, buttons (switches) could be used. If you mean to detect variances in how it is pressed, i.e. more analog than a digital on-off value, then the search term is sensors, but bear in mind most will be opaque and won't have a backlight, so you'll have to investigate if that is feasible or to design how to implement that. You could examine existing products too.

    If you meant how to have RGB lighting, search for neopixel or WS2812B (combined with arduino) and you should find some ideas.

    You mention Arduino but also Python, so I wasn't sure how that ties together since a normal Arduino uses a C-like language, although there is 'circuitpython'. Regarding MIDI, the Arduino documentation explains how to connect that here https://www.arduino.cc/en/tutorial/midi

    If you go with circuitpython there may be less tutorials/examples on the Internet, since I guess it may not be as widespread as normal Arduino C-like language.

    • Cancel
    • Vote Up +5 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • shabaz
    0 shabaz over 5 years ago

    Hi Finn,

     

    This is quite general, I'm not sure what part you specifically need help with and I can't advise on your entire project. If you mean how to detect presses, then as you mention, buttons (switches) could be used. If you mean to detect variances in how it is pressed, i.e. more analog than a digital on-off value, then the search term is sensors, but bear in mind most will be opaque and won't have a backlight, so you'll have to investigate if that is feasible or to design how to implement that. You could examine existing products too.

    If you meant how to have RGB lighting, search for neopixel or WS2812B (combined with arduino) and you should find some ideas.

    You mention Arduino but also Python, so I wasn't sure how that ties together since a normal Arduino uses a C-like language, although there is 'circuitpython'. Regarding MIDI, the Arduino documentation explains how to connect that here https://www.arduino.cc/en/tutorial/midi

    If you go with circuitpython there may be less tutorials/examples on the Internet, since I guess it may not be as widespread as normal Arduino C-like language.

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