Quick Sign In:  

Forum: Old versions

Topic: xmls the how to

Dieses Thema ist veraltet und kann veraltete oder falsche Informationen enthalten.

Hi there guys so im looking for some help creating and working on my xml documents. firstly im working with a korg padkontrol it has 16 scenes and 10 midi channels. the first issue im having is that id like to make a generic mapping for my device so that i can switch what it does from the virtual djs mapper. I worked with the simple midi wrapper but had issues with it. I decided to take on the task of learning the controll definer made by chackl. I've been trying to back track using others device xml and mapper xmls for similar devices but only have a vague understanding. my first issue is what do i use from the midi dump for my buttons code? theres a few differnet codes in the midi dump per button usually something like 0x37 or something similair but when i was working in chackls controll definer i was marking them as notes and when i went into the midi history from the controll definer program and noticed there were notes starting with "60" then "57" and so on though the problem was that the korg has two banks bank a and b each containing six of the buttons each and for some reason i found that one of the buttons shared the same number as the first button being "60" only button 1 and 12 had this issue but it led me to think i was doing it wrong. ive had other issues as well when it comes to the mapper xml since id like it to be generic buttons so i can set up the mapping within vdj. id like to be able to map the 16 scenes it has (device has 10 midi channels) the first scene would be the samplers for vdj the second and third would be go to cue's and the 4 and 5 would be set hot cues. 1 set per deck. I noticed the launchpad xml had the cue points set up but for now im looking for advice on how to set this up all properly as ive been up late enough researching for tonight! So for the guys who already creat there own xmls do you do it in an xml notepad then add it to the controll definer after or something?
 

geposted Sun 16 Sep 12 @ 5:21 am
I usually use the definer only to get the device id's and test the LED's if they are not the same message as the buttons, then do everything in notepad as it's faster to do because you can use "copy and paste" and "find and rename" unlike the definer tool where you have to input everything in individually and the program takes a moment to update the xml.

all the different types of controls can be found in the midi controller wiki

In regard to the midi notes the current version of the definer uses decimal midi notes, but you can also use the hexadecimal notes which is represented with the 0x infront of the number and instead of each block being 10 units it is 16 so the numbering system goes

HEXADECIMAL
DECIMAL

00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 0A, 0B, 0C, 0D, 0E, 0F
00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15

10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1A, 1B, 1C, 1D, 1E, 1F
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31

20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2A, 2B, 2C, 2D, 2E, 2F
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47
etc...

If you are using midi trace that is outputting hexadecimal. for a button you will get 2 lines with 8 pieces of information eg

93 1A 7F 00
83 1A 00 00

there is only three pieces of information you are really concerned with

93 1A 7F 00
83 1A 00 00

the blue number is the midi channel, this is in HEX so it is displayed as 0 - F but you would write them as channel="0" to channel="15" in the definition file

the red numbers are the unique midi address of the control. when writing this you need to let the computer know it is dealing with hexidecimal numbers so to do this you add "0x" infront of the numbers eg. 0x1A

the last piece of information in green is telling you what the control change is, for a button that is note on/off it will usually be 7F "full" and 00 "off", the only reason I am alerting you to this is because when you move a potentiometer you will get a lot of lines but only that number will change. The only exception is an encoder which will output a different message for CW and CCW, there is rules of how to interpret that information in the definition file.

I recommend having a good read of the midi controller wiki so you know what is possible, then refer to it again when compiling you file.

