Search found 14 matches

by smadascott
Thu Feb 09, 2017 3:58 pm
Forum: Standard
Topic: Analog dimming with ELN-60-48D
Replies: 4
Views: 3741

Re: Analog dimming with ELN-60-48D

I am trying to use 4X ELN-60-48D and control two of the drivers with each of the analog (1-10V) ports on the relay box but I get no response from my drivers when they are receiving a signal from the relay box. At 100% I measure 9.97VDC and 30mah. Are you using the drivers with a 'D' at the end or a ...
by smadascott
Wed Feb 08, 2017 10:53 pm
Forum: Standard
Topic: Analog dimming with ELN-60-48D
Replies: 4
Views: 3741

Analog dimming with ELN-60-48D

I recently decided to use an old LED fixture with my ReefAngel Plus and I am having some issues with dimming. Please correct me if I am wrong but I think the current of the 0-10V signal from the relay box is too low (30mah) for the Meanwell LED drivers (ELN drivers). I get no response from the drive...
by smadascott
Mon Jun 02, 2014 12:50 am
Forum: Addons
Topic: Humidity Module: Where to buy?
Replies: 5
Views: 3356

Re: Humidity Module: Where to buy?

That sounds like an odd bug lol Not a big deal though. Have you experimented with any other humidity sensors? I found a few interesting one on ebay. Would you be able to tell me how much your humidity sensor would cost? Thanks!
by smadascott
Thu May 29, 2014 2:04 pm
Forum: Addons
Topic: Humidity Module: Where to buy?
Replies: 5
Views: 3356

Re: Humidity Module: Where to buy?

Thanks for the reply! I am still interested in the sensor but I would like to know how often they would need this manual reset and what they cost. Has anyone tried integrating other humidity sensors meant for arduino systems with the Reef Angel?
by smadascott
Tue May 27, 2014 10:56 pm
Forum: Addons
Topic: Humidity Module: Where to buy?
Replies: 5
Views: 3356

Humidity Module: Where to buy?

I want to buy the humidity module but I can only find information about it in the "Products" section of the site and I cant find anything about it in the "Order" section. Am I just missing something?
by smadascott
Mon Sep 09, 2013 4:47 pm
Forum: Apps
Topic: Arduino on Linux
Replies: 20
Views: 47562

Re: Arduino on Linux

well I tried using the files in the links on the original post but with no luck. I got everything installed but the compiler is version 1.0.3 and it wasn't reading the library files or giving me options to select the correct RA board. I finally just installed the windows RA compiler using Wine and g...
by smadascott
Sun Sep 08, 2013 6:14 am
Forum: My PDE/INO file
Topic: Chiller and Exhaust fan linked
Replies: 4
Views: 8917

Re: Chiller and Exhaust fan linked

Aww ok. It did work when I manually turned it on but I hadn't let it do it automatically yet. Is the Status fxn part of the Relay class? What is the proper syntax for the Status fxn?

An after thought. .. sorry if this wasn't the right forum section to post this
by smadascott
Sat Sep 07, 2013 10:41 pm
Forum: My PDE/INO file
Topic: Chiller and Exhaust fan linked
Replies: 4
Views: 8917

Chiller and Exhaust fan linked

I am new to coding for the RA so anything new I discover gets a good 3-5min celebration lol........ :oops: I have all my equipment for my aquarium under my stairs and when my chiller turns on I have an exhaust fan that routes the hot chiller air out of my fish room. I first set the RA to where both ...
by smadascott
Sat Sep 07, 2013 3:50 pm
Forum: For New Members
Topic: Float sensor time delay
Replies: 13
Views: 8832

Re: Float sensor time delay

Yes! Thank you sooo much for taking the time to explain that in detail for me! Just that little explanation helps me understand the code structure so much better! Thank you! If I lived by you I would buy you lunch! lol
by smadascott
Tue Sep 03, 2013 6:32 pm
Forum: For New Members
Topic: Code and internal memory
Replies: 1
Views: 2257

Code and internal memory

I have read that you should only upload to the internal memory once then make all other changes in the code. Does this mean that I would make a bare bones file that had my basic variables in it and upload that to the internal memory.... then make another file with all my "if" statements an...
by smadascott
Tue Sep 03, 2013 6:14 pm
Forum: For New Members
Topic: Float sensor time delay
Replies: 13
Views: 8832

Re: Float sensor time delay

Try this: static time_t LastATO=millis(); if (!ReefAngel.LowATO.IsActive()) LastATO=millis(); if (millis()-LastATO<5000 && millis()-LastATO>100) ReefAngel.Relay.Off(Port1); else ReefAngel.SingleATO(true,Port1,10,0); I am new to coding on RA so I will explain what I THINK the code you posted...
by smadascott
Wed Aug 28, 2013 3:53 pm
Forum: For New Members
Topic: Float sensor time delay
Replies: 13
Views: 8832

Re: Float sensor time delay

Awww I see... Thank you! I will try that!
by smadascott
Wed Aug 28, 2013 1:52 pm
Forum: For New Members
Topic: Float sensor time delay
Replies: 13
Views: 8832

Re: Float sensor time delay

I know the easiest way would be to use two float switches but I would really like to be able to do this with just one float. I also thought this concept might be a good idea to apply to the temp probe and other sensors that have constantly fluctuating readings. I dont know how many people have used ...
by smadascott
Wed Aug 28, 2013 1:22 pm
Forum: For New Members
Topic: Float sensor time delay
Replies: 13
Views: 8832

Float sensor time delay

Is there a way to make a time delay for when the topoff pump starts? My float sensor gets tripped a little and it clicks my pump on and off immediately every time. I want the float to be tripped (open) for 30-60 seconds before the controller turns on the ATO pump. I don't think it can be good for my...