Wp40 feed mode
Posted: Fri Jun 07, 2013 12:59 pm
I have my wp40 hooked up to the PWM port on the relay box and when I select feed mode it doesn't change it. How can I set the PWM ports on the relay box to turn off during feed mode?
Community discussion about Reef Angel Controllers and reefing related subjects
https://forum.reefangel.com/
Code: Select all
if( ReefAngel.DisplayedMenu==FEEDING_MODE )
{
ReefAngel.PWM.SetActinic(0);
ReefAngel.PWM.SetDaylight(0);
}
You could do something like this:jjdezek wrote:I have my wp40 hooked up to the PWM port on the relay box and when I select feed mode it doesn't change it. How can I set the PWM ports on the relay box to turn off during feed mode?
Code: Select all
if ( ReefAngel.DisplayedMenu == FEEDING_MODE ) {
ReefAngel.PWM.SetDaylight(0);
} else {
ReefAngel.PWM.SetDaylight(100);
}