Main Content

The device that creates beautiful arpeggiated sequences according to the musical theory.

Introduction
Electronic music is my hobby and I have a lot of fun playing with my Korg Volca Keys. Some time ago I’ve met the web application called “Chord Progression Arpeggiator”, and I was impressed by the power and simplicity of the musical algorithms. Spend a couple of minutes on the app, and you would understand why I was so inspired by the idea of generating arpeggios on my Korg. The video “Korg Volca Keys beautiful arps! (and 128-note sequence)” shows manually entered arpeggio notes, but it is too complicated and inflexible to input all the notes by hands.

As I’m an software developer, I decided to create the Arduino-based device, that generates arpeggios in the form of MIDI messages and sends the messages throw DIN (MIDI) port. The arpeggiator can be used together with another hardware or software synthesizers of course, but I don’t have another one.

Basic music theory
(The text below is taken from reddit, many thanks to user kmmeerts)

So there’s a whole spectrum of noises. It turns out every one of those noises has a fundamental frequency, how fast the air wiggles. A lower frequency sounds, well, lower, and a higher frequency we discern as a higher tone. Two different instrument playing at the same might sound very different, but they will still appear to us as the same note. This difference is called timbre, and it’s how you can differentiate between flute and cellos playing the same note. This allows very different instruments to play harmoniously together.

At the highest level, this spectrum is divided into octaves. An octave is an interval between a note and another at double the frequency. This is the most basic subdivision in music. Notes that differ a number of octaves (i.e. where the frequencies are related to each other by a power of two) get the same name: a piano and a violin might both play a C, but one a lot lower than the other. Why do we do this? Well because they sound harmoniously together, as even the most tone-deaf person can hear.

The octave itself is subdivided in 12 notes, which we’ve named:

[A, A#, B, C, C#, D, D#, E, F, F#, G, G#]

These are the most basic notes in western music, and they correspond to the white and black keys on the piano. You can see that after every 12 keys, the pattern repeats. Why 12? It’s complicated and has a long history, but the gist is that it sounds the best. The most pleasing intervals are well represented by the 12 key system, in a way they wouldn’t with more or less keys (although people do try).

From these 12 notes scales are formed. A scale is a collection of notes that, well…, sound good together. My arpeggiator only has heptatonic diatonic scales, called modes. Heptatonic means each scale has 7 notes, and practically all western music is built on this. Diatonic is related to the order of the intervals between notes. For example, the C major scale is just the notes without sharp signs starting at C: [ C D E F G A B ]. Each scale is begat from a root note. There’s also a major scale rooted in D: [ D E F# G A B C# ]. The scales are defined by patterns of which notes to skip. The major scale is [ W W H W W W H ], where W means “take a note and skip one” and H means “take a note”. The other modes have other patterns of taking and skipping notes.

For each of those seven notes there’s a bunch of chords. The chords used here are simple: starting from a note, take three notes, each time skipping one in the scale we’re using. So in our simple C major scale (CDEFGAB), the V chord (V = five, so on the fifth note) would be G (skip A) B (loop around, skip C) D, so GBD. This pattern can be repeated, going up an octave (6 notes: GBDGBD). An arpeggio (Italian for ‘broken’) is simply playing those notes one for one, instead of all together.

What defines a song is mostly the chord progression. The composer picks a mode, picks a root note, and then chooses 8 (or more or less) chords from the key defined by that root note. There are some rules for what chords to pick of course, but it’s still an art. In a real song, on this chord the rest is built, there can be all kinds of deviations from this structure of course, all sorts of ornamentations, but often you’ll still be able to recognize the chords in that order.”

Link to article