The single most important thing you can use is a xml validator which I didn't know existed before a couple of weeks ago :'( It will check the entire document for errors and show you the exact place it occurs so you can fix it. I use the W3schools validators for html, css, javascript and xml... It make life so much easier than manually checking the document.

http://www.w3schools.com/xml/xml_validator.asp

hope that helps
 

geposted Sun 16 Sep 12 @ 4:58 pm
so I have an issue mine only out putted three rows of numbering being
Note C#3 73 0x99 0x3d 0x49 chan=10
NoteOff C#3 64 0x89 0x3d 0x40 chan=10
Note A3 62 0x99 0x45 0x3e chan=10
NoteOff A3 64 0x89 0x45 0x40 chan=10
Note F3 43 0x99 0x41 0x2b chan=10
NoteOff F3 64 0x89 0x41 0x40 chan=10
Note D#3 35 0x99 0x3f 0x23 chan=10
NoteOff D#3 64 0x89 0x3f 0x40 chan=10
Note C3 100 0x99 0x3c 0x64 chan=10
NoteOff C3 64 0x89 0x3c 0x40 chan=10
Note B2 83 0x99 0x3b 0x53 chan=10
NoteOff B2 64 0x89 0x3b 0x40 chan=10
Note A2 83 0x99 0x39 0x53 chan=10
NoteOff A2 64 0x89 0x39 0x40 chan=10
Note G2 78 0x99 0x37 0x4e chan=10
NoteOff G2 64 0x89 0x37 0x40 chan=10
Note C#2 97 0x99 0x31 0x61 chan=10
NoteOff C#2 64 0x89 0x31 0x40 chan=10
Note D#2 83 0x99 0x33 0x53 chan=10
NoteOff D#2 64 0x89 0x33 0x40 chan=10
Note G#3 90 0x99 0x44 0x5a chan=10
NoteOff G#3 64 0x89 0x44 0x40 chan=10
Note G#2 74 0x99 0x38 0x4a chan=10
NoteOff G#2 64 0x89 0x38 0x40 chan=10
Note C2 50 0x99 0x30 0x32 chan=10
NoteOff C2 64 0x89 0x30 0x40 chan=10
Note E2 49 0x99 0x34 0x31 chan=10
NoteOff E2 64 0x89 0x34 0x40 chan=10
Note F#2 62 0x99 0x36 0x3e chan=10
NoteOff F#2 64 0x89 0x36 0x40 chan=10
Note C3 60 0x99 0x3c 0x3c chan=10
NoteOff C3 64 0x89 0x3c 0x40 chan=10
this was my midi dump im assuming i would use
the middle row of numbers?
 

geposted Sun 16 Sep 12 @ 6:59 pm
Note C#3 73 0x99 0x3d 0x49 chan=10

for the first line I assume it is like that, but I have never used that program... the easiest way to confirm is to use a slider to find out which is the control change value. But note 73 is 0x49 in HEX.
 

geposted Sun 16 Sep 12 @ 7:35 pm
starting from left to right then right to left then the midi buttons
CC 21 74 0xb9 0x15 0x4a chan=10
CC 21 75 0xb9 0x15 0x4b chan=10
CC 21 76 0xb9 0x15 0x4c chan=10
CC 21 77 0xb9 0x15 0x4d chan=10
CC 21 79 0xb9 0x15 0x4f chan=10
CC 21 80 0xb9 0x15 0x50 chan=10
CC 21 81 0xb9 0x15 0x51 chan=10
CC 21 82 0xb9 0x15 0x52 chan=10
CC 21 84 0xb9 0x15 0x54 chan=10
CC 21 85 0xb9 0x15 0x55 chan=10
CC 21 86 0xb9 0x15 0x56 chan=10
CC 21 87 0xb9 0x15 0x57 chan=10
CC 21 88 0xb9 0x15 0x58 chan=10
CC 21 89 0xb9 0x15 0x59 chan=10
CC 21 88 0xb9 0x15 0x58 chan=10
CC 21 90 0xb9 0x15 0x5a chan=10
CC 21 91 0xb9 0x15 0x5b chan=10
CC 21 92 0xb9 0x15 0x5c chan=10
CC 21 93 0xb9 0x15 0x5d chan=10
CC 21 94 0xb9 0x15 0x5e chan=10
CC 21 97 0xb9 0x15 0x61 chan=10
CC 21 95 0xb9 0x15 0x5f chan=10
CC 21 96 0xb9 0x15 0x60 chan=10
CC 21 98 0xb9 0x15 0x62 chan=10
CC 21 99 0xb9 0x15 0x63 chan=10
CC 21 101 0xb9 0x15 0x65 chan=10
CC 21 102 0xb9 0x15 0x66 chan=10
CC 21 103 0xb9 0x15 0x67 chan=10
CC 21 104 0xb9 0x15 0x68 chan=10
CC 21 105 0xb9 0x15 0x69 chan=10
CC 21 106 0xb9 0x15 0x6a chan=10
CC 21 107 0xb9 0x15 0x6b chan=10
CC 21 108 0xb9 0x15 0x6c chan=10
CC 21 110 0xb9 0x15 0x6e chan=10
CC 21 111 0xb9 0x15 0x6f chan=10
CC 21 113 0xb9 0x15 0x71 chan=10
CC 21 114 0xb9 0x15 0x72 chan=10
CC 21 115 0xb9 0x15 0x73 chan=10
CC 21 116 0xb9 0x15 0x74 chan=10
CC 21 118 0xb9 0x15 0x76 chan=10
CC 21 117 0xb9 0x15 0x75 chan=10
CC 21 119 0xb9 0x15 0x77 chan=10
CC 21 120 0xb9 0x15 0x78 chan=10
CC 21 122 0xb9 0x15 0x7a chan=10
CC 21 123 0xb9 0x15 0x7b chan=10
CC 21 124 0xb9 0x15 0x7c chan=10
CC 21 125 0xb9 0x15 0x7d chan=10
CC 21 126 0xb9 0x15 0x7e chan=10
CC 21 127 0xb9 0x15 0x7f chan=10
CC 20 123 0xb9 0x14 0x7b chan=10
CC 20 122 0xb9 0x14 0x7a chan=10
CC 20 121 0xb9 0x14 0x79 chan=10
CC 20 122 0xb9 0x14 0x7a chan=10
CC 20 121 0xb9 0x14 0x79 chan=10
CC 20 119 0xb9 0x14 0x77 chan=10
CC 20 118 0xb9 0x14 0x76 chan=10
CC 20 116 0xb9 0x14 0x74 chan=10
CC 20 115 0xb9 0x14 0x73 chan=10
CC 20 114 0xb9 0x14 0x72 chan=10
CC 20 113 0xb9 0x14 0x71 chan=10
CC 20 112 0xb9 0x14 0x70 chan=10
CC 20 110 0xb9 0x14 0x6e chan=10
CC 20 109 0xb9 0x14 0x6d chan=10
CC 20 108 0xb9 0x14 0x6c chan=10
CC 20 106 0xb9 0x14 0x6a chan=10
CC 20 107 0xb9 0x14 0x6b chan=10
CC 20 106 0xb9 0x14 0x6a chan=10
CC 20 105 0xb9 0x14 0x69 chan=10
CC 20 103 0xb9 0x14 0x67 chan=10
CC 20 102 0xb9 0x14 0x66 chan=10
CC 20 101 0xb9 0x14 0x65 chan=10
CC 20 100 0xb9 0x14 0x64 chan=10
CC 20 98 0xb9 0x14 0x62 chan=10
CC 20 97 0xb9 0x14 0x61 chan=10
CC 20 95 0xb9 0x14 0x5f chan=10
CC 20 94 0xb9 0x14 0x5e chan=10
CC 20 95 0xb9 0x14 0x5f chan=10
CC 20 94 0xb9 0x14 0x5e chan=10
CC 20 93 0xb9 0x14 0x5d chan=10
CC 20 92 0xb9 0x14 0x5c chan=10
CC 20 90 0xb9 0x14 0x5a chan=10
CC 20 89 0xb9 0x14 0x59 chan=10
CC 20 88 0xb9 0x14 0x58 chan=10
CC 20 86 0xb9 0x14 0x56 chan=10
CC 20 85 0xb9 0x14 0x55 chan=10
CC 20 84 0xb9 0x14 0x54 chan=10
CC 20 83 0xb9 0x14 0x53 chan=10
CC 20 81 0xb9 0x14 0x51 chan=10
CC 20 80 0xb9 0x14 0x50 chan=10
CC 20 77 0xb9 0x14 0x4d chan=10
CC 20 75 0xb9 0x14 0x4b chan=10
CC 20 74 0xb9 0x14 0x4a chan=10
CC 20 72 0xb9 0x14 0x48 chan=10
CC 20 71 0xb9 0x14 0x47 chan=10
CC 20 70 0xb9 0x14 0x46 chan=10
CC 20 68 0xb9 0x14 0x44 chan=10
CC 20 67 0xb9 0x14 0x43 chan=10
CC 20 66 0xb9 0x14 0x42 chan=10
CC 20 65 0xb9 0x14 0x41 chan=10
CC 20 63 0xb9 0x14 0x3f chan=10
CC 20 62 0xb9 0x14 0x3e chan=10
CC 20 61 0xb9 0x14 0x3d chan=10
CC 20 60 0xb9 0x14 0x3c chan=10
CC 20 59 0xb9 0x14 0x3b chan=10
CC 20 57 0xb9 0x14 0x39 chan=10
CC 20 56 0xb9 0x14 0x38 chan=10
CC 20 54 0xb9 0x14 0x36 chan=10
CC 20 55 0xb9 0x14 0x37 chan=10
CC 20 54 0xb9 0x14 0x36 chan=10
CC 20 52 0xb9 0x14 0x34 chan=10
CC 20 51 0xb9 0x14 0x33 chan=10
CC 20 52 0xb9 0x14 0x34 chan=10
CC 20 51 0xb9 0x14 0x33 chan=10
CC 20 49 0xb9 0x14 0x31 chan=10
CC 20 48 0xb9 0x14 0x30 chan=10
CC 20 47 0xb9 0x14 0x2f chan=10
CC 20 45 0xb9 0x14 0x2d chan=10
CC 20 44 0xb9 0x14 0x2c chan=10
CC 20 43 0xb9 0x14 0x2b chan=10
CC 20 42 0xb9 0x14 0x2a chan=10
CC 20 41 0xb9 0x14 0x29 chan=10
CC 20 39 0xb9 0x14 0x27 chan=10
CC 20 38 0xb9 0x14 0x26 chan=10
CC 20 37 0xb9 0x14 0x25 chan=10
CC 20 36 0xb9 0x14 0x24 chan=10
CC 20 35 0xb9 0x14 0x23 chan=10
CC 20 33 0xb9 0x14 0x21 chan=10
CC 20 35 0xb9 0x14 0x23 chan=10
CC 20 34 0xb9 0x14 0x22 chan=10
CC 20 32 0xb9 0x14 0x20 chan=10
CC 20 31 0xb9 0x14 0x1f chan=10
CC 20 30 0xb9 0x14 0x1e chan=10
CC 20 29 0xb9 0x14 0x1d chan=10
CC 20 28 0xb9 0x14 0x1c chan=10
CC 20 26 0xb9 0x14 0x1a chan=10
CC 20 25 0xb9 0x14 0x19 chan=10
CC 20 24 0xb9 0x14 0x18 chan=10
CC 20 23 0xb9 0x14 0x17 chan=10
CC 20 21 0xb9 0x14 0x15 chan=10
CC 20 20 0xb9 0x14 0x14 chan=10
CC 20 18 0xb9 0x14 0x12 chan=10
CC 20 17 0xb9 0x14 0x11 chan=10
CC 20 15 0xb9 0x14 0x0f chan=10
CC 20 14 0xb9 0x14 0x0e chan=10
CC 20 13 0xb9 0x14 0x0d chan=10
CC 20 12 0xb9 0x14 0x0c chan=10
CC 20 11 0xb9 0x14 0x0b chan=10
CC 20 9 0xb9 0x14 0x09 chan=10
CC 20 8 0xb9 0x14 0x08 chan=10
CC 20 7 0xb9 0x14 0x07 chan=10
CC 20 6 0xb9 0x14 0x06 chan=10
CC 20 4 0xb9 0x14 0x04 chan=10
CC 20 3 0xb9 0x14 0x03 chan=10
CC 20 2 0xb9 0x14 0x02 chan=10
CC 20 1 0xb9 0x14 0x01 chan=10
CC 20 0 0xb9 0x14 0x00 chan=10
CC 21 123 0xb9 0x15 0x7b chan=10
CC 21 124 0xb9 0x15 0x7c chan=10
CC 21 122 0xb9 0x15 0x7a chan=10
CC 21 121 0xb9 0x15 0x79 chan=10
CC 21 119 0xb9 0x15 0x77 chan=10
CC 21 118 0xb9 0x15 0x76 chan=10
CC 21 119 0xb9 0x15 0x77 chan=10
CC 21 118 0xb9 0x15 0x76 chan=10
CC 21 116 0xb9 0x15 0x74 chan=10
CC 21 115 0xb9 0x15 0x73 chan=10
CC 21 113 0xb9 0x15 0x71 chan=10
CC 21 112 0xb9 0x15 0x70 chan=10
CC 21 110 0xb9 0x15 0x6e chan=10
CC 21 108 0xb9 0x15 0x6c chan=10
CC 21 109 0xb9 0x15 0x6d chan=10
CC 21 108 0xb9 0x15 0x6c chan=10
CC 21 106 0xb9 0x15 0x6a chan=10
CC 21 105 0xb9 0x15 0x69 chan=10
CC 21 104 0xb9 0x15 0x68 chan=10
CC 21 102 0xb9 0x15 0x66 chan=10
CC 21 100 0xb9 0x15 0x64 chan=10
CC 21 99 0xb9 0x15 0x63 chan=10
CC 21 98 0xb9 0x15 0x62 chan=10
CC 21 97 0xb9 0x15 0x61 chan=10
CC 21 96 0xb9 0x15 0x60 chan=10
CC 21 95 0xb9 0x15 0x5f chan=10
CC 21 94 0xb9 0x15 0x5e chan=10
CC 21 93 0xb9 0x15 0x5d chan=10
CC 21 92 0xb9 0x15 0x5c chan=10
CC 21 91 0xb9 0x15 0x5b chan=10
CC 21 89 0xb9 0x15 0x59 chan=10
CC 21 88 0xb9 0x15 0x58 chan=10
CC 21 87 0xb9 0x15 0x57 chan=10
CC 21 85 0xb9 0x15 0x55 chan=10
CC 21 84 0xb9 0x15 0x54 chan=10
CC 21 83 0xb9 0x15 0x53 chan=10
CC 21 82 0xb9 0x15 0x52 chan=10
CC 21 80 0xb9 0x15 0x50 chan=10
CC 21 81 0xb9 0x15 0x51 chan=10
CC 21 80 0xb9 0x15 0x50 chan=10
CC 21 79 0xb9 0x15 0x4f chan=10
CC 21 77 0xb9 0x15 0x4d chan=10
CC 21 76 0xb9 0x15 0x4c chan=10
CC 21 75 0xb9 0x15 0x4b chan=10
CC 21 74 0xb9 0x15 0x4a chan=10
CC 21 75 0xb9 0x15 0x4b chan=10
CC 21 74 0xb9 0x15 0x4a chan=10
CC 21 72 0xb9 0x15 0x48 chan=10
CC 21 71 0xb9 0x15 0x47 chan=10
CC 21 69 0xb9 0x15 0x45 chan=10
CC 21 70 0xb9 0x15 0x46 chan=10
CC 21 69 0xb9 0x15 0x45 chan=10
CC 21 68 0xb9 0x15 0x44 chan=10
CC 21 67 0xb9 0x15 0x43 chan=10
CC 21 65 0xb9 0x15 0x41 chan=10
CC 21 64 0xb9 0x15 0x40 chan=10
CC 21 63 0xb9 0x15 0x3f chan=10
CC 21 61 0xb9 0x15 0x3d chan=10
CC 21 60 0xb9 0x15 0x3c chan=10
CC 21 59 0xb9 0x15 0x3b chan=10
CC 21 58 0xb9 0x15 0x3a chan=10
CC 21 56 0xb9 0x15 0x38 chan=10
CC 21 55 0xb9 0x15 0x37 chan=10
CC 21 54 0xb9 0x15 0x36 chan=10
CC 21 53 0xb9 0x15 0x35 chan=10
CC 21 51 0xb9 0x15 0x33 chan=10
CC 21 50 0xb9 0x15 0x32 chan=10
CC 21 51 0xb9 0x15 0x33 chan=10
CC 21 49 0xb9 0x15 0x31 chan=10
CC 21 48 0xb9 0x15 0x30 chan=10
CC 21 47 0xb9 0x15 0x2f chan=10
CC 21 46 0xb9 0x15 0x2e chan=10
CC 21 45 0xb9 0x15 0x2d chan=10
CC 21 44 0xb9 0x15 0x2c chan=10
CC 21 42 0xb9 0x15 0x2a chan=10
CC 21 41 0xb9 0x15 0x29 chan=10
CC 21 40 0xb9 0x15 0x28 chan=10
CC 21 39 0xb9 0x15 0x27 chan=10
CC 21 37 0xb9 0x15 0x25 chan=10
CC 21 36 0xb9 0x15 0x24 chan=10
CC 21 35 0xb9 0x15 0x23 chan=10
CC 21 34 0xb9 0x15 0x22 chan=10
CC 21 33 0xb9 0x15 0x21 chan=10
CC 21 31 0xb9 0x15 0x1f chan=10
CC 21 30 0xb9 0x15 0x1e chan=10
CC 21 28 0xb9 0x15 0x1c chan=10
CC 21 27 0xb9 0x15 0x1b chan=10
CC 21 26 0xb9 0x15 0x1a chan=10
CC 21 25 0xb9 0x15 0x19 chan=10
CC 21 24 0xb9 0x15 0x18 chan=10
CC 21 23 0xb9 0x15 0x17 chan=10
CC 21 24 0xb9 0x15 0x18 chan=10
CC 21 22 0xb9 0x15 0x16 chan=10
CC 21 21 0xb9 0x15 0x15 chan=10
CC 21 19 0xb9 0x15 0x13 chan=10
CC 21 18 0xb9 0x15 0x12 chan=10
CC 21 16 0xb9 0x15 0x10 chan=10
CC 21 15 0xb9 0x15 0x0f chan=10
CC 21 13 0xb9 0x15 0x0d chan=10
CC 21 12 0xb9 0x15 0x0c chan=10
CC 21 11 0xb9 0x15 0x0b chan=10
CC 21 10 0xb9 0x15 0x0a chan=10
CC 21 9 0xb9 0x15 0x09 chan=10
CC 21 8 0xb9 0x15 0x08 chan=10
CC 21 6 0xb9 0x15 0x06 chan=10
CC 21 5 0xb9 0x15 0x05 chan=10
CC 21 4 0xb9 0x15 0x04 chan=10
CC 21 3 0xb9 0x15 0x03 chan=10
CC 21 1 0xb9 0x15 0x01 chan=10
CC 21 0 0xb9 0x15 0x00 chan=10
CC 21 0 0xb9 0x15 0x00 chan=10
i did the first knob then the second knob both to the left then the first then second both to the right.
 

geposted Sun 16 Sep 12 @ 8:33 pm
is there a way i can edit my message? the knob message was way to long and will impede others viewing it. Also ive gathered lots of information but have een having problems with the definition file still. It shows up in vdj but none of the buttons will work in key learn and keys i added in the file mapper dont work either but show up.
<?xml version="1.0" encoding="UTF-8"?>
<device decks="2" drivername="KORG padKONTROL" name="padKONTROL 1 CTRL" pid="0105" sysexid="F07E080602426E00080000010001F7" type="MIDI" vid="0944" >
<button note="49" name="PAD_01" channel="9" deck="1" />
<button note="57" name="PAD_02" channel="9" deck="1" />
<button note="53" name="PAD_03" channel="9" deck="1" />
<button note="51" name="PAD_04" channel="9" deck="1" />
<button note="48" name="PAD_05" channel="9" deck="1" />
<button note="47" name="PAD_06" channel="9" deck="1" />
</device>

<?xml version="1.0" encoding="UTF-8"?>
<mapper device="padKONTROL 1 CTRL" author="Mathias Flagel" description="KORG padKONTROL" version="710" date="08/10/2012" priority="5">
<map value="pad_01" action="play_stutter" />
<map value="PAD_02" action="" />
<map value="PAD_03" action="" />
</mapper>
I've tried changing multiple different setting but can't seem to get it right at the moment ive messed it up to where i cant view it anymore on vdj so i have to figure it out and fix it again.
 

geposted Mon 08 Oct 12 @ 11:32 pm
try this.. they are sending CC messages not notes.

<?xml version="1.0" encoding="UTF-8"?>
<device decks="2" drivername="KORG padKONTROL" name="padKONTROL 1 CTRL" pid="0105" sysexid="F07E080602426E00080000010001F7" type="MIDI" vid="0944" >
<button cc="49" name="PAD_01" channel="9" deck="1" />
<button cc="57" name="PAD_02" channel="9" deck="1" />
<button cc="53" name="PAD_03" channel="9" deck="1" />
<button cc="51" name="PAD_04" channel="9" deck="1" />
<button cc="48" name="PAD_05" channel="9" deck="1" />
<button cc="47" name="PAD_06" channel="9" deck="1" />
</device>
 

geposted Mon 08 Oct 12 @ 11:36 pm
ok so i tried that out with out success. its showing up in my mapper section the device has all the trigger pads set to channel 9 as is the device defintion file. I have midi yoke on here that downloaded without success so im removing that to see if its interfering though i dont think it would be a problem. Any other ideas? maybe team viewer for a better understanding?
 

geposted Mon 08 Oct 12 @ 11:49 pm
should the triggers all be set as control changes because there set to notes in the korg padkontrol editor. Also i can modify my recent messages but not the last older one that was of ridiculous proportions. Im trying the editor change from notes to cc now.
 

geposted Mon 08 Oct 12 @ 11:52 pm
ya i tried the control change method and still had no success. i removed the def files and mapper files then went to simple midi wrapper. It worked and i could see the difference in midi channels when i changed the trigger pads channels. midi channel 10 is equal to 9 and midi channel 9 is =8 i can notice the buttons the difference in the control changed triggers from the note triggers and there difference in midi channels.
 

geposted Mon 08 Oct 12 @ 11:55 pm
bumping this topic please. If i could get team viewer help id appreciate that a lot as my mapper is showing but buttons aren't mappable. As well i tried synthetics mapping with no success thanks for trying synthetic. I've created a ticket and am waiting for a reply from a higher up.
 

geposted Thu 11 Oct 12 @ 11:03 am


(Alte Themen und Foren werden automatisch geschlossen)