Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Livid Block - LED Mapping
 

Posted 7 days ago @ 9:55 pm
locoDogPRO InfinityModeratorMember since 2013
It won't be in mapping, you need to write a definition file

<led note="0xNOTE" name="NAME" default="DEFAULT" channel="CH" />


NOTE can be 0x00 - 0xFF
NAME will be the name in the mapping for the button LED
DEFAULT will be the state of the button script it follows if you don't script the LED in mapping.
CH will be the midi channel 0-15 [note vdj uses 0 as the first channel some devices use 1 as the first channel, midiTrace will report as vdj expects]

It's a full configurable device so what NOTE & CH you need is yours to configure or you can discover the defualt with http://www.virtualdj.com/download/miditrace.exe

you'll need to read this as you will [have to] create a definition file
https://www.virtualdj.com/wiki/Controller%20Identification.html
 

Posted 7 days ago @ 10:18 pm
I think I'm in business! Got the first button lit up!
Should be able to define the rest of this beast now. Ty ty

I will probably post up more fully formed files for review once I'm done. There's all kinds of handy stuff tucked into the script lingo. Looking forward to getting more tips.
 

Posted 7 days ago @ 2:14 am
Everything is working brilliantly...except for the six additional function buttons which trigger but the LEDs don't light up!

I believe they're defined correctly in the Device file, the rest of the grid works fine. I'd like to use these to outline different operation modes, and tracking which one is in use is critical.

I couldn't find anything in the old documentation, or the vdj wiki.
https://web.archive.org/web/20201104134256/http://wiki.lividinstruments.com/wiki/Block#MAPPING_SUMMARY

Link to full device file;
https://drive.google.com/file/d/1rikHAWuY04mU8WNYuGt2l8-bX6h4314C/view?usp=sharing
 

Posted 5 days ago @ 6:24 pm
locoDogPRO InfinityModeratorMember since 2013
not sure, maybe try grab the device config SW if it still exists
extra note
you've done this and it might lead to problems down the line
	<led note="0x00" name="0-BUTTON0"/>
<button note="0x00" name="0-BUTTON0"/>


do this instead
	<led note="0x00" default="0-BUTTON0" name="LED_0-BUTTON0"/>
<button note="0x00" name="0-BUTTON0"/>
 

Posted 5 days ago @ 6:55 pm
this has been maddening!

i am starting to think those last buttons just simply may not be wired for LED; they arent lit up in any of the related tutorial videos. which is crazy to think. the bigger sister and predecessor the Livid OHM has the same damn function buttons, clearly lit up.

i guess ill have to deal with my mode togglers existing as custom buttons and referencing the screen.
 

Posted 3 days ago @ 5:54 pm