S4MK3 & S3: Performance MOD (qml coding)
Comments
-
I have made a video🎥, but the problem is solved.😋
1 -
Ok, my bad... 😆 ☕
1 -
😆a little coffee for you☕️
0 -
Thank you, i'm having it right now... 🍩+☕➔😃🎧
1 -
Can you tell me about (phase meter)?
"app.traktor.decks.X.sync.enabled" "app.traktor.decks.X.sync.phase" "app.traktor.decks.X.sync.tempo"
I want to create an 8 LED visualization🤪
0 -
For the phase meter (like in the Traktor GUI) you better use this:
AppProperty { id: tempoPhase; path: "app.traktor.decks." + deckIdx + ".tempo.phase" }
tempoPhase.value will range from -0.5 to +0.5
you can use this value as a conditional to trigger LED or enable wires to do that. Divide the value in 8 steps of 0.125 like this:
step 1 : (tempoPhase.value <= -0.375)
step 2 : (tempoPhase.value > -0.375) && (tempoPhase.value <= -0.25)
etc.
If you want to use the jogwheel leds, take the spinning led wires group as a template, but instead of the 'beat' conditionals i put in, you use the tempoPhase.value range as a conditional.
1 -
Thank you for the instructions.😁
I will implement this in a few days^^
1 -
Preliminary update:
Turn off the screens with SHIFT+Deck Button. This will not turn the screen black, just stop any output. Turn deck to Live Input first if you want it to be black. I may implement a fade-to-black at a later date.
Enjoy testing.
0 -
I'm done😋, I'll make a video later😊
1 -
Sounds exciting. :)
1 -
Actually you don't need that🤣But it was fun
1 -
Nice. You are my kind of modder... :P
0 -
somehow I can't cope with the knobs.😪
Do you know a suitable link?
right.loop.touch right.move.touch left.loop.touch left.move.touch WiresGroup { enabled: (tempoPhase.value && !endWarningProp.value && move.touch && loop.touch);
1 -
i know that the s4 move and loop encoders are touch sensitive. don't know about the s3.
i will have a look and show you what to do.
1 -
If you place it in 'S3Deck.qml' (or it's dependents) you can use this:
MappingPropertyDescriptor { id: deckLoopSizeTouchProp; path: deckPropertiesPath + ".loop_size.touch"; type: MappingPropertyDescriptor.Boolean; value: false } MappingPropertyDescriptor { id: deckLoopMoveTouchProp; path: deckPropertiesPath + ".loop_move.touch"; type: MappingPropertyDescriptor.Boolean; value: false } Wire { from: "%surface%.loop_size.touch"; to: HoldPropertyAdapter { path: deckPropertiesPath + ".loop_size.touch" } } Wire { from: "%surface%.loop_move.touch"; to: HoldPropertyAdapter { path: deckPropertiesPath + ".loop_move.touch" } }
Then you can use 'deckLoopSizeTouchProp.value' and 'deckLoopMoveTouchProp.value' as a deck-specific conditional.
This works for the s4mk3; if the s3 also has touch-sensitive encoders, then it should work as well.
If you want to use a global variant, which i don't think you need, you can use this (in S3.qml):
MappingPropertyDescriptor { id: deckLeftLoopSizeTouchProp; path: "mapping.state.left.loop_size.touch"; type: MappingPropertyDescriptor.Boolean; value: false } MappingPropertyDescriptor { id: deckLeftLoopMoveTouchProp; path: "mapping.state.left.loop_move.touch"; type: MappingPropertyDescriptor.Boolean; value: false } MappingPropertyDescriptor { id: deckRightLoopSizeTouchProp; path: "mapping.state.right.loop_size.touch"; type: MappingPropertyDescriptor.Boolean; value: false } MappingPropertyDescriptor { id: deckRightLoopMoveTouchProp; path: "mapping.state.right.loop_move.touch"; type: MappingPropertyDescriptor.Boolean; value: false } Wire { from: "s3.left.loop_size.touch"; to: HoldPropertyAdapter { path: "mapping.state.left.loop_size.touch" } } Wire { from: "s3.left.loop_move.touch"; to: HoldPropertyAdapter { path: "mapping.state.left.loop_move.touch" } } Wire { from: "s3.right.loop_size.touch"; to: HoldPropertyAdapter { path: "mapping.state.right.loop_size.touch" } } Wire { from: "s3.right.loop_move.touch"; to: HoldPropertyAdapter { path: "mapping.state.right.loop_move.touch" } }
🦋
1
Categories
- All Categories
- 19 Welcome
- 1.3K Hangout
- 59 NI News
- 706 Tech Talks
- 3.6K Native Access
- 15.2K Komplete
- 1.8K Komplete General
- 4K Komplete Kontrol
- 5.2K Kontakt
- 1.5K Reaktor
- 354 Battery 4
- 783 Guitar Rig & FX
- 403 Massive X & Synths
- 1.1K Other Software & Hardware
- 5.2K Maschine
- 6.7K Traktor
- 6.7K Traktor Software & Hardware
- Check out everything you can do
- Create an account
- See member benefits
- Answer questions
- Ask the community
- See product news
- Connect with creators