Introduction: DIY Autonomous Fluorescent Grow-Light
Hey guys!
I am a 17-year old from Latvia who has recently been vastly fascinated by the subject of indoor cultivation of plants and thus decided to start growing cayenne peppers. I live in a northern country so summers are short and winters are cold. Thus I decided to create a fully functional and efficient fluorescent grow-light. I hope that this tutorial will reach many and hopefully generate interest around the home cultivation of plants for the youth.
DISCLAIMER : REMEMBER YOU WILL BE WORKING WITH MAINS POWER SO ALWAYS EXERCISE UTMOST CAUTION. MAINS AC VOLTAGE CAN AND WILL KILL YOU! I TAKE NO RESPONSIBILITY IN DAMAGES DONE TO YOU OR YOUR FAMILY. ALL RESPONSIBILITY IS ON YOU!
-Theo
Step 1: Required Materials.
For this project you will need :
1) Materials -
- 2-4x T5 24w 549mm 4500-6500k fluorescent tubes. ( Or any other tubes you wish to use.)
- 1-2x Twin 24w t5 electronic ballasts. ( Or any other ballasts that are recommended for your tubes.)
- ~5 meters of 3 strand installation wire rated for 220+ volts.
- 4-8x T5 end fittings. (sometimes called tombstones.)
- 2x ~600mm x 250mm plexiglass ( Or any other light, sturdy material used for the fixture.)
- Aluminised tape ( Or any other reflective material that can be applied to the plexiglass.)
- 4x 120° corner brackets.
- DIY electrical wall plug.
- Thin rope.
- 4x eye screw with matching nut and washer.
- 2x eye screw with matching wall anchors.
- ~30 bigger diameter screws that fit corner brackets.
- ~15 smaller diameter screws that fit T5 fittings.
- ~20 cable clips with matching nuts.
- Arduino (Or any other sort of Micro-controller) [Optional]
- AC to 5v power-supply (Acquired from phone charger) [Optional]
- 4x Micro- controller jumper wires. [Optional]
- Relay (rated for your AC voltage) [Optional]
2)Instruments -
- Soldering Iron.
- Electrical drill.
- A couple screwdrivers.
- Pliers and wire cutters.
- Drill bits that match the diameter of screws.
- Measuring tape.
- Sharpie.
- Multimeter
- Rosin-cored solder.
- Sharp knife.
- Electrical tape.
Step 2: Preparing the Fixture.
- Measure the center of one of the plexiglass pieces lengthwise.
- Score the line with a sharp knife.
- Snap the plexiglass along the score.
- Stick the Aluminised tape onto one side of the 3 sheets of plexiglass.
- Measure 150mm from each side, mark holes for the corner brackets.
- Drill holes for corner brackets.
- Use fitting screws and nuts to attach the fixture together.
Step 3: Mounting the Electronics .
- Measure & Drill holes for ballast.
- Mount 1 or 2 Ballasts on top with fitting screws.
- Measure & Drill holes for Relay. [Optional]
- Mount Relay. [Optional]
- Measure & Drill holes for Arduino ( Micro-controller ).
- Mount Micro-controller.
Step 4: Wiring the Fittings.
- Attach wires to the electrical plug. ( GND - central; L&N either side [EUROPEAN PLUG ONLY] )
- Measure/Drill/Mount T5 fittings onto the fix with nuts and bolts.
- Measure/Tin and attach wires to T5 fittings.
- Plug wires into ballast according to your ballasts instructions.
- Order the wires with the wire clips.
Step 5: Wiring the Electronics. [Optional]
- Tin the wires.
- Wire the electronics according to the schematic.
- Set alarm times and upload this sketch to your Arduino -
#include
#include
AlarmId id;
int Led = 12;
void setup() { setTime(11,53,0,11,2,17); Alarm.alarmRepeat(07,35,0, MorningAlarm); //SET TURN ON TIME HERE Alarm.alarmRepeat(22,50,0,EveningAlarm); //SET TURN OFF TIME HERE Alarm.timerOnce(30, Once); //WIll SWITCH ON LIGHT IN 30 SECONDS
pinMode(Led, OUTPUT); }
void loop() { Alarm.delay(1000); // wait one second between clock display } void Once() { digitalWrite(Led,HIGH); } void MorningAlarm() { digitalWrite(Led, HIGH); } void EveningAlarm() { digitalWrite(Led, LOW); }
Step 6: Finishing Touches.
EXERCISE UTMOST CAUTION WHEN PLUGGING INTO MAINS!!!
- Measure the required length of rope for mounting.
- Tie the rope into a tight slip-knot.
- Test connections with a multimeter before plugging in.
- Plug in.
- ENJOY!!!