YesI can test these as well. I have a couple of use cases. Would we be able to tie them to equipment and into macros and timers? I can build an automatic water change system with these...... maybe.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
YesI can test these as well. I have a couple of use cases. Would we be able to tie them to equipment and into macros and timers? I can build an automatic water change system with these...... maybe.
I have these and they have been in use for a year and a half, and the power monitoring is accurate as well!I just got a few of these in the other day. https://www.amazon.com/gp/product/B074GVPYPY/ref=ppx_yo_dt_b_asin_title_o00_s01?ie=UTF8&psc=1
They weren't intended to be used for the tank, but if they can, that would be great.
I liked the smaller form factor, with included energy monitoring.
BRS double junction probe
Yes. There’s no common protocol that we can use to support multiple vendor. Tplink was something others had brought up earlier, it’s available in us , uk and Australia, which is why I went with this. They have energy monitoring version as well ...So is the smart plug driver TP link specific?
There’s lot going on here . Can you start a thread? The solenoid thing should work , I need the details of sensor circuit. I’m using Milwaukee , American marine and atlas scientific probes . They are all around 34-50$ on amazonIs there any manual or schematic and installation instructions that you could give me im interested in building one for my tank and I would appreciate it if you had anything that coul help me to understand it a little better. That site that says calkulate is hard to understand but if I had a little guadiance i think I could figure it out. Thanks in advance.
Also
Ranjib, I cannot get my ATO to work but I didn't really follow the adafruit build instructions. Instead I have a water valve solenoid and an electric float switch with two wires coming out of it and i was thinking that I could use reef pi to activate the solenoid (it only needs 5 VDC 100ma on the gate of a mosfet) from the reading that the two wire float sensor gives off. If sensor Low on water (open circuit) or once water reaches high level it would be a closed circuit. Then set it to activate 5 volts on an outlet in turn using the pi to activate the gate of a mosfet to complete the circuit of the RO solenoid? I feel like it should work just fine. The way I configured it it wont activate the mosfet or it activates it and wont turn it off. Its not reading the inlet. I even tried to set a jack and set to RPI driving on pin 5 and reading on pin 23 but still no luck. any help would be great and also do you have a link to a cheap but good Pico PH probe?
Thanks for the Welcome ill be around for a while until I get this working. Im very determine.LOL
Yeah. They use a RESTful API to interact with the controller..I can post a link in a bit..
NiceReef-Pi may have saved my tank from a crash...
I was taking a look at my ATO monitoring graph on Adafruit IO yesterday and noticed it hadn't run in over 24hrs. I had topped off the reservoir the day before, so no issues there. When I got home from work, I took a look in my sump and it was about 3/4" low. Closer inspection of the optical sensor on my Osmolator showed that it had some buildup on it that was preventing it from operating properly. Cleaned it off and it turned the ATO on immediately.
I understand controlling this is easy, but my concern is this has the typical problem of being specific for this vendor. So, unless this is very popular, affordable and available across different regions, it won’t be be something we can recommend. It will be harder to maintain (test and improve) various drivers that I don’t personally use ... let’s see if there’s enough interest on this power barHere's a quick look at their API: https://www.digital-loggers.com/rest.html
Really all we'd care about are what these examples show (turn on/off and status):
Outlet/relay control examples. Relays are zero based (0-7).
Switch relay 3 on. (true=on false=off)
curl -u admin:1234 -X PUT -H "X-CSRF: x" --data "value=true" --digest "http://192.168.0.100/restapi/relay/outlets/2/state/" .
Turn all relays on.
curl -u admin:1234 -X PUT -H "X-CSRF: x" --data "value=true" --digest "http://192.168.0.100/restapi/relay/outlets/all;/state/"
Turn relays 1 and 5 on.
curl -u admin:1234 -X PUT -H "X-CSRF: x" --data "value=true" --digest "http://192.168.0.100/restapi/relay/outlets/=0,4/state/"
Get the status of relay/outlet 1
curl -k -u admin:1234 -H "Accept:application/json" --digest https://192.168.0.100/restapi/relay/outlets/2/state/
Get the status of all relays
curl -k -u admin:1234 -H "Accept:application/json" --digest https://192.168.0.100/restapi/relay/outlets/all;/state/
I have some python code for a simple app I wrote to control it here:
https://github.com/dmolavi/dlipower
A more universal answer would to be control of Sonoff devices...there are outlets, relays, temp controls, humidity controls etc...the devices can be flashed easily with 3rd party firmware as well. Mostly based off esp 8266 hardware and Sonoff is universally available and used in a ton of smarthome applications and have a fairly easy API as well.I understand controlling this is easy, but my concern is this has the typical problem of being specific for this vendor. So, unless this is very popular, affordable and available across different regions, it won’t be be something we can recommend. It will be harder to maintain (test and improve) various drivers that I don’t personally use ... let’s see if there’s enough interest on this power bar
all of them has this. tplink, idevice .. all of them have whole range of sensors, outlets, garage door opener, sprinkler etc.. on top of that there are meta players like google home and apple home kit .. all of them has the same offering but little bit different. What I am looking for is what will cover most audience, meet the quality standard for us (10A for example, for outlets) and preferably opensource friendly (none that im aware of).A more universal answer would to be control of Sonoff devices...there are outlets, relays, temp controls, humidity controls etc...the devices can be flashed easily with 3rd party firmware as well. Mostly based off esp 8266 hardware and Sonoff is universally available and used in a ton of smarthome applications and have a fairly easy API as well.
https://www.itead.cc/smart-home.html
Google tasmota and espeasy for alternative firmware and such
That is indeed good information. Let me read about it. I'll definitely do the necessary if this is a good choice for usSonoff alternative firmwares are opensource...look up ESPeasy...and sonoff switch modules are rated 10 amps and 16 amps...before I found reef pi i was seriously considering using sonoffs...the best thing is with the alternative firmware allow you to control on your own network and not depend on some vendors "cloud" where you are tied to their app and servers
Thats nice to here . I hope you got value for your money from this build. We (reef-pi comunity) certainly got a whole lotta help from your guidance.In other news the 2.4 release has been stable and working well for me, especially the pca9585 pwm.
3 temp probes, 2 controlling heaters, 4 channels of light dimming, 8 equipment outlets and several macros, along with adafruit io feeds and mem usage has been a steady 8 percent and cpu usage negligable.
Got called to work out of town and forgot to order my pH probe, so when it finally gets here I will load 3.0 alpha and test the acid range of pH driver in freshwater!