Led feedback

5.66K viewsCSS Questions
0

Hi guys I have currently got most of my controller working however the led lights are not working properly. My lights seem to either all stay on weather they are pressed or not. I would like them to be on while the action is happening and off when not. For example when I press mute the led light up then when mute is off the light goes off etc. is it possible to control the lights ? If so could someone give an example of how to do so please

admin Changed status to publish
Attached Files:
0

Hi Blair,

Try replacing loop_start with:
start_marker
or
end_marker

They should control the ‘set’ the positions that you’re after.

To use the same button to toggle the Loop on and off, you need to add a Condition to your 2 Reactions.

For this example i’m assuming your button is ‘Button 1’ and sends Velocity Values ‘127’ for On and ‘0’ for Off.

You only want Loop On to fire when your Button is pressed On (127), so in the Loop On Reaction, add a condition which says:
Button 1 || .value || == || Input || 127

Now your Loop On Reaction will only fire when your Button sends a Velocity Value of 127.

You can do the same for your Loop Off Reaction but use Velocity Value of 0.

admin Changed status to publish
You are viewing 1 out of 41 answers, click here to view all answers.