AI NANO
Posted: Thu Nov 24, 2011 4:50 am
how I can buy the cable for the AI NANO
after a small accident, I need a new ramp
after a small accident, I need a new ramp
Community discussion about Reef Angel Controllers and reefing related subjects
https://forum.reefangel.com/
Code: Select all
ReefAngel.AI.SetPort(highATOPin);
Code: Select all
if (hour()>=22 || hour()<9)
{
ReefAngel.AI.SetChannel(White,0);
ReefAngel.AI.SetChannel(Blue,MoonPhase()*0.06);
ReefAngel.AI.SetChannel(RoyalBlue,MoonPhase()*0.06);
}
else
{
WhiteValue=PWMSlope(9,0,21,0,3,30,200,3);
BlueValue=PWMSlope(9,0,21,0,8,35,240,8);
RoyalBlueValue=PWMSlope(9,0,21,0,8,35,240,8);
CheckCloud();
ReefAngel.AI.SetChannel(White,WhiteValue);
ReefAngel.AI.SetChannel(Blue,BlueValue);
ReefAngel.AI.SetChannel(RoyalBlue,RoyalBlueValue);
}