Search found 8 matches

by abfranklin3
Mon Aug 26, 2013 9:33 am
Forum: How do I code ...
Topic: PWM and Overheat
Replies: 10
Views: 5942

Re: PWM and Overheat

So, my lights turn off once my overheat temp setting is reached. How do I get them to turn back on once the temperature drops back down to a normal level? My lights are standard T5's using the relay. Right now I have to manually press the overheat clear button.
by abfranklin3
Mon Aug 19, 2013 5:19 pm
Forum: How do I code ...
Topic: Newb needs help
Replies: 5
Views: 2531

Re: Newb needs help

Figured it out! Changed my code to this: void loop() { ReefAngel.DosingPumpRepeat( Port1,0,120,20); // Add water for 20 seconds every 120 minutes with 0 minutes offset ReefAngel.StandardLights( Port2,19,30,9,30 ); ReefAngel.StandardLights( Port3,9,30,19,30 ); ReefAngel.StandardLights( Port4,10,0,19,...
by abfranklin3
Mon Aug 19, 2013 4:23 pm
Forum: How do I code ...
Topic: Newb needs help
Replies: 5
Views: 2531

Re: Newb needs help

Thanks! I actually tried that too and forgot to mention. The Jebao still didn't work plugged into the relay box, so it must be in the code I guess. Any suggestions?
by abfranklin3
Mon Aug 19, 2013 3:50 pm
Forum: How do I code ...
Topic: Newb needs help
Replies: 5
Views: 2531

Re: Newb needs help

#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 <RA_NokiaLCD.h> #include <RA_ATO.h> #include <RA_Joystick.h> #include <LED.h> #include <RA_TempSensor.h> #inc...
by abfranklin3
Mon Aug 19, 2013 3:49 pm
Forum: How do I code ...
Topic: Newb needs help
Replies: 5
Views: 2531

Re: Newb needs help

Apparently I either don't know or don't have the access to post my code....
by abfranklin3
Mon Aug 19, 2013 3:46 pm
Forum: How do I code ...
Topic: Newb needs help
Replies: 5
Views: 2531

Newb needs help

First, I apologize for asking a question that has probably been asked a million times. I've searched and searched the forums and have yet to find any answer to my specific problem. It probably doesn't help that I'm a total newb to writing code, so I probably wouldn't recognize the answer if I saw it...
by abfranklin3
Tue Jul 23, 2013 12:07 pm
Forum: How do I code ...
Topic: PWM and Overheat
Replies: 10
Views: 5942

Re: PWM and Overheat

Oh, ok. I figured you had to add something extra for everything to turn back on once the temperature was back to normal?
by abfranklin3
Sun Jul 21, 2013 3:24 pm
Forum: How do I code ...
Topic: PWM and Overheat
Replies: 10
Views: 5942

Re: PWM and Overheat

Would you mind posting the code that would accomplish the same thing but with regular non-dimming T5 lights?