MIDIbox SEQ V3 Teaser IV

Here a quick demonstration of the Button/Duo-LED matrix extension:

->

it isn’t built into a case yet, therefore I had to push the buttons very carefully due to the loose caps.

The frontpanel will be ordered today (it’s sponsored from the donations! :slight_smile:

Best Regards, Thorsten.

All i can say is “…”

Meaning i am speechless.

cool! :smiley:

What they said.

somebody seriously needs to sponsor tk :wink:

Let’s ask monolake (Ableton Live) to support the MIDIbox community  :stuck_out_tongue:

:o :o

speechless!

I can’t see ableton sponsoring the competition, but that paypal button up there works! :wink:

hehehe me too!

The frontpanel will be ordered today (it’s sponsored from the donations! :slight_smile:

Ahhh… that’s really good to hear…

I think Schaeffer should sponsor TK - he’s generated a lot of business for them!

Hi

Im gonna get this thing… But first i have to finish the SID.

I just want to ask. what creates the sound? Is it the SID and FM or something third?

/carsten

PS: now we are at it. I dont really want to create a paypal account. are there any alternatives.

You obviously were too distracted by the video to read the webpage. It’s a FM and then a SID later on :slight_smile:

The paypal thing is one for another thread I think, but if you search I think you’ll find the question already answered.

UUUUHHHH.

TK?

Thats the Nuttiest thing I have ever seen!

I don’t even know what is going on in that video!  I just know I Really Really Really want one!

;D ;D ;D ;D

Wow.  Watching that clip again (and again) I’m really hooked on how the interface works.  Really smooth design!

in a few words… how is it connected?? is it a new additional interface or something to replace the existing one?

Just think about it: do you think that I would ever throw away my existing MIDIbox SEQ frontpanel?

Apparently, it’s an optional feature, and I for myself will built this into a seperate 19" rack case.

The sequencer works nice without the Button/Duo-LED matrix - it’s just one of many features :slight_smile:

The schematic is a mix of the button and historic single-colour LED matrix, I will publish it once I find the time to draw the connections.

Here some additional infos from the ChangeLog:

[tt]

  o overworked LED matrix, implemented button matrix

    There are several configurations possible, here the tested ones:

    a) historic 4x16 LED matrix which replaces the 1x16 GP LED row

        Required settings in main.asm (or alternatively setup_*.asm) - search for the values and change the numbers:

#define DEFAULT_SRM_ENABLED    1        ; enable the LED matrix

#define DEFAULT_SRM_DOUT_L1    3        ; DOUT register of the left side (8 LEDs)

#define DEFAULT_SRM_DOUT_R1    4        ; DOUT register of the right side (8 LEDs)

#define DEFAULT_SRM_DOUT_CATHODES1      5 ; DOUT register which controls the LED cathodes - 4 pins used

#define DEFAULT_SRM_DOUT_CATHODES1      6 ; can be optionally selected if LEDs with high power consumption are used

#define DEFAULT_SRM_DOUT_DUOCOLOUR      0 ; no DUO colour LEDs

#define DEFAULT_SRM_DOUT_L2    0        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_DOUT_R2    0        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_BUTTONS_ENABLED 0    ; no button matrix

#define DEFAULT_SRM_BUTTONS_NO_UI  0    ; only relevant for button matrix

#define DEFAULT_SRM_DIN_L      0        ; only relevant for button matrix

#define DEFAULT_SRM_DIN_R      0        ; only relevant for button matrix

        Note: compared to the old schematic, the cathodes are now mirrored!

              This means that you have to change the wiring on your existing hardware

              Upper Row:  DOUT pin D7

              second Row: DOUT pin D6

              third Row:  DOUT pin D5

              fourth Row: DOUT pin D4

    b) 16 “GP LEDs” + 4x16 seperate LED matrix

        recommented solution, since this allows the firmware to display menu parameters seperately below the LCDs

        Required settings in main.asm (or alternatively setup_*.asm) - search for the values and change the numbers:

#define DEFAULT_SRM_ENABLED    1        ; enable the LED matrix

#define DEFAULT_SRM_DOUT_L1    6        ; DOUT register of the left side (8 LEDs)

#define DEFAULT_SRM_DOUT_R1    9        ; DOUT register of the right side (8 LEDs)

#define DEFAULT_SRM_DOUT_CATHODES1      5 ; DOUT register which controls the LED cathodes - 4 pins used

#define DEFAULT_SRM_DOUT_CATHODES1      6 ; can be optionally selected if LEDs with high power consumption are used

#define DEFAULT_SRM_DOUT_DUOCOLOUR      0 ; no DUO colour LEDs

#define DEFAULT_SRM_DOUT_L2    0        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_DOUT_R2    0        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_BUTTONS_ENABLED 0    ; no button matrix

#define DEFAULT_SRM_BUTTONS_NO_UI  0    ; only relevant for button matrix

#define DEFAULT_SRM_DIN_L      0        ; only relevant for button matrix

#define DEFAULT_SRM_DIN_R      0        ; only relevant for button matrix

    c) 16 “GP LEDs” + 4x16 seperate DUO LED matrix

        recommented solution, since this allows the firmware to display menu parameters seperately below the LCDs

        Required settings in main.asm (or alternatively setup_*.asm) - search for the values and change the numbers:

