New RA user - some initial questions.

Basic / Standard Reef Angel hardware
Post Reply
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

New RA user - some initial questions.

Post by Smotz »

Hello all,

Brand new to the board - just bought the RA - I expect it an about a week or 2. A little intimidated by the coding but I think i'll be ok. Been reading the forums a lot and I know what to expect.

Got a few questions -

I have an Evergrow IT2040 (Chinese LED) - anyone know if they are controllable ? if so, how?

I have a WP-40 on order and I ordered the RA cable for it - This is going in to a 60g cube so I will definitely have to dumb down the WP-40 - by at least half. I have read the WP-40 thread and it looks like we don't have a DEFINITE method to control it? Is that the case?

Thanks all..
Piper
Posts: 298
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: New RA user - some initial questions.

Post by Piper »

Smotz wrote:I have an Evergrow IT2040 (Chinese LED) - anyone know if they are controllable ? if so, how?
A quick looks shows that the fixure is dimmable via the built-in controller but I didn't see anything about it having ports for external control. It does have an RF remote so maybe it can be controlled with the RF module but it would have to be coded.

Do you have a manual that shows any external dimming ports/jacks on the light? Anything about PWM or Analog dimming in the manual?
Smotz wrote:I have a WP-40 on order and I ordered the RA cable for it - This is going in to a 60g cube so I will definitely have to dumb down the WP-40 - by at least half. I have read the WP-40 thread and it looks like we don't have a DEFINITE method to control it? Is that the case?
Sure we do! A couple of us have them up and running on the RA now. The harness will use of the the dimming ports on your RA to control the speed. All the wave patters are in the Wave patterns thread and some examples of coding the patterns are in the Jebo WP-40 thread.

Once you get your RA up and running you can post your code and ask for help as well.

~Charlie
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

New RA user - some initial questions.

Post by lnevo »

Hey smotz! You got a nice package and a good deal too!

All you need to do to control the wp-40 is

ReefAngel.PWM.SetDaylight(x);

Where x is the speed or replace with the wave function you want to run your pump with

ReefAngel.PWM.SetDaylight(ReefCrestMode(x));

Don't let the code scare you. We'll help you out!

The best thing is to start reading threads and looking through working code to get a feel.

Lee
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: New RA user - some initial questions.

Post by Smotz »

Thanks for the reply.

Regarding the IT2040 LED - no external ports for dimming. It does have a remote control like you mentioned.

I would be receptive to opening it up and modding if necessary.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: New RA user - some initial questions.

Post by Smotz »

lnevo wrote:Hey smotz! You got a nice package (HAHA - I get that a lot! - sorry, had to!) and a good deal too!

All you need to do to control the wp-40 is

ReefAngel.PWM.SetDaylight(x);

Where x is the speed or replace with the wave function you want to run your pump with

ReefAngel.PWM.SetDaylight(ReefCrestMode(x));

Don't let the code scare you. We'll help you out!

The best thing is to start reading threads and looking through working code to get a feel.

Lee
Thanks! Yes, I'm very excited!

Re;WP-40 - any way to dynamically adjust it via the web interface or menus?
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: New RA user - some initial questions.

Post by lnevo »

int mode=InternalMemory.RFMode_read();
int speed=InternalMemory.RFSpeed_read();
int duration=InternalMemory.RFDuration_read();

This will piggy back the Vortech MP40 memory locations which you can adjust through the portal and use that to feed your WP-40 function.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: New RA user - some initial questions.

Post by Smotz »

Well, I guess I will be trying that.

Looking forward using the product.

Thank you for your help.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: New RA user - some initial questions.

Post by Smotz »

lnevo wrote:int mode=InternalMemory.RFMode_read();
int speed=InternalMemory.RFSpeed_read();
int duration=InternalMemory.RFDuration_read();

This will piggy back the Vortech MP40 memory locations which you can adjust through the portal and use that to feed your WP-40 function.
I am interested in doing this. Can you advise where I put this code?
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

New RA user - some initial questions.

Post by lnevo »

In the loop() function before you run your wp40 functions.

Then you can use the info in those variables to feed your pump function..
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: New RA user - some initial questions.

Post by Smotz »

lnevo wrote:In the loop() function before you run your wp40 functions.

Then you can use the info in those variables to feed your pump function..
Sorry - I'm dense.

So I need to have all of the wave patterns in the code...and, what else?
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

New RA user - some initial questions.

Post by lnevo »

This post has the code that will take the vortech mode and call the appropriate "jaebo" function..

http://forum.reefangel.com/viewtopic.php?p=23072#p23072

There is also a full ino example. Also keep in mind if you are going to implement any night or feeding mode it will have to be the first part of the if statements..

Check that post and let me know if you still need have some questions.
Post Reply