Latinx Modern Vinyl Player

This project integrates Radio-Frequency Identification (RFID) technology with the Spotify API to emulate the experience of a traditional record player. By scanning RFID-tagged cards, each representing a specific album or track, the system plays the corresponding music through Spotify. Additionally, NeoPixel LEDs provide visual feedback by illuminating the player during playback.
Supplies
️ Supplies & Components
Electronics
- Raspberry Pi 4 (or similar)
- RFID RC522 Module
- RFID Stickers (13.56MHz)
- NeoPixel LED Strip (WS2812B)
- Speakers (Bluetooth or AUX-connected)
- Female-to-Female Dupont Jumper Wires
- Power Supply (5V 3A for Raspberry Pi)
Fabrication (Optional, for Custom Design)
- 3D Printer (to make mini vinyl records)
- Wood Laser Cutter (to create a box for the system and tiny vinyls)
Setting Up the Raspberry Pi
Install System Updates
Enable SPI for RFID Scanner
- Go to Interfacing Options > SPI > Enable it.
- Reboot the Raspberry Pi:
Setting Up the RFID Scanner

.png)



Wiring the RC522 RFID Module
RFID PinRaspberry Pi Pin
- Wire pins from GPIO pinouts from Raspberry Pi to RFID.
*Use the GPIO pinout sheet to help you dictate where to put the pins. Also, use at my pictures to give you a reference point.
Install Required Libraries
Testing the RFID Reader
Run the read.py script to scan RFID cards and retrieve their unique IDs:
Write down each card's ID. You’ll need them for the next step!
Setting Up Spotify Integration
- Register a Spotify Developer Application:
- Go to the Spotify Developer Dashboard and create a new app.
- Note the Client ID and Client Secret.
- Add the following Redirect URI: http://localhost:8888/callback
- Obtain the Device ID (to send playback commands):
- Use the Spotify Web API Console to get the device ID.
Controlling Spotify Playback With RFID and LEDs
Create a script playerwithlights.py to link RFID scans to Spotify playback and control NeoPixel LEDs:
Extra Customization
Things I added:
- Customize the wooden box design using a laser cutter.
- 3D print mini vinyl record tags for a more authentic feel.
- Expand with additional LED animations.
- I am using my personal IPAD, to NOT PLAY music, but only show my personal Spotify and show the changes in songs from the vinyl box that it is doing through the communication done though the API.
- Speakers for the music.
The sky is the limit with this project. You can 3D print a box, you can use a real vinyl player, perhaps add ADAFRUIT Matrix Panels to display the album covers, and more.
Pictures I Took During My Customization!






Demonstration

Enjoy :D
Challenges & Struggles:
One of the biggest challenges in this project was dealing with network connectivity while using the Spotify API. At Boston College, the available Wi-Fi networks (EDUROAM and BOSTONCOLLEGE WIFI) made it difficult to obtain a static IP address and maintain a stable connection across multiple devices—Raspberry Pi, SSH MacBook, phone, and Spotify API tokens.
To work around this issue, I resorted to using my personal hotspot. While this worked for my phone, it struggled to handle multiple devices simultaneously, especially for API calls requiring real-time responses from Spotify. As a result, my connection would often delay or drop, causing the software to crash when the API couldn't find an active network.
This remains an ongoing issue, and while the project is functional, improvements in network handling (such as using a dedicated router or a different network configuration) could enhance its reliability. If you're trying to replicate this project, keep in mind that network stability is critical for seamless music playback.