RyotaSato_BSE_Portfolio

This is the showcase of my project (High-Performance Audio Monitor).


Project maintained by ryos17 Hosted on GitHub Pages — Theme by mattgraham

8x32 LED High Performance Audio Monitor

An audio monitor is usually used in studios to express music in the form of audio. For example, the speakers you see in studios are called audio monitors. A lot of musicians utilize audio monitors to playback music and visualize sound. In this project, I attempted to create a monitor where the audio spectrum is expressed visually through an 8x32 RGB LED Matrix.

Engineer School Area of Interest Grade
Ryota Sato Adrian Wilcox High School Audio/ Electrical/ Software Engineer Incoming Junior

32 x 16 led matrix

First Milestone

My first milestone is sending data from processing to Arduino, and then lighting up the matrix depending on the data. First, I did not know anything about serial ports and sending data. Thus, I decided to look at one of the example codes called SimpleWrite. In this code, a specific character was sent to the serial port whenever the mouse was hovering over a square. Then, Arduino took in the letter sent into the serial port and lit up a LED. By looking at each line of code, I was able to fully understand how serial ports work. Also, I was able to understand specific libraries, functions, and setups required for the program to work.

My other part of the milestone was lighting up the LED matrix. The first thing I did to achieve this milestone was to download the library used for the LED matrix. Then, I looked at an example called matrixtest. In this example, the LED matrix displayed words and letters depending on the code. Through this code, I was able to understand how to set up a matrix. In addition, I learned functions that light up specific pixels, screens, and colors.

Finally, I was able to combine both examples and modify the code so that whenever the mouse hovers over the square, the matrix turns red and if the mouse is off the square, the matrix turns green. Some important information to know is that 5V of power is not enough to light up the whole matrix board with a brightness level of 100. Also, every single time you want to show the matrix, you have to use a special function called matrix.show. The circuit, code, and video below explain other important bug fixes and a demonstration.

Circuit:

circuit

Arduino Code:

Arduino Code 1

Processing Code:

Processing code 1

Video:




Second Milestone

My second milestone was creating the audio spectrum on Processing, and sending the information to Arduino, which lights up the same information on the matrix. First, I decided to open the FFTSpectrum example code and understand how the audio spectrum works. I was able to then modify the code so that the program now takes the line in of my mic input instead of a sample sound file. Then, I made if statements to round the long numbers into integers ranging from 0-8, which was all concatenated to one string to send. On the Arduino side, it takes the long string and takes the information, and lights up the correct pixels. One challenge I had was that the pixel flickered every single time the code ran and also lighted up the wrong pixels. To fix this problem, I used a special serial function called serial.parseInt which took only integers and ignored all letters and empty spaces. Also, running the matrix.show function outside of the for loop fixed the LED flickering glitch. Additionally, deciding how to convert between strings, characters, and integers confused me a lot of at the end, I was able to understand how to efficiently store information as integers. All in all, I was able to finish the base project and successfully create a high-performance LED audio monitor. The code segment below explains more in detail about this process. The circuit is the same. The video below shows a demonstration of the second milestone.

Arduino Code:

Arduino code 2

Processing Code:

Processing code 2

Video:




Final Milestone

My final milestone was fixing all the bugs that were present and adding customization to my base project. I noticed later on that all of the matrices were not lighting up and showing up correctly. If you look closely at the milestone two video, the last few columns are not lighting up at all. To fix this problem, my instructor and I spent countless hours debugging and trying out a lot of different codes and fixes. What I figured out was that changing the serial communication bps changed the output, which made me wonder if changing the bps value can fix the bug. Sadly, it did not work. In the end, I was about to give up but luckily, I was able to fix the entire bug by changing one if statement into a while loop.

Now that my base project is officially finished, I decided to start customizing my project. First, I decided to change the color of each row and create a rainbow depending on the height of each column. This customization was relatively easy by just creating three variables naming it rgb1, rgb2, and rgb3. Then, I just created a long if-else statement that declared the correct RGB values depending on the row. The next customization I decided to create was taking the stereo mix input (computer line out) and displaying it on matrix instead of the mics line in. I was able to easily create this modification by using sound lists and declaring a specific sound device which in this case is the stereo mix.

The final customization I decided to create was using a 4x4 keypad to control various parameters of the matrix. I first downloaded the correct Keypad library and decided to experiment with example codes on the internet for reference. With a simple copy-paste code, I was able to get the keypad to work with no problem. Now it was sending the information from Arduino to processing. One problem I thought I will encounter is that sending information to processing will be impossible while data is sent the other way simultaneously. Thankfully, this problem was not present. Also, another struggle creating my final customization was changing the keypad input (char) to the correct index of the audio device (int). With a few console logs and debugging, I was able to successfully map out the keypad so each button controls a unique part of the matrix. I have attached a picture of the final circuit, mapping of the keypad, and the final code pdf for Arduino and processing.

Final Circuit:

circuit 2

Mapped Keypad

Mapped keypad

Final Arduino Code:

Arduino Final Code.pdf

Final Processing Code:

Processing Final Code.pdf

Final Milestone Video:



Demo Night Video




Conclusion

All in all, I learned a lot about engineering through working on this project. In the beginning, I had no idea about Arduino, libraries, and the specific codes that are unique to the program. At the end of the project, I can now fully understand the hardware and lines of code to create any project. Also, the project made me realize that I love working in fields that combine music and engineering. One overarching bug that is still present in this project is that if I switch between the audio inputs too much by using keypads, the program crashes. Even after hours of debugging and searching through the internet, I could not find any resolutions. In the future, I want to fix this bug and attempt to complete more difficult projects.