![]() |
|
#1
|
|||||
|
|||||
![]() The first thing I did was mount the receptacle onto the faceplate then I removed the tab on the receptacle that joins the brass hot posts.
![]() The picture shows two receptacles with 3 relays but you only need the one of each for this project. The next step was to mount using 5 minute epoxy the 5v Relay on the back of the receptacle.
__________________
210 Gallon slowly gaining population. Foxface, Naso, Coral Beauty, 2 Clowns, 2 Chromis, Orange Anthias, and Striped Goby. |
#2
|
|||||
|
|||||
![]() Attach the common wire or white wire from your cord to the silver posts on the receptacle this tab should be intact or else you have to connect the white to both silver posts.
Attach the black wire from your cord to the Comm post on the Relay(you will need to solder this wire on). Top arrow. On the relay there will two other posts labeled NO(normally Open) and NC(normally Closed). You need to attach a short 14-16 gage wire from each post to one of the brass hot posts on the receptacle. This way when the relay is off the Normally closed will supply power and when the relay is active the normally open will supply power, alternating between the two. The wire that you use needs to be capable of supplying power to the power heads which consume less than 100w 14 gage is overkill but better safe than on fire. ![]() You also need to attach your control wires for the relay at this time. I used Cat5 and attached one of the pairs to the two posts for the coil on the relay. These reside on each side of the common and have a coil icon to denote them. These are the wires that will turn the relay on and off. White and light blue in the bottom picture. ![]()
__________________
210 Gallon slowly gaining population. Foxface, Naso, Coral Beauty, 2 Clowns, 2 Chromis, Orange Anthias, and Striped Goby. Last edited by plutoniumJoe; 11-13-2010 at 04:02 PM. |
#3
|
||||
|
||||
![]() nice.....keep going.
|
#4
|
|||||
|
|||||
![]() As I stated earlier this will also control my dosing system so it has more than you need for this project but....
![]() To make it all work I used the Arduino Digital Blink Program. /* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ void setup() { // initialize the digital pin as an output. // Pin 13 has an LED connected on most Arduino boards: pinMode(13, OUTPUT); } void loop() { digitalWrite(13, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(13, LOW); // set the LED off delay(1000); // wait for a second } According to this code the arduino will send a signal to the digital pin 13 to turn it on and off every 1000 milliseconds (1 sec) I modified it to every 15000 milliseconds for our purposes. You will need to connect one of the wires from your relay to the 5v spot on the arduino and the other to the digital pin denoted in your program. Every 15seconds the arduino will turn on the pin and complete the circuit which will activate the relay. When the relay is active the power will be given to the NO wire on the receptacle and when the pin is off (relay off) the power will be given to the NC wire giving you alternating pulses to your power heads. I ended up getting a nice little 1" wave in my tank and my frogspawn moved to and fro. One of the koralia is loud so I need to look at that but oveall I am rather happy. Now on to the dosing side of it all.
__________________
210 Gallon slowly gaining population. Foxface, Naso, Coral Beauty, 2 Clowns, 2 Chromis, Orange Anthias, and Striped Goby. |
#5
|
||||
|
||||
![]() Did this burn any of your powerheads?
How long have you been running it? Thank you! |
#6
|
|||||
|
|||||
![]() Both power heads are still running great. I found that if I make the cycle loop about 5seconds I get some very nice wave action but normally I leave it on about 15 seconds.
__________________
210 Gallon slowly gaining population. Foxface, Naso, Coral Beauty, 2 Clowns, 2 Chromis, Orange Anthias, and Striped Goby. |
#7
|
|||||
|
|||||
![]() are you using the 120v Korila powerheads or the 12v controllable ones?
|
#8
|
|||||
|
|||||
![]() I am using the 120v evolution ones.
BTW my Grandfather(Ohio State) and Father(Miami of Ohio) are both PhiDelts.
__________________
210 Gallon slowly gaining population. Foxface, Naso, Coral Beauty, 2 Clowns, 2 Chromis, Orange Anthias, and Striped Goby. |