Search found 4253 matches

by lnevo
Thu Mar 25, 2021 3:15 pm
Forum: Standard
Topic: temperature probe problem
Replies: 6
Views: 5118

Re: temperature probe problem

Can we do something about that? I know on the cloud hub I have a TempProbeIDs[]={ 5, 4 }; I don't know why I re-ordered them but what can we do to make this more static or override when needed.

I just had to replace my probes and the 10' one which was my Display is now T3. Quite annoying :)
by lnevo
Tue Feb 04, 2020 8:46 am
Forum: Apps
Topic: macOS Catalina (10.15) and Arduino
Replies: 1
Views: 3151

Re: macOS Catalina (10.15) and Arduino

Interesting problem. I've been able to use mostly the web wizard lately, but also because all my contribs have been merged. I would definitely need to maintain compatibility if I were to do any Library changes in the future. You're talking about just managing the ReefAngelFeatures.h ? That could be ...
by lnevo
Fri Oct 25, 2019 6:39 pm
Forum: Development Libraries
Topic: Star and multi-water level support
Replies: 2
Views: 9202

Re: Star and multi-water level support

ReefAngel.AddMultiChannelWaterLevelExpansion(); // MultiChannelWaterLevelExpansion

That should take care of it :)
by lnevo
Fri Jul 12, 2019 4:37 pm
Forum: Standard
Topic: Unexpected end of stream
Replies: 25
Views: 19950

Re: Unexpected end of stream

There is no forwarding in the "Home" network. Forwarding is to get you from your router to the RA inside your network. The portal gets updated because the RA makes an *outgoing* connection to the portal every 5 minutes, but you cannot connect internally to a device (RA) behind your firewal...
by lnevo
Thu Jul 11, 2019 5:25 pm
Forum: Standard
Topic: Unexpected end of stream
Replies: 25
Views: 19950

Re: Unexpected end of stream

I agree 100%
by lnevo
Mon Jun 24, 2019 5:54 pm
Forum: Standard
Topic: Unexpected end of stream
Replies: 25
Views: 19950

Re: Unexpected end of stream

Ok well at least you know that it's working now. So the app is working properly now?

Did you re-setup the port forwarding? It sounded like you went from .2 to .8 or vice-versa. The port-forwarding needs to match that.

Apologies for any miscommunication.
by lnevo
Sat Jun 22, 2019 5:42 pm
Forum: Standard
Topic: Unexpected end of stream
Replies: 25
Views: 19950

Re: Unexpected end of stream

You need to set it static on your router. If you aren't using cloud wifi or star then it's not going to work with your port forwarding..
by lnevo
Mon May 20, 2019 6:21 pm
Forum: Apps
Topic: U-App Repo
Replies: 32
Views: 24412

Re: U-App Repo

Thanks that helped. I had to delete and recreate the bookmark (I think) on my phone. Will try a different way next time.
by lnevo
Mon May 20, 2019 4:07 pm
Forum: Apps
Topic: U-App Repo
Replies: 32
Views: 24412

Re: U-App Repo

Is there an easy way to confirm if I have your version @sbidny?
by lnevo
Thu May 16, 2019 6:47 pm
Forum: Apps
Topic: U-App Repo
Replies: 32
Views: 24412

Re: U-App Repo

Trickling in more updates: Plan to target the timeout issues when you try to update values to their same value next. Similar issue with the relays if they reset. For instance, If i override a port on and my code put's it back to auto but then starts a timer or calls another function, you'll get the...
by lnevo
Thu Apr 11, 2019 8:58 pm
Forum: Apps
Topic: U-App Repo
Replies: 32
Views: 24412

Re: U-App Repo

Great to see some work going on to improve the U-App. Nice updates, I hope to see them merged soon! For the retry, it's super-frustrating that if my screen locks and I open the phone back right to the u-app, it loses the connection to the cloud and issuing any relay commands time-out. I then have to...
by lnevo
Fri Apr 05, 2019 7:09 pm
Forum: How do I code ...
Topic: Can i turn on/off a port based on water level?
Replies: 17
Views: 12441

Re: Can i turn on/off a port based on water level?

= is an assignment not a comparison. So here you are trying to set a function to equal 0. = by itself is used to set the value of a variable int i = 4; for example. What you want is to use a comparison, is it equal to which is represented by == alternatively if you ever need, you can use != along wi...
by lnevo
Fri Apr 05, 2019 7:07 pm
Forum: How do I code ...
Topic: How do i code in a 2nd ph probe
Replies: 4
Views: 4970

Re: How do i code in a 2nd ph probe

CO2Control uses the regular PH probe as a default, but you can also use the expansion by passing an extra argument.

ReefAngel.CO2Control( Box1_Port7,750,770, true );
by lnevo
Wed Apr 03, 2019 4:47 pm
Forum: Addons
Topic: 2nd PH probe?
Replies: 3
Views: 4747

Re: 2nd PH probe?

Yes, should be fine with the phExpansion.
by lnevo
Wed Apr 03, 2019 4:46 pm
Forum: Standard
Topic: New temp probe not working
Replies: 5
Views: 5697

Re: New temp probe now working

Did you reboot after installing it? You could try it in a different port if any difference. Also the temp probes have a digital serial number and the order the probes appear is determined by that. So the new one wont' necessary be T2... You may also need to try one at a time. Either way, it isn't re...
by lnevo
Wed Apr 03, 2019 4:45 pm
Forum: How do I code ...
Topic: Can i turn on/off a port based on water level?
Replies: 17
Views: 12441

Re: Can i turn on/off a port based on water level?

