-
Slide or No Slide; THAT is the question
11/18/2019 at 17:31 • 0 commentsAs I look for alternatives in the speaker department I've toyed with the idea of mounting an old bluetooth speaker (with Aux in) to the end of the instrument, just so I can get building and playing. The battery would need replacing, but given it's powered from a 3.7v old Nokia-style battery it may well be powerable via a Pi USB port.
Using this style of speaker would greatly reduce the need for a wide, boxy frame on my shoulder and would allow me to really condense the design.
While thinking about making the back section as compact as possible it got me thinking about the slide.
The plan was originally to build a frame roughly to the size of a normal trombone, and the player would place his hand within the slide frame to manipulate the pitch of the instrument via the ultrasonic sensor in there. Now I'm thinking... Why build the frame?
The frame would have no practical impact on the instrument, and would make the thing 2-3 times longer than it needs to be. In fact removing the frame would give the player more rooms for gesturing. I could add another ping sensor to pick up the hand moving into and out of the line of sight of the main ping sensor. This could be interpreted as either a slide up to the note or away from the note, or could be used to change ranges.
This has potential.
-
Heavy-Assed Speaker
10/29/2019 at 17:36 • 0 commentsSo, I assembled a little frame to start mounting components to using the Totem Maker parts I have.
Unfortunately the car speaker I have is really weighty and is just too heavy to by hanging in front of a player's shoulder.
A trombone's weight is pretty evenly balanced either side of the shoulder, with weights available to help counterbalance the instrument if needed. I thought about using the mounting of the electronics and batteries to counter balance the speaker but it still wouldn't match the weight of it.
I'm now on the look out for a smaller speaker.
-
Frame Update | Totem!
09/26/2019 at 15:28 • 1 commentAfter re-purposing some of the extrusion I ordered for this project to build a frame for my son's room I was back to the drawing board on this one.
I was planning on ordering some more, but then stumbled on a company called Totem, who specialise in mechanical and electrical prototyping kits.
After speaking to the guys there about the prospect of using their maker kits to construct a frame for this project, they have kindly agreed to send me a kit to use on this project in exchange for me documenting my use with it.
This is awesome!
This is a link to the kit I will be using:
https://totemmaker.net/product/totem-maker-kit/
The kit looks great; the lengths and panels can be cut to custom sizes and shapes, and has plenty of fixings to create all kinds of shapes and mountings.
The plan will be to create a rectangle for the slide frame (which will hold the ping sensor at the top), then a rectangle back section with mounting spots for the arduino, Pi and batteries, and a square section on the end of it to hold the car speaker.
I really can't wait to get the kit and see what I can come up with!
-
Construction | Slide parts ordered
04/04/2019 at 13:47 • 0 commentsI've just put an order in for the following lengths of 20x20 aluminium extrusion:
500mm x 2
100mm x 4
This will give me the parts I need to:
- Build my slide
- Mount my Arduino Pro Micro
- Mount my Air Pressure Sensor
- Mount my encoder for pitch changes
Once the slide is built I should have a fully working slide-based MIDI controller :-)
Following that it will be the construction of the back frame.
I am contemplating changing the frame from a simple 2D section to a 3D box section, allowing me to mount a forward facing speaker for a more trombone-like output.
I could always add a secondary speaker at the back of the frame behind the main speaker for some interesting chorus-like effects or stereo output (playing harmonies, stereo delay etc).
-
Dimensions
04/01/2019 at 16:33 • 1 commentI've put a bit of thought into the pieces I'll need to build a suitable frame out of aluminium extrusion.
It'll look cool, plus give me a nice, easy to assemble/adjust frame. It'll be nice to use the channels to run cables too. I've decided to target 15mm x 15mm extrusion as it's small enough to hold comfortably without being too flimsy.
Dimensions based on 15mm material
Slide Section calculations
400mm - slide space (360mm travel [60mm between positions], +40mm for tolerance? Can be adjusted with another inserted piece?
+15mm - for the 'water key' brace
+15mm - for handle
+50mm - for mouthpiece areaTop Section calculations
200mm - to form the shoulder mount.
+15mm - for top bar
+15mm - for brace barParts to order
480mm bar x 2
230mm bar x 2
100mm bar x 4All in all it'll give me an instrument length of ~ 74cm once the two half pieces are joined together - nice and small, but enough space to mount everything and get a decent slide area.
Now i just need to find a cheap supplier of 15x15 extrusion :)
-
Ultrasonic Slide | Test setup
03/31/2019 at 00:10 • 0 commentsTonight I've put together a little test setup on a breadboard, consisting of an Arduino Pro Micro, an ultrasonic sensor, and a button ( to act as the air pressure sensor).
First step was to get it spitting out data to the serial window; using the NewPing library I was able to get it firing out the distance measured in cm in no time.
Next step was to incorporate the MIDI code, and sure enough it started to fire MIDI data out.
Next i need to tidy up the code (using an if statement for checking the button/air pressure sensor in the future, cleaning up midi sending to only send one value and to silence the previous one).
Finally I need to write some mapping to take the slide measurements and determine what should be played.
The note that should be played on the very centre of the slide length (4th position at the 15cm mark) will be the note, bang on in the centre. Either side of that note the slide postion will determine what level of pitchbend should be applied to achieve the note for that position.
-
Slide Mechanism Decisions
03/26/2019 at 13:48 • 1 commentJust a quick think-out-loud about how to read the slide positions for my pitch bending shenanigans.
I'm pretty much set on a slide frame with a freely moving handle inside. 30cm of travel would be great, as it would give me the following positions:
1st position - 0cm
2nd - 5cm
3rd - 10cm
4th - 15cm
5th - 20cm
6th - 25cm
7th - 30cm
It's just under half the size or a normal tenor trombone length, but it will be perfect for the compact build I am after :)
So far, I have two options for tracking positions on the slide:
1) encoder, belt & pulley
I like this idea; encoder at one end, handle connected to the belt to rotate the encoder. Would be easily enclosed, plus end switches at position 1 & 7 would help calibrate it.
2) Ultrasonic sensor
Fixed at the top, offset from the handle. The handle would have a small 'paddle' opposite the sensor.
Care would need to be taken to not have the hand on the handle affecting readings. This would make it like a shoulder mounted Theremin. I like theremins, ha ha ha.
I'm open to more suggestions :-)
-
Pitchbending Madness
03/24/2019 at 01:37 • 0 commentsJust a quick note-to-self to check out this discussion regarding pitchbending:
https://forum.arduino.cc/index.php?topic=457971.0
On my slide I am aiming to have 7 positions, giving me 7 definitive semitones in each range. Ideally I'd need to implement pitch bending between those semitones to give that trombone feel.
I thought pitchbending would be limited to a semitone either side, but apparently may be possible to bend much further.
If this is true, and it's possible to perhaps reach three semitones either side of a note, I could use one semitone per range (the one on the 4th position middle of the slide) and then use the slide to determine the amount of bend on the note.
Yaaay
-
Fresh Ideas for 2019
03/21/2019 at 01:01 • 0 commentsI've been working on a few other Arduino/Pi/MIDI projects recently, such as my Guitar effects Pedal and a Drum Module, and it's given me a real spark to get all my music based projects finished.
This one was really taking shape for the 2018 contest until changing jobs threw me off track a bit. I've now started to rethink this one and definitely reckon I can complete it after my other two projects are wrapped up.
The Slide mechanism was always something I never figured out fully, but I think I have a plan for it. I want to build the frame out of aluminium extrusion (20x20 perhaps). Rather than having an extending slide I'll just have a handle on runners inside the frame, and use am encoder to track position. I'll have an endswitch at the fully open (7th position) and fully closed (1st position) for calibration, and on powering on require the user to return the slide to the home position.
I've done a fair bit of work using python on a Pi to simulate a midi device, so ideally I'd like to follow that pattern and connect all switches direct to the gpio of the Pi. For the analog stuff I have an analog Pi HAT which i could use to read the air pressure sensor and any pots that end up being used.
-
Project Future
10/24/2018 at 20:23 • 0 commentsThe last few weeks have been a read whirlwind at work, starting a new role as a systems developer, undertaking a lot of training to support my new job plus working a silly amount of hours of overtime in order to support my old team following my move.
This is all great news, however it culminated in me not getting this project up to standard for the Hackaday Prize round for musical instruments. I am absolutely gutted to have not been able to put something up to meet the criteria, as it's not too far away at all.
Rather than give up on this project I'm going to keep plugging away at it, and instead of creating something to compare with a trombone I'm going to make it a more erganomc shape if that's the way the project takes me.
Hopefully in a few weeks I'll have some time to put it all together.
Cheers!