Serato DJ Lite / Intro General Discussion

Talk about Serato DJ Lite / Intro software and controllers.

MID parameter for Enabling Serato Effect (MAP)

cabecinhas_br 1:13 AM - 14 November, 2024
Hi, is there a MID parameter where I can map to toggle on/off the effect on serato dj pro?

GPT said to use effect_1_enable, but didn't work.

If I try to use auto_loop_enable instead, it works, so the sintax is correct.

I need to toggle on/off serato effects by a custom button(control="53") in my case.


<control channel="1" event_type="Note On" control="53">
<userio event="click">
<effect_1_enable deck_set="Default" deck_id="0" slot_id="0">
<translation action_on="press" behaviour="toggle"/>
</effect_1_enable>
</userio>
<userio event="output">
<effect_1_enable deck_set="Default" deck_id="0" slot_id="0">
<translation action_on="any">
<alias name="on" value="127"/>
<alias name="off" value="0"/>
</translation>
</effect_1_enable>
</userio>
</control>
michelle653burkes 6:13 AM - 30 November, 2024
Hi there!

It sounds like you're on the right track with your MIDI mapping for Serato DJ Pro. Since effect_1_enable didn't work, but auto_loop_enable did, it seems like there might be a specific issue with the effect_1_enable parameter.

To toggle Serato effects using a custom button, you can try mapping to the DJ-FX Effect Enable parameter instead. Here's an example of how you might set it up:

xml
<control channel="1" event_type="Note On" control="53">
<userio event="click">
<djfx_enable deck_set="Default" deck_id="0" slot_id="0">
<translation action_on="press" behaviour="toggle"/>
</djfx_enable>
</userio>
</control>
Make sure you're using the correct parameter name (djfx_enable instead of effect_1_enable). This should allow you to toggle the effect on and off using your custom button.
michelle653burkes 4:42 AM - 2 December, 2024
Quote:
Hi there!

It sounds like you're on the right track with your MIDI mapping for Serato DJ Pro. Since effect_1_enable didn't work, but auto_loop_enable did, it seems like there might be a specific issue with the effect_1_enable parameter.

To toggle Serato effects using a custom button, you can try mapping to the DJ-FX Effect Enable parameter instead. Here's an example of how you might set it up:

xml
<control channel="1" event_type="Note On" control="53">
[u]
<djfx_enable deck_set="Default" deck_id="0" slot_id="0">
<translation action_on="press" behaviour="toggle"/>
</djfx_enable>
</userio>
</control>
Make sure you're using the correct parameter name (djfx_enable instead of effect_1_enable). This should allow you to toggle the effect on and off using your custom button.


Was that helpful to you?
www.prepaidgift-balance.com
Avery Cunningham 9:38 AM - 15 February, 2025
<spam removed>