What I'd like to do is write the menu functions to allow me to manually turn on the led channels then put them back to the state they were at before me touching them. This would allow me to turn the whites on for a bit if I needed to display something... I'd like to be able to do this from the joystick on the controller as well as on the android app...//Light Schedule
ReefAngel.PWM.SetChannel(NW1,PWMParabola(14,0,19,0,15,80,15));
ReefAngel.PWM.SetChannel(NW2,PWMParabola(14,30,19,30,15,90,15));
ReefAngel.PWM.SetChannel(NW3,PWMParabola(15,0,20,0,15,80,15));
ReefAngel.PWM.SetChannel(Blue,PWMParabola(13,30,20,30,15,85,15));
ReefAngel.PWM.SetChannel(RB,PWMParabola(12,00,22,0,15,90,15));
ReefAngel.PWM.SetChannel(Red,PWMParabola(14,0,20,0,15,85,15));
ReefAngel.PWM.SetActinic(PWMParabola(13,30,20,30,15,85,15));
ReefAngel.PWM.SetDaylight(PWMParabola(13,30,20,30,15,95,15));
My actinic leds are all on the pwm expansion. My refuge led is on a powered port (8 port multistrip). It just needs a toggle of sorts.
Here's the menu functions I'm working on...
void MenuEntry6() //"Actinic LEDs"
{
}
void MenuEntry7() //"Night LEDs"
{
}
void MenuEntry8() //"Refuge LEDs"
{
}
void MenuEntry9() //"100% Daylight LEDs"
{
}