You can use the pwm pump to control your LED.
Here's how:
You can define a 6 time intervals where mode will change. The default is
#define INTERVALS {0,6,9,12,18,22}
The value is time of day in hours. midnight, 6am, 9am, noon, 6pm, 10pm for above.
For each of the 4 pumps, you define the pump mode and level.
To control LED, you just need to use H1 mode.
So lets say you want to use channels 2 and 3 for LED. with channel 2 to control main LED and 3 to control moon light.
You can do something like this
#define PUMP2 {{_master,H1,0,0},{_master,H1,0,0},{_master,H1,192,0},{_master,H1,255,0},{_master,H1,255,0},{_master,H1,0,0}}
#define PUMP3 {{_master,H1,5,0},{_master,H1,5,0},{_master,H1,0,0},{_master,H1,0,0},{_master,H1,0,0},{_master,H1,5,0}}
The above will do the following:
for channel 2
midnight - 6am off
6am - 9am ramp from 0 to 75%
9am - noon ramp from 75% to 100%
noon - 6pm 100%
6pm - 10pm ramp down 100% to 0%
10pm - midnight off
for channel 3 moonlight
midnight - 6am 2%
6am - 9am - ramp down from 2% to 0%
9am - noon - off
noon -6pm - off
6pm - 10pm - ramp up from 0% to 2%
10pm - midnight - 2%
FWIW, this is exactly the same way you define a schedule on a Maxspect razor for its 2 channels.