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.
The fix for the ph reading so we can get the calibrated value and not the uncalibrated one, ph randomly registering zero and also to I have found that when using mqtt - in order for reef-pi to connect to the mqtt broker on another device reef-pi has to be reloaded for it to work otherwise it just sits there and says it can’t connect to the mqtt ip addressSometime in late July. Is there anything specific you are looking for ?
Got it. The mqtt issue happens only when settings are updated ? Or always after reboot or just randomly ?The fix for the ph reading so we can get the calibrated value and not the uncalibrated one, ph randomly registering zero and also to I have found that when using mqtt - in order for reef-pi to connect to the mqtt broker on another device reef-pi has to be reloaded for it to work otherwise it just sits there and says it can’t connect to the mqtt ip address
Can I rephrase this? Does anyone know how to connect a zetlight to reefpi? I am debating on swapping out my viparspectra with a TMC V2 illuminare (appears to be a rebranded zetlight 6600a) and it has a 3.5mm jack that allows it to be connected to an apex when the light is put into slave mode........but I don't know how to do this to reef pi. Want to have the same control I have on the viparspectra with a Michael lane adapter board, just don't like the fact I have to have the viparspectra so high off the tank and have my white channel at 1%.Hi
Has anyone tried to connect a zetlight to the reef pi?
I saw it has a 3.5 mm input jack. Almost like the kessils
I take it back, don't worry as I won't be using this light! Set it up to see what it's like and it's like having a disco in the tank and nowhere near the viparspectra. I thought the viparspectra had too much light leaking into my room......but this TMC branded zetlight makes it impossible to look at the tank from my settee.Can I rephrase this? Does anyone know how to connect a zetlight to reefpi? I am debating on swapping out my viparspectra with a TMC V2 illuminare (appears to be a rebranded zetlight 6600a) and it has a 3.5mm jack that allows it to be connected to an apex when the light is put into slave mode........but I don't know how to do this to reef pi. Want to have the same control I have on the viparspectra with a Michael lane adapter board, just don't like the fact I have to have the viparspectra so high off the tank and have my white channel at 1%.
My only other option is to pull the lenses to try and blend the light better and swap out some of the LEDs on the white channel.
But would like to give the zetlight/V2 illuminare a go in the meantime to see if it is any better.
One small feature that would be nice is individual hysteresis for heating VS cooling.Sometime in late July. Is there anything specific you are looking for ?
Yes.One small feature that would be nice is individual hysteresis for heating VS cooling.
With the way heaters are silent, fans are not, heaters usually have a secondary control loop, fans do not, heaters are switched at mains voltage while fans are (or at least can be with reef pi) switched at 5v or 12v or whatever with a simple transistor or not much more, it would be nice to have a moderately high hysteresis for heaters and a much smaller one for coolers,or at least the option to do this.
Technically, it's already possible by just using two temperature entities on the same probe, one running heating, the other cooling, but that destroys the nice heater/cooler runtime graph in the dashboard.
Not a huge deal and not sure how many others even care, but it would be a nice little detail
Just for understanding: was the color distribution very uneven or was it flickering ? I’m guessing it was the first.I take it back, don't worry as I won't be using this light! Set it up to see what it's like and it's like having a disco in the tank and nowhere near the viparspectra. I thought the viparspectra had too much light leaking into my room......but this TMC branded zetlight makes it impossible to look at the tank from my settee.
I will just have to make some led changes to the viparspectra.
Thanks all and happy reefing.
The colour distribution was all over the shop and far too much shimmer lines, it is literally like a disco with light flicking off in every direction.Just for understanding: was the color distribution very uneven or was it flickering ? I’m guessing it was the first.
Analog Inputs via an ADS1115 can be made to work like that as well. There is a transformation formula field in the pH Tab. I'm pretty sure one can find an easy formula to convert the input to something resembling a two state system and then use the "raising" and "lowering" mechanisms. Something like:Hi all! there's a way to add some digital inputs to a Raspberry Pi with Reef-Pi? I've tryed with an AD1115 but it would be better to have a 0/1 input type.
Thank you very much!
Simone
sign(v-3.3/2)
(v-3.3/2)/abs(v-3.3/2)
Thank you very much @Sral! I'll do some test, I already have an ADS1115 on my CPU Board so I'll give it a try! :)Analog Inputs via an ADS1115 can be made to work like that as well. There is a transformation formula field in the pH Tab. I'm pretty sure one can find an easy formula to convert the input to something resembling a two state system and then use the "raising" and "lowering" mechanisms. Something like:
might work, if the maths there knows the sign function and if the value from the ADS1115 is a voltage between 0 and 3.3. Otherwise you might use:Code:sign(v-3.3/2)
Again, might work if the maths knows the absolute function as exactly that.Code:(v-3.3/2)/abs(v-3.3/2)
All GPIO pins on the PI can be used as Digital Inputs. You establish the Inlets under Admin->Connectors and then use the ATO tab.
always after reboot. Have to click on reload and then it works.Got it. The mqtt issue happens only when settings are updated ? Or always after reboot or just randomly ?
That’s my standard for changing anything in ReefPi. Turn it on, save and reload :rolling-on-the-floor-laughing:always after reboot. Have to click on reload and then it works.
Also I see a lot of people having issues first setting it up, I managed to get around that issue myself by turning mqtt in but not configure anything, hit save and then reload and then I could configure it
Is reef-pi configured to start after networking service ? The issue is very similar to WiFi based drivers, and should be easily fixable by configuring the systemd unit.always after reboot. Have to click on reload and then it works.
Also I see a lot of people having issues first setting it up, I managed to get around that issue myself by turning mqtt in but not configure anything, hit save and then reload and then I could configure it
Sorry for late reply just got back from working away, No I haven’t changed, was installed initially via robs script. How does one do this? I tried searching the forum threads but couldn’t find anything relevantIs reef-pi configured to start after networking service ? The issue is very similar to WiFi based drivers, and should be easily fixable by configuring the systemd unit.
As always I find something after I post lolCode:
Code:[Unit] Description=raspberry pi based reef tank controller After=network-online.target Wants=network-online.target [Service] ExecStart=/usr/bin/reef-pi daemon -config /etc/reef-pi/config.yaml WorkingDirectory=/var/lib/reef-pi Restart=always RestartSec=90 StartLimitInterval=400 StartLimitBurst=10 [Install] WantedBy=multi-user.target