Yes. I do not use Easy-C but i can't believe it'll be too different from normal coding, cept it has nice buttons
The code would put a 0 or a 1 into the value of the LED you want to set (1 = on 0 = off)
Suposing you want to control Pwm1_green, just do this
Code:
if (something_is_true)
Pwm1_green=1;
else
Pwm1_green=0;
or whatever you variation of that you want to do. It can also be used to set the Relay LEDs.