triggerPWM(
2, //----------------------Affecting PWM channel 2
analogTravel(1, 10), //-------Checking if analog channel 1 has reached 10% of its range
true, //--------Will blink
100, //---------Will turn on for 100 ms on blinking
900, //---------Will turn off for 900 ms on blinking
This is used to make a potentiometer (set up as a PWMPot() on analog channel 1) turn on the PWM channel as long as its travel is more or similar to 10% of its total travel. If not, PWM is turned of. The effect is that the LEDs we're controlling here will dim down until they abruptly turn off.