MIDI Pal/MIDI Bud re-imagination using Tilda Mke

So I found this pretty cool device from Mutable Instruments, but only comes
prebuilt for £150.

http://mutable-instruments.net/midipal

It’s got arp, step seq, scale processor, chord memory and a bunch of other
stuff etc

I’ve seen some through hole versions like:

Was thinking it would be a bit of a ball ache to make one from scratch when
I have a perfectly good EMF badge here now.

The Midi Pal uses an 8bit atmega 328p but code has nothing to do with the
Arduino.

I would like to create something inspired by the MIDI Pal using the EMF
badge, whacking a midi in/out, and transforming incoming notes into
chords/arps going out.

Does this seem like a feasible project to accomplish with the badge?

I would say so!

But I wouldn’t know anything about programming it with FreeRTOS. They say
you can use standard arduino, which I would be able to help with. Also, USB
midi may be tricky but possible, 5pin DIN midi in/out should be no problem.On Wednesday, September 3, 2014 10:11:02 PM UTC+1, rich op wrote:

So I found this pretty cool device from Mutable Instruments, but only
comes prebuilt for £150.

http://mutable-instruments.net/midipal

It’s got arp, step seq, scale processor, chord memory and a bunch of other
stuff etc

I’ve seen some through hole versions like:

http://mutable-instruments.net/forum/discussion/909/through-hole-midipal/p1

Was thinking it would be a bit of a ball ache to make one from scratch
when I have a perfectly good EMF badge here now.

The Midi Pal uses an 8bit atmega 328p but code has nothing to do with the
Arduino.

I would like to create something inspired by the MIDI Pal using the EMF
badge, whacking a midi in/out, and transforming incoming notes into
chords/arps going out.

Does this seem like a feasible project to accomplish with the badge?

Given I was on the core badge team, as was Bob, I think we can help
you out either way, RTOS or base arduino. Maybe we should have a hack
day once we have recovered a bit more…

KimballOn 17 September 2014 21:34, Chris Ball chrisballprojects@gmail.com wrote:

I would say so!

But I wouldn’t know anything about programming it with FreeRTOS. They say
you can use standard arduino, which I would be able to help with. Also, USB
midi may be tricky but possible, 5pin DIN midi in/out should be no problem.

On Wednesday, September 3, 2014 10:11:02 PM UTC+1, rich op wrote:

So I found this pretty cool device from Mutable Instruments, but only
comes prebuilt for £150.

http://mutable-instruments.net/midipal

It’s got arp, step seq, scale processor, chord memory and a bunch of other
stuff etc

I’ve seen some through hole versions like:

http://mutable-instruments.net/forum/discussion/909/through-hole-midipal/p1

Was thinking it would be a bit of a ball ache to make one from scratch
when I have a perfectly good EMF badge here now.

The Midi Pal uses an 8bit atmega 328p but code has nothing to do with the
Arduino.

I would like to create something inspired by the MIDI Pal using the EMF
badge, whacking a midi in/out, and transforming incoming notes into
chords/arps going out.

Does this seem like a feasible project to accomplish with the badge?


You received this message because you are subscribed to the Google Groups
"Hackspace Manchester" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to hacman+unsubscribe@googlegroups.com.
To post to this group, send email to hacman@googlegroups.com.
Visit this group at http://groups.google.com/group/hacman.
For more options, visit https://groups.google.com/d/optout.

But I wouldn’t know anything about programming it with FreeRTOS. They say
you can use standard arduino, which I would be able to help with. Also, USB
midi may be tricky but possible, 5pin DIN midi in/out should be no problem.

USB MIDI is fairly easy using something like a Minimus - I’ve built a
USB MIDI to LED thingamajig using one, which maps MIDI notes onto a LED
strip using different brightnesses and colours. That’s just a MIDI OUT
device but it should be possible to do both IN and OUT to transform the
MIDI stream. But then again, if you are going to do that, there’s no
need for any hardware at all, you can just do the whole thing in
software on a PC using RTMidi: http://www.music.mcgill.ca/~gary/rtmidi/

Alan Burlison

Sick thanks everyone!

"I would say so!

But I wouldn’t know anything about programming it with FreeRTOS. They say
you can use standard arduino, which I would be able to help with. Also, USB
midi may be tricky but possible, 5pin DIN midi in/out should be no problem."

Excellent news and thanks for breathing some life into this thread!! I’m
starting to think maybe the Arduino mega could be a better option for
prototyping with Midi as it doesn’t require a logic level shift from the
pins MIDI wants 5V, and the mega still has four UARTS as I would love to
receive/send information from a few different inputs going to few different
outputs, i.e. MIDI keyboard/Drum pad routing to external synths.

"Given I was on the core badge team, as was Bob, I think we can help

you out either way, RTOS or base arduino. Maybe we should have a hack

day once we have recovered a bit more…

Kimball"

Sick :slight_smile: I would love a hack day! I think the mega’s the way because of the
badge’s 3v thing, but the screen is the coolest part on the badge, I
totally wanna take that off and have a simple menu, graphic interface to
whats going on. Also once the screens off it encourage me to find the other
2/3 and get a free ticket to the next EMF!

"USB MIDI is fairly easy using something like a Minimus - I’ve built a USB
MIDI to LED thingamajig using one, which maps MIDI notes onto a LED strip
using different brightnesses and colours. That’s just a MIDI OUT device but
it should be possible to do both IN and OUT to transform the MIDI stream.
But then again, if you are going to do that, there’s no need for any
hardware at all, you can just do the whole thing in software on a PC using
RTMidi: http://www.music.mcgill.ca/~gary/rtmidi/

Alan Burlison"

I don’t think it needs to be USB over midi, I would like to control a few
different external modules/synths that all take just MIDI, like the Korg
Volca stuff, it’s so awesome and built for hacking and quite cheap for the
awesomeness it provides! Ideally all I wanna do is make a brain like device
for midi that augments the ability to perform without routing through a
computer, Atmel doesn’t count!

I have stupidly written some algorithms for jazz in Max/Msp:
https://www.youtube.com/watch?v=NdNX5Qz4g5I My dream is to be able to put
that into tiny little device if possible!On 17 September 2014 22:34, Alan Burlison alan.burlison@gmail.com wrote:

On 17/09/2014 21:34, Chris Ball wrote:

But I wouldn’t know anything about programming it with FreeRTOS. They say

you can use standard arduino, which I would be able to help with. Also,
USB
midi may be tricky but possible, 5pin DIN midi in/out should be no
problem.

USB MIDI is fairly easy using something like a Minimus - I’ve built a USB
MIDI to LED thingamajig using one, which maps MIDI notes onto a LED strip
using different brightnesses and colours. That’s just a MIDI OUT device but
it should be possible to do both IN and OUT to transform the MIDI stream.
But then again, if you are going to do that, there’s no need for any
hardware at all, you can just do the whole thing in software on a PC using
RTMidi: http://www.music.mcgill.ca/~gary/rtmidi/

https://www.youtube.com/watch?v=WpG31o1peAU


Alan Burlison


You received this message because you are subscribed to a topic in the
Google Groups “Hackspace Manchester” group.
To unsubscribe from this topic, visit https://groups.google.com/d/
topic/hacman/or6RwK1uJhk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
hacman+unsubscribe@googlegroups.com.
To post to this group, send an email to hacman@googlegroups.com.

Visit this group at http://groups.google.com/group/hacman.
For more options, visit https://groups.google.com/d/optout.