calcium reactor and vortech questions

Post Reply
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: calcium reactor and vortech questions

Post by rimai »

Yes, you can control any vortech with ES driver.

The pH control can be done with something like this:

Code: Select all

void loop()
{
    //  ... rest of code goes here

    if ( ReefAngel.Params.PH < 650 )    ReefAngel.Relay.On(Port2);
    if ( ReefAngel.Params.PH >= 680 )    ReefAngel.Relay.Off(Port2);

    ReefAngel.ShowInterface();
}
Roberto.
Post Reply