ORP not available on Wizard (mac)

Post Reply
erikweitzel
Posts: 11
Joined: Thu Sep 06, 2012 5:52 pm

ORP not available on Wizard (mac)

Post by erikweitzel »

I just bought the ORP probe and was not able to figure out how to control my ozone generator with ORP output from the transducer with the mac Arduino wizard. love the wizard by the way.

I posted this in the wrong section originally. Sorry.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: ORP not available on Wizard (mac)

Post by rimai »

:(
Not there.
Ozone increases ORP, right?
Roberto.
erikweitzel
Posts: 11
Joined: Thu Sep 06, 2012 5:52 pm

Re: ORP not available on Wizard (mac)

Post by erikweitzel »

Yes sir. The ORP transducer should yield a result by which relays can be turned on/off. i.e. if the ORP reads around 450, the ozone relay should be turned off. Kind of like a temperature trigger for a heater. Is this possible to add in?
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: ORP not available on Wizard (mac)

Post by rimai »

How about this:

Code: Select all

if (ReefAngel.Params.ORP>450) ReefAngel.Relay.Off(Port1);
if (ReefAngel.Params.ORP<400 && ReefAngel.Params.ORP>0) ReefAngel.Relay.On(Port1);
Roberto.
Post Reply