ECE434 Project - Bluetooth Speaker

From eLinux.org
Revision as of 14:42, 9 November 2020 by James Werne (talk | contribs)
Jump to: navigation, search

thumb‎ Embedded Linux Class by Mark A. Yoder


Team members: James Werne Neil Roy

Grading Template

I'm using the following template to grade. Each slot is 10 points. 0 = Missing, 5=OK, 10=Wow!

09 Executive Summary
09 Packaging
09 Installation Instructions 
09 User Instructions
09 Highlights
09 Theory of Operation
09 Work Breakdown
09 Future Work/Conclusions
09 Hackster.io
09 Demo/Poster
00 Late
Comments: Have a good day.

Score:  90/100

(Inline Comment)

Executive Summary

This project will use a BeagleBone Green Wireless to connect to a Bluetooth speaker. The BeagleBone will then take music (either .mp3s or .wavs) on the computer and send the music to the speaker. There is also a program included that lights up a WS2812b programmable LED strip to respond to the music.

We currently have a BeagleBone Green Wireless and a Bluetooth speaker. We've been able to connect to the Bluetooth Speaker and play .mp3s (using mplayer) and .wavs (using aplay). We've also been able to program the LED strip manually, so we're trying to work on a real-time processing method of programming the LED strips.

We aren't yet able to get the LEDs to respond to the music. We're currently experimenting with some different FFT algorithms, so we're going to try to play around with getting a spectrum analyzer to work before applying it to the LED strip.


Picture that summarizes the project.

Give two sentence intro to the project.

Give two sentences telling what works.

Give two sentences telling what isn't working.

End with a two sentence conclusion.

The sentence count is approximate and only to give an idea of the expected length.

Packaging

If you have hardware, consider Small Build, Big Execuition for ideas on the final packaging.

This project uses a Beaglebone Green Wireless, a WS2812b programmable LED strip, and a Bluetooth speaker (any will work), and any cables required to interface the Beaglebone with a linux device. We recommend using a current-limiting resistor when connecting the WS2812b to the GPIO ports on the Beaglebone.

There are no additional hardware requirements, but feel free to design an enclosure and cover the outside with programmable LEDs.

Installation Instructions

Give step by step instructions on how to install your project.

  • Include your github path as a link like this to the read-only git site: https://github.com/MarkAYoder/gitLearn.
  • Be sure your README.md is includes an up-to-date and clear description of your project so that someone who comes across you git repository can quickly learn what you did and how they can reproduce it.
  • Include a Makefile for your code if using C.
  • Include any additional packages installed via apt. Include install.sh and setup.sh files.
  • Include kernel mods.
  • If there is extra hardware needed, include links to where it can be obtained.


To install the project, follow the instructions below:

1) Ensure you have git installed on your device, and fork the repo linked to the following read-only git site:

https://github.com/wernejm/ECE434_Project

2) Navigate to the project directory. Run ./install.sh in the command line. This will install the following necessary packages:

mplayer, aplay, etc...


User Instructions

Once everything is installed, how do you use the program? Give details here, so if you have a long user manual, link to it here.

Consider making it autostart for full credit.



We've outlined the key functions of our project below, as well as instructions on how to use each of them.

1) Ensure you've installed all of the necessary packages (see installation instructions above). Next, navigate to the project directory and run ./setup.sh to configure the appropriate pins.

2) The next step is to connect to your bluetooth speaker. It's important to make sure that the Bluetooth Daemon is running on your Beaglebone, so be sure to run "sudo systemctl start bluetooth" if you haven't already.

First, set your speaker to scan mode. While your speaker is searching for a device to connect to, run sudo bluetoothctl into the command line of your BeagleBone, then run scan on. Once you see your device, run scan off and take note of the MAC address associated with your device. Run pair [MAC address] to pair your BeagleBone to the speaker, then run connect [MAC address]. Your speaker should now be connected.


Highlights

Here is where you brag about what your project can do.

Include a YouTube demo the audio description.

Theory of Operation

Give a high level overview of the structure of your software. Are you using GStreamer? Show a diagram of the pipeline. Are you running multiple tasks? Show what they do and how they interact.

Work Breakdown

List the major tasks in your project and who did what.

Also list here what doesn't work yet and when you think it will be finished and who is finishing it.


Both partners worked together on most of the major tasks. We both worked on getting the BeagleBone to connect to the Bluetooth speaker to play music. James primarily handled mplayer, while Neil focused on aplay. We worked together to display patterns on the programmable LED. We also worked together on applying the FFT to our music, which ultimately led to us being able to develop a real-time equalizer pattern. The project involved a considerable amount of pair programming, so the technical work was shared fairly. For the most part, Neil completed more of the technical work, while James split his time into updating the eLinux and hackster.io pages.

Future Work

Suggest addition things that could be done with this project.

We were interested in taking this project in several different directions. Below are a few of our suggestions:

  • Increasing the number of audio file formats that properly work with our playmusic.sh function
  • Work to interface the program with popular streaming services, like Spotify, Youtube Music, and so on
  • Make use of the BeagleBone's wireless capabilities and find ways to select/play music on the Bone remotely, perhaps using Flask or other related software


Conclusions

Give some concluding thoughts about the project. Suggest some future additions that could make it even more interesting.




thumb‎ Embedded Linux Class by Mark A. Yoder