Building the Hex Drum / Big Button trigger sequencer

Поделиться
HTML-код
  • Опубликовано: 29 авг 2024
  • Following up on my eurorack 909 drum kit, I've added a trigger sequencer to the mix! This is a custom build of the BIG BUTTON sequencer designed by Look Mum No Computer, running on arduino nano. I etched the enclosure using a custom faceplate panel design which is available on my patreon page:
    / extralife
    LMNC website with schematic and layout:
    www.lookmumnoc...
    Original BIG BUTTON sequencer video:
    • How To Make Your Own D...
    If you want to make your own, watch my instructional video on how to etch aluminum enclosures:
    • How to Etch Aluminum /...
  • ХоббиХобби

Комментарии • 40

  • @forrestbaer
    @forrestbaer 4 года назад +10

    Nice work! Good to see the "failures" as a part of the video.

    • @gorillaau
      @gorillaau 2 года назад

      Failures are just methods that didn't work!

  • @jakobholm1847
    @jakobholm1847 4 года назад +4

    This really was the natural progression. I thought you'd come up with your own design but Sam's Big Button is really cool too. "Don't be scared to try it!" 😄

    • @extralifedisco
      @extralifedisco  4 года назад +3

      Words to live by! Keep thinking of things to add, hope to make a follow-up video soon. Drums are such a different beast from CV sequencing, it's nice to change it up a bit.

  • @thecluff
    @thecluff 4 года назад +3

    diggin the extralife tracks!

  • @WillisZzz
    @WillisZzz 3 года назад +1

    Diggin the beats and the dedication to aesthetic 👌🏼

  • @jj74qformerlyjailbreak3
    @jj74qformerlyjailbreak3 Год назад

    I like you little setup, and the Big Button sure hits the G spots.

  • @chetreo
    @chetreo 4 года назад +2

    I love these videos!

  • @butsukete1806
    @butsukete1806 3 года назад +1

    Wow, using a router as milling machine. It came out so clean looking too.
    And here I was just trying to figure out how to use the VCV Rack version of this sequencer.

  • @Bruceanddenise
    @Bruceanddenise Год назад

    Awesome sauce!

  • @gmusic240
    @gmusic240 4 года назад

    Nice groove near the end!

  • @nefariouspreludev2.046
    @nefariouspreludev2.046 3 года назад

    You deserve more subs.

  • @guilldea
    @guilldea 4 года назад +5

    10:03 those drums + that acieed bassline... is this 1989? =)
    Beautiful work, as someone else said, its good to see the failures and how to solve them

  • @dan69p
    @dan69p 4 года назад

    Cool !!!! Glad I found your channel 🙂 👍

  • @toolzshed
    @toolzshed 4 года назад

    dude amazing build video!!!

  • @mastermelardoz
    @mastermelardoz 3 года назад

    This really cool I'm a college student and this opened my mind up to engineering!

  • @piotr803
    @piotr803 3 года назад

    Really enjoy your vids. You look a bit like Ean Golden's younger brother.

  • @mathewthomas3238
    @mathewthomas3238 4 года назад +3

    I'd love to see your code updates, I built one of these and use it a lot but the reset button...... Your drums are sounding great though. Where is your GitHub page?

    • @extralifedisco
      @extralifedisco  4 года назад +2

      Just posted the updated code here! github.com/matthewcieplak/hexdrum Still a lot to clean up and reformat, has been an interesting challenge to reverse engineer some of these features. Hoping to add some MIDI implementation to it as well!

    • @mathewthomas3238
      @mathewthomas3238 4 года назад

      @@extralifedisco Thanks I'll check it out. I added a trigger input to mine, really useful for plugging in a random gate or whatever to generate beats quick and dirty!

    • @themanefaces
      @themanefaces 4 года назад

      @@extralifedisco New subscriber here - love your videos. Wondered if you could tell what is different about your code compared to Sam's original? Thanks

    • @extralifedisco
      @extralifedisco  4 года назад

      @@themanefaces Thanks! My code is up on github, v1 just fixes a few compilation errors with arduino nano every. The hexdrum-midi fork is completely re-written. Sam's was kind of spaghetti, so the new one uses arrays and functions to simplify it and adds MIDI input and some extra features like roll, solo, mute, sequence clear, bank-all, and audition. github.com/matthewcieplak/hexdrum-midi

  • @axo5384
    @axo5384 8 месяцев назад

    Does big button need a 10k resistor also hooked to 5v or gnd?

  • @doomtomb6522
    @doomtomb6522 Год назад

    2 bad this isn't for sale😢

  • @maikmario71
    @maikmario71 3 года назад

    Hi there,
    great job, very pretty !!!
    I have a question and I really hope you would help me, I can't get the momentary switch connected properly, my switches have + and - as well as NC / NO / C how do I have to tie them properly? I connected my LED button like this: lead soldered to minus, plus and NO soldered together, which leads to the potentiometer! It lights up weakly and when I trigger the LED goes out every time, can you help me please ???

  • @injektilo001
    @injektilo001 2 года назад

    hello!!
    Could be that the diode in the midi IN schematic and layout is the other way around? if it is, does this matter?
    THanks!

  • @bloubear2557
    @bloubear2557 3 года назад

    Im not very proficient with arduino, did you include internal pull up resistors in your github code or are the 10k resistors still necessary?

    • @extralifedisco
      @extralifedisco  3 года назад

      I already had the external ones from using sam's code, but the switch is as easy as changing " pinMode(ButtonDelete, INPUT);
      " to " pinMode(ButtonDelete, INPUT_PULLUP);" for the buttons you want to use internal resistors. Also you'd need to wire the buttons to connect the input pin to GND rather than +5V (sam's schematic uses external pull-down resistors, the internal one are pull-up).

  • @toolzshed
    @toolzshed 4 года назад +1

    have you tried hooking up a Tsunami wav trigger board to this?

    • @extralifedisco
      @extralifedisco  4 года назад +1

      Would be a good combination! I actually just picked up a Squarp Rample which is a 4-channel sample player, hope to do a video on it soon but has been a great counterpart to the 909 drums so far. Always nice to have a blend of analog drums and samples in the mix.

  • @euglossine4ever
    @euglossine4ever 3 года назад

    🌿❤️🌿

  • @toolzshed
    @toolzshed 2 года назад

    Hi what does the shift potentiometer do?

    • @extralifedisco
      @extralifedisco  2 года назад

      In LMNC's original design, it offsets the start point of the sequence for that instrument by 1-8 steps. You can use it to create rhythmic variation, but I found it difficult to get back in sync or use effectively. In my updated version of the Big Button (with MIDI), you can press the ALT button or the big button and turn the shift knob to load hard-coded preset sequences onto that instrument or all instruments for quick changes when playing live.

  • @martingerken7094
    @martingerken7094 3 года назад

    You printed on glossy magazine paper, other from the method in your 2017 video? (I'm trying to use this method without etching - and without heat, just to transfer the black toner and I'm using spray-on paint to grab the toner and coat it afterward, see: imgur.com/a/q3PFK4x and www.reddit.com/r/synthdiy/comments/j708ls/panel_design_using_toner_transfer_alternative/ )

    • @extralifedisco
      @extralifedisco  3 года назад +1

      Yep, glossy magazine paper works well with the iron method because it dissolves easily into water. It's OK-not great for non-etched transfers because a lot of paper fiber sticks to the toner and you have to scrub it very carefully. If you're etching it doesn't matter though.
      The heatless transfer seems to work better with stiffer paper but I haven't ever really got it to work - this guy seems to do very well with lacquer in solvent and wax-coated sticker backing paper, but my laser printer chews that paper so it's a no-go for me. ruclips.net/video/GL0fVtREgRA/видео.html

    • @extralifedisco
      @extralifedisco  3 года назад +1

      Stereoping had a great tutorial on the heat method here: web.archive.org/web/20180723213226/www.stereoping.com/eurorack-frontplatten-erstellen-mit-der-toner-transfer-methode/?lang=en

  • @cr0wland
    @cr0wland 4 года назад

    this is my 3rd extralife video since finding your channel and I must express my disappointment in this shirt.

    • @extralifedisco
      @extralifedisco  4 года назад +1

      Lol fair enough! I think the one in the next vid is even more unfashionable, and my haircut doubly so. Quarantine's hard on a dandy lad

    • @cr0wland
      @cr0wland 4 года назад

      @@extralifedisco I spoke too soon, the shirt in the final scenes is a corker!