#define DEFAULT_SRM_ENABLED    1        ; enable the LED matrix

#define DEFAULT_SRM_DOUT_L1    6        ; DOUT register of the left side (8 LEDs)

#define DEFAULT_SRM_DOUT_R1    9        ; DOUT register of the right side (8 LEDs)

#define DEFAULT_SRM_DOUT_CATHODES1      5 ; DOUT register which controls the LED cathodes - 4 pins used

#define DEFAULT_SRM_DOUT_CATHODES1      6 ; SHOULD be selected with DUO LEDs (high power consumption)

#define DEFAULT_SRM_DOUT_DUOCOLOUR      1 ; DUO colour LEDs

#define DEFAULT_SRM_DOUT_L2    7        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_DOUT_R2    10        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_BUTTONS_ENABLED 0    ; no button matrix

#define DEFAULT_SRM_BUTTONS_NO_UI  0    ; only relevant for button matrix

#define DEFAULT_SRM_DIN_L      0        ; only relevant for button matrix

#define DEFAULT_SRM_DIN_R      0        ; only relevant for button matrix

    d) 16 “GP LEDs” + 4x16 seperate DUO LED matrix + 4x16 seperate button matrix

        recommented solution, since this allows the firmware to display menu parameters seperately below the LCDs

        The 4x16 additional buttons should only control the step gates (and other assigned triggers)

        Required settings in main.asm (or alternatively setup_*.asm) - search for the values and change the numbers:

#define DEFAULT_SRM_ENABLED    1        ; enable the LED matrix

#define DEFAULT_SRM_DOUT_L1    6        ; DOUT register of the left side (8 LEDs)

#define DEFAULT_SRM_DOUT_R1    9        ; DOUT register of the right side (8 LEDs)

#define DEFAULT_SRM_DOUT_CATHODES1      5 ; DOUT register which controls the LED cathodes - 4 pins used

#define DEFAULT_SRM_DOUT_CATHODES1      6 ; SHOULD be selected with DUO LEDs (high power consumption)

#define DEFAULT_SRM_DOUT_DUOCOLOUR      1 ; DUO colour LEDs

#define DEFAULT_SRM_DOUT_L2    7        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_DOUT_R2    10        ; only relevant for DUO colour LEDs

#define DEFAULT_SRM_BUTTONS_ENABLED 1    ; using button matrix

#define DEFAULT_SRM_BUTTONS_NO_UI  1    ; only control gates (and other assigned triggers) with these buttons

#define DEFAULT_SRM_DIN_L      11        ; DIN register of the left side

#define DEFAULT_SRM_DIN_R      12        ; DIN register of the right side

  o there are now 4 additional buttons and LEDs for selecting the

    track group (G1=track 1-4, G2=track 5-8, G3=track 9-12, G4=track 13-16)

    The pin assignments are made in mios_tables.inc (or within the setup_*.asm file)

[/tt]

Best Regards, Thorsten.

P.S.: thanks for your nice feedback! :slight_smile:

Thorsten, its hard to find proper words for your work and dedication. You cannot suprise me with capabilities of any new MB project, but Im always amazed and thrilled with it. Ive got that session 4 video on my flash drive so I can take it with me where ever I go and play it to the friends. I played it so meny times hipnotised looking at those blinking lights.

That track is just great, definitly my style. ;D Different from what I`ve heard before and  much better. Sounds like Aphex Twin ambient works. Really nice. Congratulations.

Today I received 40x2 LCDs for MB SEQ I am going to built. :slight_smile: I wanted to make old stile SEQ but when I saw those 4 track of dual LED buttons I decided to wait till it comes to light because it is so amazing and looks more usefull and clear what and when is going on. I`ve never have chance to work with musical hardver so for me it wil be really great experience building and playing with this sequencer. Countless Thank You, and keep on making good music. :wink:

:o :o Now THAT (to me) would be a wonderful controller for a drum sequencer!!  :o :o :slight_smile:

I’m definately going to be keeping my eyes open for THAT as a kit, in the future!

Great work on that one TK! :slight_smile:

Take care,

Warmth and Peace,

Ryk

And it supports multiple outputs, so you could, just for example Ryk :wink: modify it to drive DOUTs for your analog drum gates when you select a certain output, without removing the normal midi capabilities :smiley: … But that’s a thought for another thread :slight_smile:

Man, all this gets me sooo excited about building an SEQ!! I can hardly wait! ;D TK, You are the man! :wink: Now if I can just focus on getting my SID box done…

-tel3

And it supports multiple outputs, so you could, just for example Ryk :wink: modify it to drive DOUTs for your analog drum gates when you select a certain output, without removing the normal midi capabilities :smiley: … But that’s a thought for another thread :slight_smile:

Which’er me hopes! :)  I’m going to stick to the ‘drum controller’ thoughts on my current collection of modules. My modular is ready. :)  I just got my Ken Stone Cynare Drum Simulator completed last weekend, and my modular is happily playing a Bass Drum / Snare Drum / Hihat groove, from my divide by 7 counter and 8 Gates out sequencer.  But I can’t WAIT until I can control the thing from my MIDIbox contraption. :wink:

Now - if I only had all of the parts that I needed NOW - I could complete it in a couple of days … alas. :wink:

Ryk

http://www.sdiy.org/damian - my modular synthesizer’s homepage