I'm using it on my Google Pixel 3xl with chrome
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.
I'm using it on my Google Pixel 3xl with chrome
I'm trying to find my Samsung tablet. When I do, I'll let you know what happens on itAre there any settings in reef-pi that I may have missed or on the tablet? I renamed my pi 220dt so I typed in http://220dt.local and just get a blank screen. It works fine from a computer just nothing else.
Thank you
I'm trying to find my Samsung tablet. When I do, I'll let you know what happens on it
No setting change, however, I just use the ipaddress...
So I will have to give that a try for instance I would do http://192.168.10.41:8080.local
Wonderful!!!!I use react and noticed you guys also use react but have no backed experience in GO progrmaing language.
Here is my very rough idea let me know what you think thanks
That looks really good (although I like the solid black background better). It's quite a bit more than just a theme though. On the other hand, the dasboard UI could use a bit of love. reef-pi already has api endpoints that can support many of the data elements you have on this mock up.
I can help with some of the backend go code to expose more data if you take a swing at this. I never know how my available time is going to change, but the key would be to start small and make incremental improvements.
Thanks for the help I figured it out if I only type the IP address it works no need to type HTTP:// somewhere I read I was supposed to but that does not work.No setting change, however, I just use the ipaddress...
That looks bloody fantastic.V3 Full image
ERROR: equipment subsystem: Failed to sync equipment hs300 outlet 1 . Error: can't update 1 - can't get output pin
ExecStartPre=/usr/bin/nm-online --quiet --timeout=20
[Unit]
Description=raspberry pi based reef tank controller
After=multi-user.target
[Service]
ExecStartPre=/bin/sleep 20
So playing with a HS300 and its no workie after a reboot, I see some comments from @Ranjib mentioning this but the outlet once defined will not work unless I restart the service after boot. In the journal I see this error message -Code:ERROR: equipment subsystem: Failed to sync equipment hs300 outlet 1 . Error: can't update 1 - can't get output pin
If you restart the service it comes up clean, this is a new load with the latest version, it's the order of the startup, it may be trying to come up before network is up which would cause the issue. I will do some more digging and see if I can pinpoint the issue, unless there is already a fix.
Are there any settings in reef-pi that I may have missed or on the tablet? I renamed my pi 220dt so I typed in http://220dt.local and just get a blank screen. It works fine from a computer just nothing else.
Thank you
So I will have to give that a try for instance I would do http://192.168.10.41:8080.local
I agree with you, but I prefer to have more than "one road" to access.If you want restricted access from outside you can simply setup a VPN oln your
Hmm, this seems fragile. Drivers should not depend on communicating to block the rest of Reef-Pi from starting and the output from working. I'd need to look at the driver for this again to see if there is a simple way to avoid it if it needs to detect something about the hardware.
I think I'd like to see the driver initialization process changed to include an outcome instead of just success or failure. Network based drivers could return a delay/retry result and reef-pi could try again after the requested delay for some number of attempts.I've seen this before I am having to do the network manager trick on my mythtv recording setup, I use network tuners and systemd brings up the application before bringing up the network, this is no different. I see it in the logs that reef-pi is starting up before the network stack and errors out on the hs300 inputs. There are lots of ways to address it, I've listed a couple and will do some more testing tonight, the one that I am using for myth is the first one but that requires you using network manager which is not installed by default and requires lots of tweaking. I am leaning towards the second option, its also working but going to see on a default install if it will work and also if there are any other alternatives that would be better.\
I think I'd like to see the driver initialization process changed to include an outcome instead of just success or failure. Network based drivers could return a delay/retry result and reef-pi could try again after the requested delay for some number of attempts.
This would allow non-network related drivers to initialize and keep things going, while the network based drivers wait until their requirements are met.
ExecStartPre=/bin/sh -c 'until ping -c1 google.com; do sleep 1; done;'