Search found 23 matches

by SaltyGXP
Sun May 12, 2013 1:49 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

Thanks for this thread it opened up A little more what I need to know to do what I need to do with my jebaos. Can you break down what exactly the code you wrote is doing at what times so I can get a better idea of what to do in my situation thanks. For night mode can I just add a constant mode with...
by SaltyGXP
Sat May 11, 2013 4:08 am
Forum: Development Libraries
Topic: Wave patterns
Replies: 136
Views: 280125

Re: Wave patterns

So I've scanned throughout the last 5 or so pages and didn't see it. Is there ant way we can get Lagoon mode add to the wave patterns?

Thanks
Dustin
by SaltyGXP
Sun May 05, 2013 7:57 pm
Forum: For New Members
Topic: Help!!!!Heater not kicking on
Replies: 4
Views: 3348

Re: Help!!!!Heater not kicking on

rimai wrote:Replace this:

Code: Select all

ReefAngel.StandardHeater( Port5 );
With this:

Code: Select all

ReefAngel.StandardHeater( Port5,775,780 );

Thank you very much for the help sir. :mrgreen:
by SaltyGXP
Sun May 05, 2013 7:45 pm
Forum: For New Members
Topic: Help!!!!Heater not kicking on
Replies: 4
Views: 3348

Re: Help!!!!Heater not kicking on

rimai wrote:Code looks good.
Have you tried hard code settings?
no............I just hooked it up today its been sitting the past week because of work. I haven't had anytime to look anything else up and learn other than my jebao coding. anyway you can show me what i need to add?
by SaltyGXP
Sun May 05, 2013 7:26 pm
Forum: For New Members
Topic: Help!!!!Heater not kicking on
Replies: 4
Views: 3348

Help!!!!Heater not kicking on

For some reason my heater isn't kicking on. its set to kick on at 77.5 and off at 78 on port 5 here is my code. I'm using the wizard with the internal memory option and then putting my custom code in. #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #includ...
by SaltyGXP
Thu May 02, 2013 5:49 pm
Forum: Ask anything here
Topic: RA jebao harness
Replies: 3
Views: 2791

Re: RA jebao harness

Nvm I got it
by SaltyGXP
Thu May 02, 2013 5:47 pm
Forum: Ask anything here
Topic: RA jebao harness
Replies: 3
Views: 2791

Re: RA jebao harness

rimai wrote:Center positive
Sweet thanks rimai! Any ideas on which spot on the pcb is + and -?
by SaltyGXP
Thu May 02, 2013 5:08 pm
Forum: Ask anything here
Topic: RA jebao harness
Replies: 3
Views: 2791

RA jebao harness

Befor I got my RA I had an Apex so I modded the jebao to work with the Apex. In doing so I cut the wall wart plug thar hooked to the jebao controller. So now I need to solder the jebao wall wart cable to the RA cable pcb . My issue is not knowing weather the jebao cable is center + outer - or center...
by SaltyGXP
Tue Apr 30, 2013 5:24 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

lnevo wrote:Looks good!!!
I can't thank you enough for all your help and fast reply's thanks so much. :mrgreen:
by SaltyGXP
Tue Apr 30, 2013 1:26 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

