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

If clip’s loop is turned off, loop_start & loop_end control the start and markers.
If clips’s loop is on: loop_start and loop_end control the loop start/end as expected.

start_marker and end_marker always control start/end markers.

admin Changed status to publish
Attached Files:
0

Are you getting errors in your Error Log?

You will need 2 separate Reaction Mappings, 1 for turning the loop on and another for turning it off.
Each Reaction Mapping should contain 1 Condition each.

admin Changed status to publish
Attached Files:
0

Yes it seems that Buttons / knobs etc don’t actually have .value.
My fault sorry!
You could try using .cur_val instead, this will probably send an error to your log on first press (as it doesn’t exist until after first press) but will work after.

For your Condition it would be better to test if the Loop is True/False.
If the Loop is true, set to to False and vice versa for the other Reaction.

admin Changed status to publish
Attached Files:
0

Just replace .value with .cur_val to make it this:
Button 64 .cur_val == 127

admin Changed status to publish
Attached Files: