Search found 9 matches

by dc_Sux
12 Feb 2012 13:12
Forum: Projects
Topic: Template for DSI Mopho Synths (v2.5) for Lemur v5 released
Replies: 42
Views: 27077

Re: Template for DSI Mopho Synth

So, are you saying you have sysex feedback of parameters to the lemur?
Will have to take a look at this when I get back from holiday.

Nice work.
by dc_Sux
25 Jan 2012 13:07
Forum: Projects
Topic: DSI Tetra editor
Replies: 11
Views: 9722

Re: DSI Tetra editor

Some of the controls are mapped to CC and some to NRPN, so you actually need to set the Midi parameter receive to ALL in the global settings. As analog604 said, make sure you are sending the lemur output to the correct midi channel. Are you sending the midi through a DAW? I have done all of my ...
by dc_Sux
22 Jan 2012 20:56
Forum: Projects
Topic: DSI Tetra editor
Replies: 11
Views: 9722

Re: DSI Tetra editor

Yes, it has taken me quite a while to program it, especially since I had no understanding of NRPNs or scripting when I started. If the NRPN parameter numbers are the same for the Mopho as they are for the Tetra, I see no reason that it shouldn't work. I am guessing they are the same, as that would ...
by dc_Sux
21 Jan 2012 00:01
Forum: Projects
Topic: DSI Tetra editor
Replies: 11
Views: 9722

DSI Tetra editor

My interface for the Dave Smith Tetra is up on the user library now.

http://liine.net/en/community/user-library/view/174/

Image
by dc_Sux
20 Jan 2012 23:58
Forum: General Discussion
Topic: Nrpn messages?
Replies: 32
Views: 14084

Re: Nrpn messages?

by dc_Sux
16 Jan 2012 07:52
Forum: General Discussion
Topic: Nrpn messages?
Replies: 32
Views: 14084

Re: Nrpn messages?

s Also I was looking for the LFO 4 FREQUENCY not the LFO 1 AMOUNT ok..... LFO1Amt. is the name of your slider Yes. Just replace the LFO1Amt with the name of your fader, and change the nrpn_param to whichever parameter number you want to control. I just gave the example for LFO 1 amount, parameter ...
by dc_Sux
14 Jan 2012 21:30
Forum: General Discussion
Topic: Waveform formulae for signalscope
Replies: 3
Views: 2888

Waveform formulae for signalscope

This is a purely cosmetic thing, but I was hoping to program different signalscopes to display sine, sawtooth, reverse sawtooth, triangle and square waves, depending on what was selected for my oscillators/LFOs etc. Trigonometry isn't exactly my strong point. I can get it to display a scrolling sine ...
by dc_Sux
07 Jan 2012 14:29
Forum: General Discussion
Topic: Nrpn messages?
Replies: 32
Views: 14084

Re: Nrpn messages?

Figured it out:

If I change to end of my script to:

ctlout(target,nrpn_msb,(null+1),chan);
ctlout(target,nrpn_lsb,nrpn_param,chan);
ctlout(target,data_msb,null,chan);
ctlout(target,data_lsb,value,chan);

It seems to work
by dc_Sux
07 Jan 2012 12:49
Forum: General Discussion
Topic: Nrpn messages?
Replies: 32
Views: 14084

Re: Nrpn messages?

Hi, I have been making good progress with my tetra editor, thanks to the excellent replies in this post. I am struggling, however, as soon as the parameter number is >127. The script framework I have been applying to controllers is as follows (example being for a fader controlling LFO amount ...