Close
0%
0%

Upright Laser Harp

New spin on the laser blocking musical instrument

Similar projects worth following
Laser harps are musical devices with laser beam "strings." When the beam is blocked, a note is played by the instrument. Usually laser harps have the beams travel vertically in the shape of a fan or vertical lines.

In this project, I built a laser harp with stacked laser beams that propagate horizontally. The beams reflect off mirrors to form square shaped beam paths. Instead of a MIDI output like my previous laser harp, this device has built-in MIDI player so the output is an audio signal. This means the device does not have to be connected to a computer or MIDI player (e.g. keyboard) to play sound. Both built-in speakers and audio output jack are available for playing music.

MOTIVATION

I was motivated to create a laser harp that was easier to play. With this design, the lasers land on "frets," which makes it much simpler to block notes with a single finger. Usually laser harps are played by blocking the beam with your entire hand, while this device plays more like a conventional stringed instrument. It is also a major challenge to align lasers with photodetectors, so my goal was to develop a mechanism that enabled fine-tuning of the laser beam direction without having to go through painful alignment. 

There is so much to learn from building and programming the device, from laser beam alignment to controlling motors, Hall Effect sensors, and rotary encoders. That’s why I’m really excited to make it into a kit. The device is unique because it sits at the intersection of art and engineering, two disciplines that are often treated separately, and teaches how both approaches to thinking are important for design.

I hope the kit promotes interdiscliplinary learning and motivates musicians and engineers to learn coding, electronics, and how to play music. After completing the kit, the upright laser harp has lasting interactive potential. 

SYSTEM OVERVIEW

The upright laser harp consists of 12 lasers and photoresistors arranged in six layers. Two mirrors per layer reflect the laser beams to the photoresistors. In the figure, the red arrow indicates how the laser is reflected to the photoresistor and the corresponding pins the laser and photoresistor is connected to. The pins are scrambled up due to the way the wiring feeds down the tower to the Arduino Mega. The lasers can be triggered on and off using digital pins, and the voltage drop across the photoresistors is measured using analog input pins. When the laser is blocked, the resistance of the photoresistor increases and the voltage output drops.

The instrument produces audio output using the incredible Adafruit Music Maker shield. I was so happy to discover this shield, because I can now easily produce audio signals from the device without connecting a MIDI player. Check the link for all the info on how to set up this shield. The shield is run in MIDI mode with the audio output being run to audio jack and speakers. A latched pushbutton turns the speakers on and off. Here is a link to the chip (VS1053b) at the heart of the music maker shield. Page 33 has all the instruments.

The volume of the device is controlled using a potentiometer connected to the Arduino Mega. The output is read and software updates the volume of the MIDI signal. Finally, the device can also switch between different MIDI instruments. A rotary switch is read and the output is used to update the instrument. I chose to have 16 preloaded instrument selections on the device. The number of instruments is not limited by the Arduino and music shield. There are over 100 options for instruments on the VS1053 chip. I think there is probably enough memory on the mega to store all those instrument codes if you wanted. The selected instrument is displayed on a wheel with 16 spokes. The wheel is turned using a stepper motor, which is controlled with 4 digital pins.

ULHspecs.pdf

Technical specifications for the upright laser harp version 1.

Adobe Portable Document Format - 548.44 kB - 09/27/2019 at 03:14

Preview
Download

ULH photos.zip

High quality photos of the first upright laser harp

Zip Archive - 18.45 MB - 10/01/2019 at 05:13

Download

Upright Laser Harp Bill of Materials.pdf

Bill of Materials for Upright Laser Harp All parts and cost for one unit of the first prototype.

Adobe Portable Document Format - 87.12 kB - 09/27/2019 at 03:16

Preview
Download

ULH CAD FULL.zip

CAD files for full assembly of upright laser harp V1

Zip Archive - 33.64 MB - 10/01/2019 at 07:16

Download

UprightLaserHarp_LaserCutFiles.zip

All the files for laser cutting the upright laser harp version 1

Zip Archive - 720.67 kB - 08/22/2019 at 05:20

Download

View all 35 files