DelayedOn only works after reboot, feeding mode or waterchange mode. What you want to do is set the relay override which you can do with ReefAngel.Relay.Override(Port7, false); That will turn the relay on definitively. However it won't go back on unless you do it manually or add additional logic to ...
by lnevo
Tue Mar 19, 2019 7:05 pm
Forum: How do I code ...
Topic: Can i turn on/off a port based on water level?
Replies: 17
Views: 12441

Re: Can i turn on/off a port based on water level?

Yes. The && is a way of sending AND. So if both conditions are true (number between and inclusive 10-85) then Port 7 will get set to true which will be on. If either of those conditions is not true, (if it's 86 or higher or 9 or less) then the port will get set to false which will then be of...
by lnevo
Sun Mar 10, 2019 10:24 am
Forum: How do I code ...
Topic: Ph Probe reading not right
Replies: 9
Views: 7133

Re: Ph Probe reading not right

It can also be voltage leaking from float switches. It's sometimes a very difficult issue to diagnose, but there is some component in the tank that is interfering.
by lnevo
Sun Mar 10, 2019 10:14 am
Forum: Addons
Topic: Dimming to zero
Replies: 5
Views: 5539

Re: Dimming to zero

Agreed with what binder said. Many drivers do not power off at 0 and you will have to put some code to say when it's below x % cut the power to the led.
by lnevo
Thu Mar 07, 2019 3:10 pm
Forum: How do I code ...
Topic: Ph Probe reading not right
Replies: 9
Views: 7133

Re: Ph Probe reading not right

Sounds like stray voltage then
by lnevo
Thu Mar 07, 2019 12:41 pm
Forum: How do I code ...
Topic: Ph Probe reading not right
Replies: 9
Views: 7133

Re: Ph Probe reading not right

Do the calibration also without hitting ok but seeing what value it gives you when the probe is still in the tank. A lot of things could impact the probe readings. Proximity to other probes/heaters/etc. stray voltage, bad ground, etc.
by lnevo
Tue Mar 05, 2019 8:00 pm
Forum: Standard
Topic: Broken knob
Replies: 4
Views: 6795

Re: Broken knob

Maybe try something like this? https://www.adafruit.com/product/512?gclid=CjwKCAiA2fjjBRAjEiwAuewS_fN_d2XembuFo90Ksl63E7hWxpyuu2XSxHHOgzWXqSZP4Sjcpz5jEBoCRuQQAvD_BwE or from these https://www.ebay.com/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=arduino+joystick+knobs&_sacat=0&LH_Tit...
by lnevo
Sat Feb 16, 2019 8:30 am
Forum: Standard
Topic: Unable to upload code from Mac to RA+ after using USB power
Replies: 3
Views: 6008

Re: Unable to upload code from Mac to RA+ after using USB po

You definitely need the right cable. The RA does not get power from that port, just serial. You should contact Roberto for a replacement. The ones I see on ebay have usb serial dongles attached which I don't think is necessary. Your other alternative is to upgrade to the RA Cloud Wifi module if they...
by lnevo
Sat Feb 16, 2019 8:27 am
Forum: How do I code ...
Topic: Feed Mode for powerhead on 2nd Relay Box
Replies: 3
Views: 4193

Re: Feed Mode for powerhead on 2nd Relay Box

Yes, exactly. Each variable controls one relay box. In each one you need to set the bits you want on/off.
by lnevo
Fri Feb 15, 2019 10:42 pm
Forum: How do I code ...
Topic: Feed Mode for powerhead on 2nd Relay Box
Replies: 3
Views: 4193

Re: Feed Mode for powerhead on 2nd Relay Box

Set this to whatever PortX_Bit you need // Ports toggled in Feeding Mode ReefAngel.FeedingModePorts = Port5Bit | Port6Bit | Port8Bit; ReefAngel.FeedingModePortsE[0] = Port6Bit; ReefAngel.FeedingModePortsE[1] = 0; // Ports toggled in Water Change Mode ReefAngel.WaterChangePorts = Port1Bit | Port5Bit ...
by lnevo
Tue Feb 12, 2019 6:11 pm
Forum: Addons
Topic: DC Pumps that work with RA
Replies: 38
Views: 42661

Re: DC Pumps that work with RA

Did you try using the Daylight/Actinic PWM ports on the relay box if you have an older RA or a bigger stretch of a solution would be getting a STAR and using the builtin PWM on the unit and separating the lights from the pump. One on the dimming module and the other on the builtin
by lnevo
Mon Jan 07, 2019 10:28 pm
Forum: Apps
Topic: UApp Error - Nothing to update
Replies: 20
Views: 16123

Re: UApp Error - Nothing to update

Odd. let's see what Roberto has to say. Sorry about the wrong numbers.
by lnevo
Mon Jan 07, 2019 7:24 pm
Forum: Apps
Topic: UApp Error - Nothing to update
Replies: 20
Views: 16123

Re: UApp Error - Nothing to update

Have you tried in the portal? https://forum.reefangel.com/portal.php ?
by lnevo
Mon Jan 07, 2019 7:23 pm
Forum: Apps
Topic: UApp Error - Nothing to update
Replies: 20
Views: 16123

Re: UApp Error - Nothing to update

Are you sure your Uapp is working properly? You have no portal key setup? or it's configured if you have one?
by lnevo
Mon Jan 07, 2019 10:49 am
Forum: Apps
Topic: UApp Error - Nothing to update
Replies: 20
Views: 16123

Re: UApp Error - Nothing to update

Try to set them manually to something through the web interface http://your.ip.address:2000/mb244,8 // Set StdLightsOnHour to 8am http://your.ip.address:2000/mb245,30 // Set StdLightsOnMinute to 30 minutes http://your.ip.address:2000/mb246,20 // Set StdLightsOnHour to 8pm http://your.ip.address:2000...