View Single Post
  #10  
Old 04.05.2009, 02:08 AM
djflan's Avatar
djflan djflan is offline
Definately caught something...
Very mucho Newbie
 
Join Date: 30.03.2009
Location: Nashville, TN
Posts: 44
Default

yes, btw: both of those are already mapped to the controller on page 5 and 6. I had to program all controlls on the midi controller. First you need a utility like Midi-Ox to show what controls from the virus are sending which sysex strings.

Skip to the end now for a simple solution.

for example: Distortion Intensity looks like this as a sysex message
F0 00 20 33 01 10 71 40 65 DV F7

You can ignore F0 and F7, they signify the start and stop portion of the message. We have a string of nine bytes here:
00 20 33 01 10 71 40 65 DV

each two characters represent a value written in hexidecimal. You can ignore the first eight, the tell the synth which parameter we are referring to. Notice the ninth byte, its value is DV. This is a variable byte. So when we turn the distortion intensity knob, the message is sent and DV is replaced with the value (in hex).

To program this on your novation:
1. scroll to the template you wish to edit
2. hold down the edit button and turn or press the control you wish to edit
3. If the control uses sysex values,change control type to sysex.
4. DISPType is what controller displays
5. LoVal is the lowest value this control sends(in decimal here)
6. HighVal is the highest value this control sends(in decimal here)
7. Ports should be left at U1 M1, unless you have a complicated setup
8. Length is length of byte string, excluding string stop and start bytes.
9. DataType is SINGLE, that means we have one variable byte to send
10. DataPsn is position of variable byte, this is always 9 for virus messages.
11. Press up key twice to see byte string
12. Using the example of distortion intensity it should read:
F0 00 20 33 01 10 71 40 65 DV F7
(notice F0 and F7 are always in place because every message needs start and stop.)
13. Now press write twice to write template, the control should now be able to control the synth.



Please note, Unless you dont like the position of the controlls, everything is mapped. You should not have to go through this, I have gone through the trouble of it already....The templates were made to save you from having to do this. To use: connect Novation remote to your computer
upload template pages in order into the controller using the remote template editor I posted. Page 1 needs to be in template spot 1, 2 in 2, etc...
Then connect a midi cable from midi out of your novation into midi in of your virus TI. The novation will now control your TI. To access additional functions on Novation, press the side buttons multiple times.


Hope this helps, Best of luck!
Reply With Quote