Пікірлер
@mathces_lab
@mathces_lab 9 күн бұрын
this is so cool!
@PierreWapata
@PierreWapata 19 күн бұрын
Hi ! What is the accelerometer device you show us please ? It look like a thing useful to make vibrato on keyboards (device somehow not popular on the market or on diy projects).
@CyanTiger
@CyanTiger 19 күн бұрын
This is great.
@deafdogdojo
@deafdogdojo 20 күн бұрын
HELLYEAAAAAAAA
@braelighty6212
@braelighty6212 Ай бұрын
Sounds like Aphex Twin🔥🔥🔥
@MadsKjeldgaardMusic
@MadsKjeldgaardMusic Ай бұрын
bravo!
@JannickMakus
@JannickMakus Ай бұрын
fire!!
@gibsonbroadcast
@gibsonbroadcast Ай бұрын
DJ BAJA BLAST
@Alexytb11
@Alexytb11 Ай бұрын
Great job! Liking the beats. I'm really into it, I'm into fat bitches
@NickCarboneDrum
@NickCarboneDrum 2 ай бұрын
👏👏👏 have fun this is awesome!!
@KattKirsch
@KattKirsch 2 ай бұрын
SICK!
@VJFranzK
@VJFranzK 2 ай бұрын
Looks like a good project! (Perhaps you could find translucent Key Caps? to make the LEDs show out all the more.)
@djbajablast5425
@djbajablast5425 2 ай бұрын
Yooo reading my mind. Just ordered some translucent ones!
@gutsberserker5476
@gutsberserker5476 2 ай бұрын
I am working on one too. Great work :) Hopefully I can learn something from your source code and make some more progress.
@djbajablast5425
@djbajablast5425 2 ай бұрын
Heck yeah lemme know if you use anything or have any ideas! Would love to see whatever you come up with.
@RemixSample
@RemixSample 2 ай бұрын
This is awesome! Love the crank feature!
@djbajablast5425
@djbajablast5425 2 ай бұрын
Glad you dig!
@RayCrane
@RayCrane 2 ай бұрын
Cool little project. I ordered one of your boards from Etsy and built one. Everything seemed to go pretty smoothly, except for a slight misstep in initially using CircuitPython 9.x (current) which generated some errors with your code - but that was quickly solved by jumping back to 8.x and now it's running perfectly. Now that I have the hardware complete I think I'm going to take a peek into the code itself and maybe hack around a bit with some changes. Thanks for creating this and publishing it so others can share in the fun!
@jso2332
@jso2332 2 ай бұрын
Thanks for sharing. Pretty cool!
@contactpipo
@contactpipo 2 ай бұрын
Using the rotary encoder as a beat repeat (like a retrigger) for certain pads might be cool, hold down the snare pad and then retrigger it by turning the knob, or use it to change the note length of an arpeggiator - 1/4, 1/8, 1/6 etc. Really cool project!
@VJFranzK
@VJFranzK 2 ай бұрын
+ 1 for Beat Repeat! With an MPC type function, have the rotary choose current speed. Because it has MIDI (thanks!) you could use it with with other drum machines, like my TR6s...
@djbajablast5425
@djbajablast5425 2 ай бұрын
@@VJFranzK Ooh I like this idea... documenting on my GitHub right now so I don't forget.
@Jonas-iz7rj
@Jonas-iz7rj 2 ай бұрын
a beautiful build. thanks for improving the internet :)
@djbajablast5425
@djbajablast5425 2 ай бұрын
Daw thanks pal
@fancysandwiches
@fancysandwiches 2 ай бұрын
This is pretty cool, I'm working on something similar (a MIDI sequencer), but am struggling to get any decent perf out of the 2040 with Python. I am using an Adafruit Feather RP2040 so it's using CircuitPython and not MicroPython, but I don't think that should make a big perf difference. Hopefully I can learn something from your source code and make some more progress.
@djbajablast5425
@djbajablast5425 2 ай бұрын
Oh sweet! What are you having issues with perf wise? My biggest issue has been updating the screen... I tried realllly hard to only update the screen when necessary, and only to update a tiny area. Also - mine is using CircuitPython as well!
@fancysandwiches
@fancysandwiches 2 ай бұрын
@@djbajablast5425 I've been having issues in three main areas: 1. Absolutely the screen is the number one perf killer, I want to update the screen a lot more than I can, but it's just not viable. I could live with this but it's not the only problem. 2. My project is essentially 16 rotary encoders (in a 4x4 layout) that you're meant to be twisting (or pressing) as the thing is playing. Reading the rotary encoders and reacting to their changes is also pretty time consuming. 3. Even just removing all of the rotary encoder and screen code, just getting this thing to output a sequence without drifting is hard, 60 BPM is easy, 120 BPM and then it starts struggling to stay on beat, drifting a few milliseconds consistently, but then some times for no reason it'll hit a 20ms or more delay, which really adds up. Combine this with any rotary encoder or screen code and you're drifting by tens or hundreds of milliseconds per beat very consistently. I originally wanted to get this thing to output a midi clock, but there's no way it can even come close to 24 PPQN on any reasonable BPM.
@djbajablast5425
@djbajablast5425 2 ай бұрын
​@@fancysandwiches Maaaan I feel you. I spent way too much time optimizing the screen stuff to try to deal. Multiple times I considered just getting rid of it but it's tough to do settings stuff without one. I’m kinda surprise that encoders eat up that much CPU time…. but I’ve only ever used 1 at a time. I don’t think my thing is super tight on timings either, honestly. But it’s a little more on the experimental / happy accidents side of the spectrum so it’s not a deal breaker. I had a hell of a time getting a stable clock over USB. Crazy how much worse that is compared to normal DIN MIDI in. I ended up just writing a bunch of logic to only update the BPM if it gets X amount of ticks that are within some threshold of each other for long enough. If CircuitPython supported true multithreading it might solve a bunch of this… could use one core ONLY for timing and such and do all of the input / display / etc. on the other one. I think MicroPython does, which maybe is worth checking out for you?
@djbajablast5425
@djbajablast5425 2 ай бұрын
@@fancysandwiches Oh just thought of one more thing - are you metering how often you check the encoders? If not that could make a big difference. Basically only check them every like 50ms or whatever value makes sense.
@politesociety
@politesociety 2 ай бұрын
This is great! Where is your GitHub at? Any hardware release plans or too early yet?
@swimdubz3840
@swimdubz3840 3 ай бұрын
Looks awesome! placed my order!
@djbajablast5425
@djbajablast5425 Ай бұрын
Ayo let me know how it goes!
@taklamak
@taklamak 3 ай бұрын
Awesome origami like innovativeness! Where can I get one?
@djbajablast5425
@djbajablast5425 Ай бұрын
Hiya just added some to my shop here! www.etsy.com/listing/1744340176/mini-midi-slider-51-midi-controller
@AMPProf
@AMPProf 3 ай бұрын
what if it can be played while building it
@AMPProf
@AMPProf 3 ай бұрын
need a Soldered wire version I have no way to make PCB or pcb Traces. Or cut pcb ( maybe idk remember) OOO MAYbe a Magazine Schematic style one..
@paulsavio6846
@paulsavio6846 3 ай бұрын
grubby ads
@KenjiStandlee
@KenjiStandlee 3 ай бұрын
Love the video, the intro music was too loud to understand what you were saying though.
@djbajablast5425
@djbajablast5425 3 ай бұрын
Thank ya! And word, IDK what I'm doing with video editing lol so that feedback is helpful, appreciate it.
@nikbivation
@nikbivation 3 ай бұрын
amazing!
@shawnpi
@shawnpi 3 ай бұрын
Cool stuff! is the top made of pla? how did you manage to make bend only the part right above the button? any tips of thickness on that?
@AMPProf
@AMPProf 3 ай бұрын
Betting beting .. You could 1970s that and Solder the whole loose under A diy Box Preferably non flameing
@AMPProf
@AMPProf 3 ай бұрын
soderr sawder suader sayw dar.. Soldrer. SOLDERED
@shawnpi
@shawnpi 3 ай бұрын
@@AMPProf what?
@djbajablast5425
@djbajablast5425 3 ай бұрын
Yo! it is PETG and took a lotttt of trial and error. I'll be uploading all of the STLs at some point cause I wanna make this open source. The very top is only 0.5 mm thick, with the little slits to help make it bend per button. It has little standoffs on the bottom so that it sits juuuust right above the buttons, so that it barely needs to bend to actually press them. It works surprisingly well if you can tune it just right!
@Matthew-jj1sj
@Matthew-jj1sj 3 ай бұрын
absolutely love this! really cool stuff
@djbajablast5425
@djbajablast5425 3 ай бұрын
Thanks!
@tjn0110
@tjn0110 4 ай бұрын
Well done!!! Great idea!!!
@adrianlikins1314
@adrianlikins1314 4 ай бұрын
Very cool.
@Matthew-jj1sj
@Matthew-jj1sj 4 ай бұрын
Really cool design on this, awesome content!
@suoquainen
@suoquainen 4 ай бұрын
I bet you can make some nice experimental grind- or noisecore with it. :)
@Terrible_Peril
@Terrible_Peril 4 ай бұрын
THIS is why I like KZbin. THANK YOUUUUU
@Aaron-zh4kj
@Aaron-zh4kj 4 ай бұрын
Yeah, a building tutorial would be awesome. Especially living in an apartment, I'd love something silent I can write midi parts on that also wouldnt send a bunch of vibration through the walls and floor.
@djbajablast5425
@djbajablast5425 4 ай бұрын
Yooo I'm working on one!
@CptCredible
@CptCredible 4 ай бұрын
This is a great idea, I want to build one!
@Jesiahjesiah
@Jesiahjesiah 4 ай бұрын
I love this, looks super fun to play. Can you point us towards any schematics you referenced?
@djbajablast5425
@djbajablast5425 4 ай бұрын
I don't have any right now, but I'm working on a more detailed guide!
@realconservative7735
@realconservative7735 4 ай бұрын
okay, but is it just a simple cv interface or something more?
@realconservative7735
@realconservative7735 4 ай бұрын
what am i even asking of course its a cv interface, awesome job.
@antiRuka
@antiRuka 4 ай бұрын
could you extract velocity from how hard they ring from a pickup?
@djbajablast5425
@djbajablast5425 4 ай бұрын
ooh yeah probably, but that would be a lot of pickups!
@Swenglish
@Swenglish 19 күн бұрын
​@@djbajablast5425 Unless you attach them to the sticks. Piezo elements might be a simpler solution. That's getting real close to regular electronic drums, though.
@justjoeblow420
@justjoeblow420 4 ай бұрын
Congrats you just made a modern version to the trigger pads Kraftwerk used live at one point but midi instead of sending analog triggers. Cool idea though.
@varietypa...5606
@varietypa...5606 4 ай бұрын
I read the description of the video, but it would be nice if you told us exactly how it is done and how it works
@RoyBatty1986
@RoyBatty1986 4 ай бұрын
you kan do it with a makey makey, the durmsticks are wired, its easy
@selfactualizer2099
@selfactualizer2099 4 ай бұрын
It's kinda your fault for not being able to see how simple this setup is, if yoy can't see that I don't advice being this kind of hobbyist
@Jesiahjesiah
@Jesiahjesiah 4 ай бұрын
yikes, bad bot/troll/human-in-progress@@selfactualizer2099
@varietypa...5606
@varietypa...5606 4 ай бұрын
@@selfactualizer2099 So kinda kind of you for such a kind adwise, but it would even more kind if you don`t answer when no one asked you.
@afreezaphorogiancossack2194
@afreezaphorogiancossack2194 4 ай бұрын
So does this have velocity sensitivity?
@Roikat
@Roikat 4 ай бұрын
Great work 🎺
@djbajablast5425
@djbajablast5425 4 ай бұрын
thanks bud!
@TheScratchyCat
@TheScratchyCat 4 ай бұрын
This is awesome :)
@lundsweden
@lundsweden 5 ай бұрын
This is really clever, compact too. I wonder if you used a smoke machine, would the beans become more visible a la Jarre's Laser Harp?
@juanloutech2864
@juanloutech2864 6 ай бұрын
Very nice project!
@bluespectralmonkey
@bluespectralmonkey 9 ай бұрын
nuggatory. crucial.
@aboodnas4725
@aboodnas4725 Жыл бұрын
Awesome guy !! would love to chop it up with you )
@0hellow797
@0hellow797 Жыл бұрын
Lookin sliick
@SheilaDoyle-uz1gh
@SheilaDoyle-uz1gh Жыл бұрын
'Promo sm' 🌺