If you wanted to set all LED's to the same brightness, you could ...
Code:
LoopCount  VAR BYTE

FOR LoopCount = 0 to 15         ; 16 channels
    DutyVars(LoopCount) = 50    ; 50% (0-100)
NEXT LoopCount
<br>