Hello!
OK, welcome to that Hack Chat everyone, let's get started. I'm Dan and I'll be moderating today along with Dusan as we welcome Mitxela to the Hack Chat. Hi Tim, welcome aboard!
Howdy
Hello and welcome!
Hi there!
hi
hello
Goooood Day Sirs!
hullo
Glad to have you on today, and to have a lot of new names in the chat.
Can you perhaps kick us off with a little about your background and such?
Hi :)
Tim this game console you made is just genius!
We only accept one or two new clients per month.
Get Found On The Internet.
We do Amazing SEO and Digital Marketing.
WE ARE Highly Focused on our client's specific needs.
This is why we only take on 1 or 2 new clients per month.
ONLY CONTACT US IF YOU ARE SERIOUS ABOUT GETTING FOUND ON THE INTERNET!
NO MARKETING AGENCIES PLEASE!
Please look at and Read over our Website Services Section. If you are providing the same services please don't call or contact us. Also, We're no longer on Facebook due to their Anti-Christian Conservative Business Practices so don't bother looking for us there anymore!
Back to Serious Business:
CAPTURE BUSINESS and GET FOUND, you need a professional-looking website properly optimized to rank well on today's search engines!
START HERE: https://realwis.com/
LOOKING FOR FREE TOOLS? GO HERE: https://seo.realwis.com/
RealWis.com SEO/Marketing
Founder James Murphy announced that RealWis.com has been added to the State of Wisconsin SUPPLIER NETWORK.
“We’re very proud of our record of success with Wisconsin Business and Non-Profit sector and appreciate being added to the list of Wisconsin Suppliers.”
Wisconsin Supplier Network Link: https://wisconsinsuppliernetwork.com/suppliers/real-wisconsin-website-design/
Veteran & Women-Owned Business.
Supporting our Military Men and Women who have served and are currently serving through our presence on RALLY POINT LINK: https://www.rallypoint.com/profiles/532737-sgt-james-murphy
In addition to Rally point, we maintain a VETERANS RESOURCE PAGE on C.U.T. WISCONSIN. Link: http://cutwi.com/vets-resource-page.html
Our Made In Wisconsin label Participation:
“The Made In Wisconsin label shows the pride that has gone into our products. Letting people know that they are produced in Wisconsin helps us share that our work is done with a level of craftsmanship that is widely known and appreciated.”
- James M Murphy - We are certifying that the product or service on which our clients seek to use fulfills program requirements. The Made In Wisconsin Program complements the Wisconsin Department of Trade, Agriculture, and Consumer Protection’s Something Special From Wisconsin™ Program, offering companies two ways to show their state pride.
Contact Real Wisconsin Website Design: (920) 785-1219 https://realwis.com/
Our email: admin@realwis.com
Note: Mr. Murphy also serves Brown County Wisconsin as an Elected Supervisor for District 15. If you wish to contact Supervisor Murphy Regarding County Business please use the government email james.murphy@browncountywi.gov or our private email at jm@realwis.com.
uh, mods?
Working on it
Boo bots!
Naughty bot
Well... I have been playing around with MIDI for quite a few years now, along with various other electronics and software projects
I thought you wanted to know our background?
Sorry.
I wouldn't say I'm an expert in MIDI
No, sorry -- I was talking to our guest.
Can you explain midi to those of us who've heard about it but never utilitized it?
aloha!
Hello All!
Hello!
MIDI is a way of having fun with music and electronics.
I think I meant more the mechanics of it.
How it's generally wired up.
@SHIK Thank you!
Are you planning on more tiny synth projects?
did someone say midi? :]
I've just started with MIDI. Are there tools/resources that you consider indispensable, especially for Windows systems?
whole bunch of Q: which microcontrollers/etc do you like to use? Experience with input devices like capacitive touch and variable resistance in non-conventional (ie, not slide/knob) form factors?
@SHIK Perhaps! I may have hit the limit of what can be put into a DIN connector though
I've got a pretty nice Mackie mixer with powered speakers and AKG mikes for voice along with some TC Helcon hardware but I've never included MIDI...
@Jerry Isdale Most of the time I use STM32 chips now, but I started on AVR. AVR is a wonderful architecture to learn
For reference:
https://hackaday.com/2019/10/28/worlds-smallest-midi-synth-now-even-better/
World's Smallest MIDI Synth, Now Even Better
We're pretty sure there's no internationally recognized arbiter of records like "World's smallest full-featured polyphonic stereo MIDI synthesizer that fits in a DIN shell". If there isn't, there sure should be, and we're pretty sure [mitxela]'s Flash-Synth would hold that particular record. This is one of those lessons that some people just can't leave a challenge alone.
thats neat
@dracolytch Not really. The nice bit about MIDI is that it's pretty easy to get started with. There are super expensive bits of hardware, but I started with a very chip midi keyboard and a midi-usb adapter
very cheap
My Q is how do you get around the "hardware barrier"? I super want to get into MIDI stuff, but having to spec out everything before even getting started (and having to wait for shipping of pieces) makes me never really gaining any momentum
(at least in contrast to software, where you can mess around fairly easily until you get a feel for things)
Actually I started with very little hardware at all, since I learned to make synthesizers using the web audio api
mtxela AVR with or without arduino overstructure? Teensy has neat audio support in a more powerful yet arduino compatible way
I just took someone's example code and started modifying it and making cool (sometimes terrible) sounds
@mitxela do you work in Max/MSP or "Max for Live" to build any virtual MIDI devices?
@mitxela > noise box flashbacks :)
@Jerry Isdale I also want to know this, esp. vs straight-up assembly (which you've talked about using in the videos)
AVR without arduino. I am not a fan of arduino really, it is useful for quickly getting stuff done i suppose but if the goal is to learn, it abstracts away from what's really going on
I specifically set out to learn to program in assembly
After spending a long time getting nowhere with x86, I discovered AVR
AVR is wonderful because the architecture is simple enough that you can learn pretty much everything about it. No surprises!
assembly is cool - gotta think in real detail. Arduino overstructures are nice for learning physical computing and programming, but to get maximum use from minimal hardware ya gotta go assembly
(speaking of which, any hacks to be effective when reading data sheets/specifications? I tried to wade through the USB MIDI spec, but it was too much :o) )
I feel I'm being a bit a elitist
Err, even programming AVR in C is better. The thing is, I can write digitalWrite() or whatever and have no idea what it's doing
The Teensy uses ARM Cortex chip with some nice DMA hardware so you can setup xfers to IO without involving processor... good for streaming time sensitive stuff like LED control, etc
When I first learnt about registers and memory mapped peripherals that was a big Aha! moment
only surprises i'm worried about AVR is what microchip will do to it, esp the software side. they''ve done a nice job on the at128da/db chips putting microchips analog into avrs digital.
@miguelmurca USB MIDI is a bit daunting
@mitxela I've created an open source project for midi controller. I wonder how would you hack it and what would you use it for except for music production...
@mitxela coming from you that's a bit intimidating haha
I think what I liked about MIDI originally was that I was able to play around with it using just a CRT oscilloscope
I just scoped the lines and saw zeros and ones
I wish I hadn't sold my old CRT oscilloscope.... Like to find a good deal on a new one.
And then I read the wikipedia page on UART and managed to bit-bang some MIDI bytes using GPIO pins
hard core
USB is an order of magnitude more complex, but it's an order of magnitude less complex than bluetooth
Impressive Mitxela
hahaha, dont say that! I want to build a MIDI BTLE host
@mitxela 👀 BT MIDI incoming?
The V-USB library makes USB MIDI not too bad. Once you've got the descriptors sent, it's pretty much the same sort of deal
PJRC makes the Teensy and this rather neat 16bitA/D D/A board for audio processing. Library can be programmed visually (connect boxes). long way up from bit banging
Nah if I'm honest I'll only go near bluetooth these days if I'm being paid to
https://www.pjrc.com/store/teensy3_audio.html
PJRC Store
This audio adaptor lets you easily add high quality 16 bit, 44.1 kHz sample rate (CD quality) audio to your projects with Teensy 3.0, 3.1, 3.2, 3.5 or 3.6. It supports stereo headphone and stereo line-level output, and also stereo line-level input or mono microphone input.
bluetooth is crazy hard and weird.
I'm hoping most of the hard work has been done already WRT pairing and such
Not only is it stupidly complex, but you pretty much are forced to use proprietary chips to interact with it
@Jerry Isdale This is the extent of my BT knowledge and it was enough to not go too near it haha
I think in the last few years bluetooth has probably gotten better
Less hackable ...
But V-USB is a bit-banged library, it is implemented entirely in software on a chip that isn't supposed to do USB
I like that a lot
artisanal usb
have you experimented with hardware (MIDI) USB?
i tried to integrate a BT device on a rPi... had to setup a whole separate process to extract the messages, and repeatedly check to be sure we hadnt lost comms.
Hi @mitxela, thanks for the hack chat! What do you think MIDI protocol would be a limitation or a missing feature that would be useful? I am not very experienced with MIDI, but so far it has proven to do everything I needed to!
@Jerry Isdale - Do you have any helpful resources you used?
@miguelmurca , if you deal with Arduino, you can find good MIDI-USB libraries, pretty simple to use
@miguelmurca Do you mean chips that have usb hardware on them? if so yes, but I normally just take an example project and fiddle with the descriptors. Or in the case of STM32, use STM32Cube, and cry a little at the same time
haha
example projects = standing on the shoulders of 1000 midgets = success
@SHIK I have an UNO, doesn't support USB, only serial :(
@Guru-san There's not much I would add to midi, the only thing in the original spec that people complain about is the difficulty of having to use a channel-wide pitch bend amount
@SHIK (also ATTinys are way more expendable, so I want to do that haha)
MIDI is basically the electronic equivalent of written music score
@mitxela have you worked with the new MIDI 2.0 spec yet?
Nope, not at all
@miguelmurca , I'm working on additional project for implementing separate USB for midi-usb, shouldn't be too difficult.
lots of publicity on it, but open source projects? not many yet. press likes it https://www.musicradar.com/news/midi-20-specs-now-available-to-all-is-this-the-beginning-of-a-new-era-of-musical-innovation
What does it say when the MIDI standard has been around so long and we're only just getting to version 2.0?
Another situation where MIDI is insufficient would be a Theremin. There are no MIDI theremins really, you can't send a continuously changing pitch and volume simulatneously, at least you can't do it well
that standards committees move glacially
I have a Yamaha MIDI keyboard from 1983 which is compatible with my Javascript Web Audio synth
This is a good thing
@Dan Maloney that they did it pretty good the first time around ;)
I was thinking that it was how right they got things out of the box, but I see your point too ;-)
Right I see thanks!
@Dan Maloney Perhaps they can take the Kingdom Hearts approach and make MIDI 1.5 DX next? :)
@Dan Maloney , I think no one really had problems with v1. Even 14bit midi is possible with v1
I do like the TRS standard coming up
That yamaha keyboard from 1983 is amazing because they didn't have enough onboard RAM to properly support changing octaves
The main chip on board is a huge DIP package with the yamaha logo on it
... also I fixed the octave changing problem by adding an AVR chip to it
now it is pretty easy to cram several comm libraries (midi/usb/ethernet/dmx) onto a single micro, along with bunch of ram and flash/sd card.
sweet hack on the yamaha
yeah modern keyboards have come along way, a lot of x86 boxes running linux now for instance with ssds and gobs of ram
I wish I could find a modern keyboard that has the same feel as the old yamaha ones. I bought an Arturia Keystep a while back and it's not the same
By the way the Keystep has an stm32f103 on board, so it's ripe for someone to make an open-source alternative firmware for it
Thank you Gentlemen, I gotta bail! Client walked in.
The Teensy 3.x hardware is pretty small and affordable. Paul (creator) gets deep down into the assembly to make fast libraries for it.
i really like my korg sv1 the the keys are super nice
Wondering about different inputs - keyboards with nice feel and you get velocity etc with midi. What sort of other things have y'all experimented with? Seen the cap.Touch MakeyMakey demos?
(speaking of hacking instruments, have you thought about working with LOOKMUMNOCOMPUTER?)
Since you mentioned it, I had to google it - I wonder how good this actually is over MIDI https://www.moogmusic.com/products/etherwave-theremins/theremini
@Jerry Isdale I've not seen those, but I've never been that keen on capacitive touch stuff. I like to have something physical that moves
i'm playing around with some alps linear faders with touch control for a drone box, looking at using the stm32f373
@miguelmurca I've never spoken to them. A couple of other youtube people have emailed me every now and then, I guess I've never actually taken the initiative to contact other people
cap touch might be replacement for the button box midi controllers. easier to put on odd surfaces like a jacket/vest
cap touch can be good, I guess it's just there's a certain kind of consumer hardware that tends to use it because it's cheap, and the experience is normally terrible so that's put me off
roli seaboard
(i read charliex as charlie plex - a technique to drive displays with minimal pins)
Some people suggested changing the stylophone business card to use cap touch, but even discounting the fact that without a stylus it can't be a stylophone, I don't think it would be as fun to play. Especially since it's tiny, each key is smaller than a finger
Some Russian company is trying to sell midi touch boards, I cannot find a good use for this.. looks much like a kids toy
@Jerry Isdale yeah i get that a lot, that and star trek and the guy whos runs X men
charlie plexing is also fun
it is, i made a charlieplexed badge for our hackerspace years ago and a lot of people thought i invented the term......
apparenlty charlie plex was also a harry potter character
I have one last before having to go: @mitxela youtube isn't your main job (I think?), yet you do these cool complex things. Do you have any particular strategy when approaching a new project/staying motivated?
(in my case I have a hard time staring at asm after a day of work lol)
heh
@shik why do you think cap buttons are bad?
Yeah youtube's definitely not my job - until this year I didn't even have it monetized. For me the best thing to stay motivated is to post what I do on my site. Even just writing a bit about a project is enough for me to flag it as "done" and get some satisfaction
are you going to make a smaller din synth?
And... if I haven't posted anything in a while then that encourages me to do something
@miguelmurca - You might want to check out this recent Hack Chat if you missed it:
https://hackaday.io/event/176391-finishing-your-projects-hack-chat
Finishing Your Projects Hack Chat
Zack Freedman will host the Hack Chat on Wednesday, February 10 at noon Pacific. Time zones got you down? Try our a handy time zone converter. Try as we might, some of us are much better at starting projects than finishing them.
and that doesn't result in unfinished projects? 😁
@Dan Maloney thanks!
@charliex unlikely, I don't think it could get much smaller. Maybe a midi-in-a-TRS jack next?
you can always get it smaller :)
@charliex lol
@charliex tunneling microscope based midi synth
right?
Wow TRS synth will be crazy
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.