Your other option instead of changing the statement is to just remove it so that your last IF test is just an else... this way it becomes the default if none of your other tests qualify. so like this? void loop() { ReefAngel.ActinicLights( Port1 ); ReefAngel.DayLights( Port2 ); ReefAngel.DayLights(...
by SaltyGXP
Tue Apr 30, 2013 12:28 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

Ok so heres what Ive got. I added Port 8 to the feed mode aswell so the jebao will shut down during feedings. #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RTC.h> #include <InternalEEPROM.h> #include...
by SaltyGXP
Tue Apr 30, 2013 8:06 am
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

rimai wrote:Just a heads up too....
NTM is a mode that takes about 2.5 hours to complete.
The first 45min, it is nothing more than short pulses.
So, 10 minutes of NTM is not going to give you any more than short pulses

I didn't know that lol.....I'll change it then :mrgreen:
by SaltyGXP
Tue Apr 30, 2013 7:40 am
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

Better. But your if statements are wrong. You can't have hour()>=18,01 like that..you'd have to do hour() && minute() comparison... OK so I'm pretty sure this isn't what you are talking about. can you give me an example please. I searched and cant find anything or i missed it. thanks very m...
by SaltyGXP
Tue Apr 30, 2013 7:31 am
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

Better. But your if statements are wrong. You can't have hour()>=18,01 like that..you'd have to do hour() && minute() comparison... OK so I'm pretty sure this isn't what you are talking about. can you give me an example please. I searched and cant find anything or i missed it. thanks very m...
by SaltyGXP
Mon Apr 29, 2013 10:37 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

Re: multiple wave pattern

No...it doesnt work that way... First off you cant have a function (ie ReefCrestMode() ) inside another function (ie loop() ) Also the wave modes are now part of the libraries. Also you have to set a port that you want to use with the result of your wavefunction... So look up some of the examples t...
by SaltyGXP
Mon Apr 29, 2013 7:05 pm
Forum: How do I code ...
Topic: multiple wave pattern
Replies: 17
Views: 11184

multiple wave pattern

OK so I inserted some wave pattern codes does this look right? I'm not sure if there needs to be something in the void setup or void loop section or not. If so can you help me with that? The Things I added or changed are in bold #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi....
by SaltyGXP
Sun Apr 28, 2013 12:31 pm
Forum: Ask anything here
Topic: First post
Replies: 8
Views: 5683

Re: First post

lnevo wrote:Global is where you put variables that are common in setup() and loop() and other functions you may want later.
Ahhhh.....thats why it says #include. I'm goning to have this coding stuff down by the end of the week. I kidd I kidd lol :lol:
by SaltyGXP
Sun Apr 28, 2013 11:16 am
Forum: Ask anything here
Topic: First post
Replies: 8
Views: 5683

Re: First post

http://arduino.cc/en/Tutorial/BareMinimum Thanks Roberto. Ok so VOID SETUP means the start of the setup code and VOID LOOP means the start of the loop code. And global is stuff you want displayed on the RA screen? I'm feeling 1000% better about this already. I feel like a damn kid lol. Ive never in...
by SaltyGXP
Sun Apr 28, 2013 10:07 am
Forum: Ask anything here
Topic: First post
Replies: 8
Views: 5683

Re: First post

Ok so I understand this and why it works ReefAngel.PWM.SetActinic(TunzeLongPulse(30, 60, 4, true)); ReefAngel.PWM.SetDaylight(TunzeLongPulse(30, 60, 4, true)); the code states there are two pumps in sync with each other going for 30%-60% and taking 4 seconds to do so. What I don't get is the section...
by SaltyGXP
Sun Apr 28, 2013 9:47 am
Forum: For New Members
Topic: Switched to a Reef Angel
Replies: 3
Views: 3931

Re: Switched to a Reef Angel

So I have been running one of the other guys controller for several months when my son "made me a deal". So I now have a Reef Angel running on my 90gal DT. After several hours of playing, I was able to get everything up and running. So after a lot of reading and playing with the new "...
by SaltyGXP
Sun Apr 28, 2013 6:54 am
Forum: Ask anything here
Topic: First post
Replies: 8
Views: 5683

Re: First post

The best thing to do is take the code that's here, print it out and type it in yourself. Figure out what each line does and add a comment to the line explaining it. After a while you'll have it down. --Colin Simple yet effective I like it. Did't even think about doing it that way :mrgreen: . Thank ...
by SaltyGXP
Sat Apr 27, 2013 2:24 pm
Forum: Ask anything here
Topic: Temp Probe not working
Replies: 3
Views: 2700

Re: Temp Probe not working

He ended out having to unplug it and plug it back in like 6 times. Now it's working without any issues.
by SaltyGXP
Sat Apr 27, 2013 2:08 pm
Forum: Ask anything here
Topic: First post
Replies: 8
Views: 5683

First post

Hey everyone. I'm the new guy here. Just ordered my RA+ yesterday. I know there is tons on info on here for coding and all but has anyone made an in depth video on coding? I'm the kind of guy that can read and read and still not get it lol. I'm more of a visual and hands on kinda guy. At some point ...