Fyi. Ebay has the serial orp stamp for 9.00. Looks like the last of the older stamps.
I am pretty sure ORP and pH are exactly the same circuit (and perhaps probe), but just a difference in reading range.
If you look at neptune apex, ph and ORP use the same BNC connector and you can switch mode in configuration settings.
Anyone tried to use a ph probe on atlas ORP stamp? if it works, then it might be worthwhile to get the orp stamp.
Having a little trouble wondering if I could get an assist. I'm getting a compilation error.
Utils.ino: In function 'void initializeConf () ':
Utils.ino:65: error: expected ' } " before ';' token
Utits.ino: 68 : error : too many initializers for ' ORec_t'
I just tried it on my main controller and test controller and both work fine. What is the error message?
d0ughb0y in controller setup, under Misc I get an error when I try to save something.
The page at iport say
error
I did add CalRX and LEDs Fan control to it awhile back in your early code with no problem, I should take it out and see if that is the problem.
D0ughb0y,
I am often getting an apex error when i look at the outlet logs. This error continues until I reset the controller.
M
void checkCalRX(){
if (getAtlasAvg(phdata[1])>= conf.carxhigh && conf.outletRec[CalXOut].mode==_auto) {
_outletOn(CalXOut);
}
if (getAtlasAvg(phdata[1])<= conf.carxlow && conf.outletRec[CalXOut].mode==_auto) {
_outletOff(CalXOut);
}
}
void checkCalRX(){
if (ph[1]->getAvg()>= conf.carxhigh && conf.outletRec[CalXOut].mode==_auto) {
_outletOn(CalXOut);
}
if (ph[1]->getAvg()<= conf.carxlow && conf.outletRec[CalXOut].mode==_auto) {
_outletOff(CalXOut);
}
}