Any way to manually calibrate salinity?
Any way to manually calibrate salinity?
My probe is in place - I would rather not have to crawl in there to remove it. I know my tank is at 37.5 PPT (I know, a little high).
Re: Any way to manually calibrate salinity?
There should definitely be a way
I believe there's a memory location that stores the calibration value. You just have to tweak it till you get your salinity to dispaly 37.5... I'm sure you could do the math to figure out the number as well.

Re: Any way to manually calibrate salinity?
It's an int value so, you can use your web browser to find out what you have now:
http://ipaddress:2000/mi247
Then to save a new value, you can use this:
http://ipaddress:2000/mi247,2550
This will save 2550 to memory location 247
The trick is that you must reboot after you save the new value.
Also, another alternative is using hard code in your setup() section after ReefAngel.Init();
http://ipaddress:2000/mi247
Then to save a new value, you can use this:
http://ipaddress:2000/mi247,2550
This will save 2550 to memory location 247
The trick is that you must reboot after you save the new value.
Also, another alternative is using hard code in your setup() section after ReefAngel.Init();
Code: Select all
ReefAngel.SalMax=2550;
Roberto.
Re: Any way to manually calibrate salinity?
rimai wrote:It's an int value so, you can use your web browser to find out what you have now:
http://ipaddress:2000/mi247
Then to save a new value, you can use this:
http://ipaddress:2000/mi247,2550
This will save 2550 to memory location 247
The trick is that you must reboot after you save the new value.
Also, another alternative is using hard code in your setup() section after ReefAngel.Init();Code: Select all
ReefAngel.SalMax=2550;
Perfect! Thank you so much.
Re: Any way to manually calibrate salinity?
rimai wrote:It's an int value so, you can use your web browser to find out what you have now:
http://ipaddress:2000/mi247
Then to save a new value, you can use this:
http://ipaddress:2000/mi247,2550
This will save 2550 to memory location 247
The trick is that you must reboot after you save the new value.
Also, another alternative is using hard code in your setup() section after ReefAngel.Init();Code: Select all
ReefAngel.SalMax=2550;
Anyway to NOT have to reboot?
Re: Any way to manually calibrate salinity?
When using internal memory?
If so, try adding this to the loop():
If so, try adding this to the loop():
Code: Select all
ReefAngel.SalMax=InternalMemory.SalMax_read();
Roberto.