View all 22 components

  • Someone built another upright laser harp

    Jonathan Bumstead10/31/2019 at 03:30 0 comments

    Vasospaz has been working hard on building an upright laser harp with the design files I shared on Hackaday and Instructables. I am so excited that he is getting close to completing the build and that there is another upright laser harp out there. In our messages, Vasospaz brings up some important points for building the system and some helpful tips. 

    Here are photos of the system he built:

  • Mechanical layout for ULH shield

    Jonathan Bumstead10/01/2019 at 07:02 0 comments

    I completed the design and layout for the upright laser harp shield, and now I am working on the shield's CAD model. Here you can see how the ULH shield will stack on top of the Arduino Mega and Music Maker shield.

    The following connectors are on the shield:

    1. Laser and photoresistor signals for corner one (7-pin JST)
    2. Laser and photoresistor signals for corner two (7-pin JST)
    3. Laser and photoresistor signals for corner three (7-pin JST)
    4. Laser and photoresistor signals for corner four (7-pin JST)
    5. Potentiometer (3-pin JST)
    6. Rotary encoder (5-pin JST)
    7. Photointerrupter (4-pin JST)
    8. Motor driver board (5-pin header)

    Instead of the hundreds of cable connections required for prototype one, the second version will only have a few cables running through the box, making the electronics much cleaner and easier to assemble. The white boxes in the diagram below are JST connectors.

    The first version (pictured below) is a lot of wire management! This challenge will go away in version 2.

  • Home detection for instrument wheel

    Jonathan Bumstead09/30/2019 at 00:18 0 comments

    The instrument wheel turns using a stepper motor and displays the current instrument sound of the laser harp. When stepper motors are used for many projects, you need to know the position of the motor. For example, stepper motors with lead screws in 3D printers need to be calibrated so that the extruder doesn't run into the end of the rails. Some motors have outputs to signal their relative positions, but most motors just keep stepping. 

    In the first version of the laser harp, I used a Hall Effect sensor to "home" the instrument wheel. The motor would turn one step and the Arduino would read the output of the Hall Effect sensor. When the sensor was over the magnet, the signal would change. With this procedure, one knows the position of the instrument wheel and can sync the MIDI instrument being played with the panel displaying the instrument.

    The Hall Sensor worked fine for one system, but it isn't the best setup for building more laser harps and making kits. I am worried about dealing with small magnets and glueing them onto the wheel in the correct position. The challenge is even greater for bipolar Hall Sensors because the build requires getting the magnet orientation correct. Error in the positioning of the magnet could be offset in the code, but I want better repeatability in the hardware.

    Therefore, I switched to a photointerrupter for the instrument wheel home sensor. A photointerrupter has an IR emitter and phototransistor oriented towards each other. When something gets in the way of them, the phototransistor signal changes. The object getting in the way is called a flag and is positioned at a location for homing the motor. 

    I redesigned the instrument wheel for this new type of home sensor. One of the panels on the wheel is extended. As the motor rotates, the photointerrupt is read by the Arduino. The path between the IR emitter and phototransistor is blocked only when the one spoke passes through. 

  • CAD for V2 top layers

    Jonathan Bumstead09/29/2019 at 06:09 0 comments

    I finalized the design for the kinematic laser mounts, and now I am designing the top layers of version 2. Aside from these mounts, there were a few things I wanted to improve: 

    1. Hide the wires down the side of the device
    2. Hide the bolts for adjusting the kinematic mount
    3. Decrease the curvature of the plastic diffuser for the photoresistors because it is difficult to fit them into the current mount

    Here is how these components look in the first version:

    The following screenshots show how version 2 overcomes these shortcomings. 

    With the cover on:

    And with the cover off. You can see the wires running down through the hole. 

    Version 2 CAD design for the top of the system:

  • Specs and BOM for ULH

    Jonathan Bumstead09/27/2019 at 03:13 0 comments

    I have been taking a short break from upright laser harp V2 to summarize the performance and cost of the first prototype. I made a shorter video about the device, motivation, and future plans. In the video, I describe my goals for the project, specifically making it into a unique kit at the intersection of art and engineering. I want the kit to promote interdiscliplinary learning and motivate musicians and engineers to learn coding, electronics, and how to play music.

    I also made a spec sheet and bill of materials for the first prototype. These two documents give all the essential information for the device and are uploaded on Hackaday. The current cost of goods for one unit is around $180, which doesn't include energy costs for running the laser cutter and labor for assembly. I think the price would go down if components were ordered in larger numbers. Additionally, if the device was made into a kit, then the labor would only go into putting all the parts together in a box. 

    Here is a look at the Technical specifications:

  • Upright Laser Harp Shield

    Jonathan Bumstead09/21/2019 at 06:22 0 comments

    The design for the Upright Laser Harp shield is completed! This shield will be placed on top of the Music Maker Shield and Arduino Mega. The following components will be connected directly to the shield:

    1. Laser control signals
    2. Photoresistor analog output
    3. Volume potentiometer
    4. Instrument wheel rotary encoder
    5. Hall effect sensor
    6. Buck converter (12V input to 5V output)

    The most difficult part in the upright laser harp build is all the wire wrapping and building up the prototype board. Now all the these components will just connect via JST into the board. With this design improvement, there will be no tracking wires to the right Arduino pins required and no wire wrapping.

    The entire electrical setup with be compact and fit within the footprint of the Arduino Mega, which is much smaller than the current setup up with prototype board. In the first prototype, all the signals from the lasers and photoresistors connected to the prototype board and then had to all be wired again to the Arduino. Now there will only be one connector to the Upright Laser Harp shield. Here are some screenshots of the PCB design in Autodesk Fusion. 

    I know there is a lot going on in these schematics, so I made a high-level overview of how everything connects to the shield. The white rectangles are JST connectors. In the screenshots above, the laser and photoresistor signals from the four corners of the device are labelled as LAPH0, LAPH1, LAPH2, and LAPH3 (LAPH is a abbreviation for LAser and PHotoresistor signals). 

    After a lot of brainstorming and designing, I finally arrived at the second iteration of the electronics for the upright laser harp. I ordered some boards for building up version 2.  

  • Rethinking V2 electronics

    Jonathan Bumstead09/19/2019 at 05:30 0 comments

    I completely changed my mind for the electronics layout for V2 of the upright laser harp. Initially, I was a little disappointed, because I put a lot of time into brainstorming and designing PCBs for each layer of the laser harp. It was only when I reached the end that I realized something was fundamentally wrong with the design. 

    I started counting up all the connectors and PCBs and realized that my new "improvement" for version 2 was actually inefficient! I would need a PCB for each laser and photodetector, totally 12 PCBs. I would also need a connector cable between each PCB. In the electronics box, I would still have to connect the front panel components to the Arduino. It turns out that my first laser harp prototype was not so bad: one prototype board connecting all the photoresistor outputs, laser control signals, and front panel components. So the initial plan for V2 electronics is officially axed. 

    The new plan is to optimize the original format with a single PCB in the form of an Arduino mega shield. The upright laser harp shield will connect directly to an Arduino Mega and on top of this shield will be the Music Maker Shield. 

    Although this change back to the original electronics design scheme feels like a setback, I know it is a better plan that will make the second version easier to build. This is the goal anyway! There is always something to gain from being open to starting over or reverting back to an original idea. You just never know at what stage of a design (or in this case redesign) you will realize that you are going down the wrong direction! 

    Here is the current state of the new schematic: the Upright Laser Harp Arduino Shield:

    An explanation and full schematic will be coming soon!

  • Laser module and photodetector PCB

    Jonathan Bumstead09/18/2019 at 04:45 0 comments

    Each corner of the laser harp has three pairs of photoresistors and lasers. Therefore I need to run down the following signals to the electronics box:

    1. Laser module control signal 1 (LO1)
    2. Laser module control signal 2 (LO2)
    3. Laser module control signal 3 (LO3)
    4. Photoresistor output 1 (PO1)
    5. Photoresistor output 2 (PO2)
    6. Photoresistor output 3 (PO3)
    7. Ground
    8. 5V

    In the first prototype, the leads for the photoresistors and lasers were pulled down through each layer and connected to the control circuit in the electronics box. So the laser and photoresistors at the top required longer cables. This design makes it difficult to differentiate the control/output signals and manage the cables. 

    Instead of this strategy, I want to have a small PCB on each row for version 2. The PCB will include the electronics for generating the control signal and analog output that can connect directly into the Arduino. The output of each PCB would connect to the input of the next PCB on the way down to the electronics box.

    I wanted to use the same PCB for each layer, so I needed a way to connect the control/output signals for each laser and photoresistor to the right pin. The solution was to add solder pads at the output of the laser/photoresistor and then three separate solder pads connected to the appropriate control pins. On each board, the laser output solder pad would then get shorted to the appropriate control signal pin. So for layer 1, the LMS node (control signal for the laser module) would get connected to LO1 (the first laser control signal). I designed the board in Autodesk Eagle with the help of my favorite tutorial by randofo on Instructables

    I'm happy with this board for the upright laser harp V2. Now I am onto importing the PCB into Fusion and integrating it with my new kinematic mount (which also needs a bit more work). 

    In the mechanical model, you can see the two 8-pin JST mounts for the input and output of the PCB (refer to the top of the log for the pin description). The board also has a 2-pin JST jack for the laser module. The only downside to this design is that I now need to accommodate larger 8-pin jacks running through each layer of the laser harp. 

  • New kinematic mounts (KMV2)

    Jonathan Bumstead09/16/2019 at 00:29 0 comments

    I designed and began testing the next version of the kinematic laser mounts. I took a few components from the previous design and started brainstorming modifications. I decided to attach the flexible mount to the rear component holding the screws instead of requiring a front component. This greatly reduces the size of the module.

    Initially I designed the flexible part that could be 3d printing, which I think would be easier to get working. I completed the part and soon after getting the 3d printer ready, I started to reconsider. The whole goal was to make the second prototype easier to manufacture and 3D printing 12 flexible parts for each harp was going to take a lot more time than the first prototype. I went back to the drawing board and came up with a design to test. 

    3D printed design idea

    Lasercutting design idea:

    After finalizing the design, I laser cut the parts and put together a small test assembly. I then tested the alignment range (i.e. the angle the laser can be steered out of the mount) by placing graph paper 15cm from the laser mount. 

    By calculating the displacement of the beam on the graph paper, I can calculate the steer angle. The steer angle helps me to figure out if the mount is working well enough because I know roughly what is required for the laser harp. Here is a diagram showing the calculation.

    I am able to adjust the beam around +/-4degrees in one direction and +/-1.5degrees in the other direction. I am getting close with this mount, but I need to make a few more tweaks before making a bigger test. Once I am happy with the mount, I will build up a layer and test it. 

  • Improvements for version 2

    Jonathan Bumstead09/15/2019 at 03:15 0 comments

    The upright laser harp has been a successful first prototype, but there are a few parts of the design that make it difficult and time consuming to construct. My ultimate goal is to make the upright laser harp into a robust kit. I have the design plans for the first version freely available, but the current build is challenging with some tedious construction stages. Here I will outline my plans for version 2 of the upright laser harp that will make the whole thing easier to construct so it can reach a larger audience. I am also considering selling assembled versions of the upright laser harp.

    1. Improved kinematic mounts

    I spent the most time developing the kinematic mounts for laser beam alignment, but I am still not 100% satisfied with the results. In my first prototype, the lasers are glued into place and there is a "course" adjustment required. In other words, there is variation in how the lasers are positioned in the mount and if the laser is not put in the mount correctly, the fine tuning with the kinematic mount isn't enough to align the beams.

    For the next iteration in the laser mount design, I want the lasers to fit firmly in place and make the kinematic mounts flexible enough that they can be used for the full alignment procedure. I also want the kinematic mounts to be more compact.

    2. PCB for the photoresistors and laser diodes

    In first prototype (V1), the wires from the photoresistors and lasers are fed down through the laser harp. This makes cable management messy and frustrating. My goal for V2 of the upright laser harp is to design PCBs to be positioned at each layer with cable outputs:

    1. Photodiode output
    2. Laser output
    3. 5V
    4. Gnd

    These outputs can be directly connected to the Arduino Mega without the need for a prototype board. With these PCBs, the cables can easily be connected between layers of the laser harp. I also want to use photodiodes instead of photoresistors because of faster response and power consumption. 

    3. PCB for combining Arduino and Music Maker Shield

    The Arduino Mega and Music Maker Shield are expensive and I don't need all the pins. In the next stage of prototyping, I want to design a single PCB that combines the ATmega2560 and VS1053 ICs. This custom PCB will be specifically designed for the connectors from the photodiode/laser module PCBs and will cost less than buying the two boards separately.

    4. Optimize mechanical design

    Finally, I want to improve the overall mechanical design be reducing the requirements for glue, hiding the cabling down through the device, and optimizing the tolerancing. One major issue with the current design is the time required for jamming parts together and glueing because of tight or loose fitting components. 

