Hi, based on @Feinsveur 's work I created a version with patch request and program selection / browsing.
I have a Matrix 1000 V1.20, so it would be interesting if someone with a Matrix 6 could test it. I expect it to return the modulation matrix as well when using the patch request (right upper button). Let me know if there are still errors to correct.
I always passed the seduction to have a Matrix 1000 for the lack of editing sounds without software⌠But now, having the ELECTRA and such a nice worked out preset I really start thinking to get one
It is a totally different experience to actually âseeâ how the sound is made up and compare it with what you âhearâ, aiming a sound to what you have in mind become so much easier. Yesterday I layered my Matrix 1000 (not really heavy in the low end) with my DS8 (suffering from a bit of FM aliasing in the high end), and suddenly these two instruments togehter were boosting each otherâs strengths and hiding their weaker points. Amazing!
Iâll wait for the new version of the E1 to further built on the preset, but my gut feeling is that the inspiration boiling up will ask for faster saving of patches, for insight in patch names, for copying and syncing of elements (from one EG to another) and patch initialisation possibilities. Just not yet today!
Well, first step will be trying to get hands on a Matrix 1000 but I know exacly what you mean with the different experience. Had the same thing happening with my MKS-70. It turned from a âblack boxâ to an instrument!! And even the DX-7II came back to live, have done more new sounds in 1 month than in several years before having the ELCTRA controlling it!!
@Newlgnis Nice update! Setting up the patch parsing is way out of my skill level and time.
Iâve tested the preset out on my Matrix 6. The Electra can receive and update the current patch values including the Mod Matrix, however it needs to be set up a particular way every time you power the synth on. I have the setup listed in my preset info. It is still not possible to edit the Mod Matrix remotely which is a limitation of the space on the firmware I guess.
As far as I can tell selecting patches on the synth itself doesnât send parameter values, and I donât see any option in the menus to set it up that way. The only way to send the current patch to update the Electra values is to go to the âMaster Editâ menu and select the function to âSend Patchâ there. I donât get any response when using the âPatch Numberâ with âPatch Selectâ on the Electra side of things.
most synths will not sent a patch dump spontaneously when you change the program, so that is normal (and also probably for the best).
I havenât provided an auto patch dump request when you perform a Patch Select. But I will in a later version. For now, you need to request the patch dump via the right upper button of the E1. Clicking should suffise. Try it out and let me know if that works.
Be aware the control of the global parameters is not finished either.
Iâve updated the preset for the Matrix 1000. Electra One App
It now automatically requests the patch data, Ă nd it hides all irrelevant parameters. That makes it much faster to interpret how for instance the mod matrix is set up because you only get to see what is really used.
Try if you now can control the Matrix 6 from the E1 when changing patches?
Actually just created version 2.0. Now the âGlobalsâ pages allows you to save the edited patch that resides in the buffer of the Matrix into one of the patch memories of banks 0 and 1. For now you need to take away the memory protection yourself.
@NewIgnis
I am intensively using your Matrix 1000 preset (which is love and is giving my Matrix 1000 a second life) but I am having a problem with the patch request feature. When sending the request from E1 to the Matrix 1000 the values on the E1 are updating but unfortunately they do not correspond to the real value used by the Matrix 1000.
I could verify this by ear and then I made sure of it using a Max for Live plugin that also parses the edit buffer dump from the Matrix 1000. I might have do something wrong but I canât really see how.
(E1 firmware v2.2)
First of all, thank you for making this preset @NewIgnis, youâve done an incredible job with it.
Iâm using it with a Matrix 6 and a 1000. Testing with the 6, the Patch Request does in fact change the patch, but the Electra doesnât parse any values.
I commented out the last few lines of ârequestItâ and replaced it with this to get it working on the 6. The userbank has to be set to â1â or it will dump everything out instead of just one patch.
Another nice thing would be to set the Quick Edit mode when a value is touched, but I havenât figured out how to chain together the sysex yet. For now I added a button:
Go to Quick Edit Mode
[
âF0â,
â10â,
â06â,
â05â,
âF7â
]
@mIIwaukee So in your case the Matrix 1000 is working fine with the preset, but your Matrix 6 needs a change to the way it uses banks, and needs a button to go into edit mode?
Can you send me a link to your preset you use for the Matrix 6, and I 'll try to recombine them in one preset. I havenât got a Matrix 6 myself, so it is ideal of you could provide me such input. Iâd like to build in a preselector to swap between Matrix 1000 and Matrix 6 behaviour if doable.
How many banks does as Matrix 6 have ? How many patches per bank? What banks are read only?
Before going into details per parameter, you must know I needed to implement 2 tricks into the preset to ensure the parsing send to the M1000 was well received, and the data send by the Matrix into the electra was first being parsed, before the Electra updates its controls. Because if the controls are first updated while the parsing is still happening in the background, youâll see the parameters of the previous patch you requested, instead of those of the new patch. That could explain what you see.
Check out what happens if you apply the Patch Request button multiple times (so remaining on the same patch. Could it be the second time you press, you get to see the right parameters ?
To avoid it, check/set the following first:
set the device rate in the Electra at at least 10 ms, maybe you need to use 20 ms.
In the lua code I had foreseen an artificial wait time, based on amount of ticks elapsed, to ensure the values are only updated after all the parsing is done. In functions ârequitItâ and âbankRequestâ you will find waiting instruction âwaitT(500)â:
Increase their value heavily to for instance waitT(5000) and check if you get to see the right parameter settings after requesting a patch. That will take more time, so if this works, then start reducing those values to 2500 then 1250 then 700 and keep the smallest one that works.
The idea is to ensure you can change between Matrix-1000 and Matrix 6 behaviour
v2.1 brings:
removed a bug,
added Matrix-6 features (go into edit mode)
added a Switch Model knob between Matrix-1000 and Matrix-6.
changed default modulation controls to blue color (see screenshot)
@mIIwaukee Can you check if this âChoose Modelâ knob allows you to go into Matrix-6 mode?
Can you check if it works properly as well, when in split mode ?
Be aware: do set the right MIDI channels in the first lines of the lua script:
matrix1000Channel = 11 â set MIDI channel for Matrix-1000 here
matrix6Channel = 6 â set MIDI channel for Matrix-6 here
Try out the new features. I havenât got a Matrix-6 myself, but according to @mIIwaukee if you first go into edit mode with the âMatrix-6 Editâ pad, the parsing should now work.
Hi @NewIgnis and thank you for your answer.
So I tried to request the patch 2 times but I still had the same problem.
Then I thought about what you said and it made me realised that I was receiving the SYSEX (incoming from the Matrix 1000) to the E1 MIDI port 1 and 2 simultaneously.
I was thinking that an E1 preset is only receiving data from the same MIDI port the parameters are routed to, and ignore any MIDI coming from the other MIDI port. Seems I was wrong because now all is working as it should. Thank you so much, I hope I did not make you loose time on this. I just upgraded to the v2.1 as well. Thanks again!