Is it possible to blend between two colours on the LEDs on the PBF4? I am finding the editor very confusing and I can't find where this option may be, or any clear outline of if it's possible. For instance I would want the LED on fader 1 to be blue when the fader is at 0 and blend to orange as I move the fader up.
Blending between colours on LEDs - PBF4
Replies (15)
There is a feature that does this called the functions led_color_min() , led_color_mid(),led_color_max().
Here we talk about it in a forum thread: https://forum.intech.studio/t/led-color-min-mid-max/258/4.
Generally you want to use it the following way:
- Under init/setup event of your fader add the two colors you'd want to blend inbetween as min and max using the above functions in a Code Block.
- Now your fader's LED should change color and not brightness when you move it!
@user that didn't seem to do anything. it's just changing the intensity of one colour?
Oh true, you need the mid value as well.
I'll just upload the example to the cloud under the name "Color feedback fader", please check it.
Now you should be able to find it.
wait it is working! i missed the 'num' part
where is this?
ah thanks
just using this code seems to work fine
led_color_min(num, 1, 255, 0, 0) led_color_max(num, 1, 0, 0, 255)
If that works for you that's great!
I would suggest using mid for the second code to not have to change anything else.
View on Discord
This post is from the Intech Studio Discord community.