View all 17 project logs

  • 1
    Prototype 1 disclaimer

    These are instructions for assembling the first version of the device. This build is challenging for several reasons that I am addressing in the second version (see project logs). My goal is to provide a full kit that is easier to build. I still think this first version is possible for others to build, and that is why I want to share the instructions! With that disclaimer aside, let's get started!

  • 2
    System Overview

    The upright laser harp consists of 12 lasers and photoresistors arranged in six layers. Two mirrors per layer reflect the laser beams to the photoresistors. In the figure, the red arrow indicates how the laser is reflected to the photoresistor and the corresponding pins the laser and photoresistor is connected to. The pins are scrambled up due to the way the wiring feeds down the tower to the Arduino Mega. The lasers can be triggered on and off using digital pins, and the voltage drop across the photoresistors is measured using analog input pins. When the laser is blocked, the resistance of the photoresistor increases and the voltage output drops.

    The instrument produces audio output using the incredible Adafruit Music Maker shield. I was so happy to discover this shield, because I can now easily produce audio signals from the device without connecting a MIDI player. Check the link for all the info on how to set up this shield. The shield is run in MIDI mode with the audio output being run to audio jack and speakers. A latched pushbutton turns the speakers on and off. Here is a link to the chip (VS1053b) at the heart of the music maker shield. Page 33 has all the instruments.

    The volume of the device is controlled using a potentiometer connected to the Arduino Mega. The output is read and software updates the volume of the MIDI signal. Finally, the device can also switch between different MIDI instruments. A rotary switch is read and the output is used to update the instrument. I chose to have 16 preloaded instrument selections on the device. The number of instruments is not limited by the Arduino and music shield. There are over 100 options for instruments on the VS1053 chip. I think there is probably enough memory on the mega to store all those instrument codes if you wanted. The selected instrument is displayed on a wheel with 16 spokes. The wheel is turned using a stepper motor, which is controlled with 4 digital pins.

  • 3
    Chassis Design and Cutting

    The system was designed in Fusion 360 and is constructed out of plywood and plexiglass. The methodology for designing and building the device was different from my previous projects. I focused on building subassemblies that functioned in isolation and then were added to the overall assembly. For example, the instrument wheel and kinematic laser mount took a lot of time to design and troubleshoot in isolation before adding to the completed assembly.

    The parts were lasercut and assembled using alignment tabs, bolts, and super glue.

    The files for laser cutting can be downloaded in the file section.

    Note: The tolerances on the parts are not perfect, so you may have to trouble shoot or shave down parts so they fit.

View all 13 instructions

Enjoy this project?

Share

Discussions

peels wrote 10/25/2019 at 23:11 point

built in diffuser?

  Are you sure? yes | no

Øystein wrote 08/21/2019 at 08:25 point

What a wonderful instrument you have created! You should make a doctors bag case sou you could transport it easily :)

  Are you sure? yes | no

Jan wrote 08/23/2019 at 06:56 point

+1

  Are you sure? yes | no

Jonathan Bumstead wrote 09/18/2019 at 06:08 point

Thank you! Yes, I do need a case!

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates