se volete personalizzare quali prese devono essere accese o spente durante il feeding mode, water change
basta inserire le seguenti linee nel setup():
void setup()
{
ReefAngel.Init(); //Initialize controller
// Set the ports that get toggled on & off during the following modes
// To enable a port to be toggled, place a 1 in the appropriate position
// Uncomment and update as needed
// Port 87654321
//ReefAngel.FeedingModePorts = B10011100;
//ReefAngel.WaterChangePorts = B10011100;
//ReefAngel.OverheatShutoffPorts = B00001100;
//ReefAngel.LightsOnPorts = B00000110;
}
Se per esempio volete spengere le pompe di movimento durante la fase di feeding-mode, prendiamo per esempio che le pompe di movimento sono la 3 e 4, basterā fare in modo che siano a ZERO.
void setup()
{
ReefAngel.Init(); //Initialize controller
// Set the ports that get toggled on & off during the following modes
// To enable a port to be toggled, place a 1 in the appropriate position
// Uncomment and update as needed
// Port 87654321
ReefAngel.FeedingModePorts = B10010000;
//ReefAngel.WaterChangePorts = B10011100;
//ReefAngel.OverheatShutoffPorts = B00001100;
//ReefAngel.LightsOnPorts = B00000110;
}
OK ?
|