DIY: Automated Clone Misting

odam2k

Well-Known Member
DIY - Automated Clone Misting

If like me, you mist your cuttings while you are waiting for them to root, you know how important it is not to wait too long. Nothing worse than coming in and seeing them all slouched over, dying of thirst... The good news is they usually perk up once you mist them...

I try to have clones going all the time, so that means constant misting....

I have a drawer full of Servo's left over from my days of flying radio control planes (and helicopters, multicopters, cars, boats, sailboats, trucks, crawlers, and I'm sure I forgot some)

So, armed with a servo and a spray bottle, an idea started to form in my head... It took me a while (I let it simmer in the back of my head) because I couldn't quite grasp how it would fit together so that the servo could actually pull the trigger...


spritzer_001.jpg



Here's what I came up with...


I mounted the servo and the bottle on a piece of "aircraft plywood" which is just a high quality thin plywood used for building model airplanes. Anything would work here...

I cut the hole in the wood so the bottle would fit tightly into it from the bottom, and then just screw the top onto the bottle nice and tight and it holds the bottle and wood in place...

I cut a couple pieces of flat foam I had to fit inside the cap, since it isn't going to screw on all the way because of the wood. This ensures I can tighten it up snug...

I cut a rectangular hole in the wood to hold the servo so that it sits flush to the bottom of the wood, this way the wood holds the servo from twisting... The servo is also screwed to the wood with wood blocks on the bottom side to hold the screws.

Here it is with the bottle and the servo in place and tight...

Finally, the trigger, I poked a hole through it with my soldering iron so that the rod from the servo could hook around into the hole so it would not slip off.

For my initial prototype, I just used my test module, a Wemos Mega 2560. I wrote a very basic sketch that simply moves the servo arm back and forward again every 5 seconds...


Here's the code...

// We are using the SERVO library...
#include <Servo.h>
// create a servo object
Servo cloneMisterServo;

int cloneMisterServoPin = 9;
int servoAngle = 0;
void setup() {
Serial.begin(115200);
delay(500);
Serial.println("Grow By Wire Clone Mister (Proof of Concept)");
Serial.print("Compiled: ");
Serial.println(__DATE__ ", " __TIME__);
cloneMisterServo.attach(cloneMisterServoPin);
}
void loop() {
delay(5000);
squirt();
}
void squirt()
{
Serial.println("Squirt!");
for (servoAngle = 0; servoAngle <= 120; servoAngle += 10)
{
cloneMisterServo.write(servoAngle);
delay(15);
}
for (servoAngle = 120; servoAngle >= 0; servoAngle -= 10)
{
cloneMisterServo.write(servoAngle);
delay(15);
}
}

As for hooking the servo up to the Arduino, a servo has 3 wires, Black, Red, and usually either orange, brown, or white for the third. Black is ground, Red is 5v, and the third (yellow, brown, or white) is the signal line, this we hook up to pin 9 on the Arduino. The red and black are hooked up to an external 5v power source since the servo draws more current than the Arduino can provide when pulling the trigger... Make sure the external source and the Arduino share a common ground.

I'm using a fairly hefty servo, just make sure you use something strong enough to pull the trigger, preferably with metal gears so they don't strip.

I'll probably wrap it in wood so it's like a small wooden box with a spray top on it... Right now, if it's not full of water, it will tip over because of the weight of the servo...

I will probably cut the bottom of the bottle off, and attach plastic tubing to the sprayer intake tube, and place it in a larger reservoir of water so it is capable of running for days without needing to be refilled.

That's it, hope this inspires you...
 
Thank you for posting your DIY idea.

I bought a jug of insecticide a few years ago that had a battery-powered sprayer on it. A person could probably rig something up with it, too.
 
Thank you for posting your DIY idea.

I bought a jug of insecticide a few years ago that had a battery-powered sprayer on it. A person could probably rig something up with it, too.

That's funny, I was actually wondering how long this would run with a battery for power when I was assembling it :)
 
Because the servo is fairly heavy, this whole thing just tips over unless it's full of water. I'm also a little worried about how long the water will last in the bottle, probably a while, but, I decided to extend the "pickup tube" through a hole in the side of the bottle. This will allow me to put the other end in a larger reservoir of water. This also allowed me to drill a hole in the bottom of the bottle and screw the whole thing onto a block of wood which will hold everything in place.


spritzer_002.jpg



spritzer_003.jpg
 
I should start a company called "Mister Clone" and sell the Mister Clone Clone Mister! LOL!

Anyhow, I added one more thing, an Arduino Pro/Mini to act as an I2C Slave module which actually controls the servo. This prevents the Servo Library from interfering with the main code in the Switch Module.
 
Funny thing, during testing, I had this sitting on my desk, and the mist was nice and cool in the air, perhaps when the summer heat really kicks in, I could use it to stay cool :)

The Mister Cool Cool Mister?
 
It's day 2 and I haven't touched anything except to peek in. The plants actually look better than when I manually mist them. There are fewer droopy clones. Ideally, I won't have to touch them until it's time to pull them out and plant them :)
 
Wow, day 6, and NO MANUAL INTERVENTION at all... They look great, way better than when I was babysitting them and spraying manually...

Completely hands off, exactly what I was hoping for... Now, if I only had a "root detector" that could tell me when the clone was ready to come out and go into soil... hmmm?
 
I had no idea anything like this existed... A motorized sprayer, makes sense...

1563782949219.png

Of course, this is probably a bad example of which one to use for your clones :) There are others, this is the first one I ran across... In fact, you can buy an empty motorized sprayer too...

Could easily be modified to be controlled by an arduino. I think I may grab one just to compare...
 
All I can say is WOW!

10 days ago I took a total of 18 cuttings. Since then, they have been untouched in my new clone machine, and today, I removed 2 nearly dead cuttings, they were just out of the mist coverage it seems... I also planted 9 cuttings which had roots coming out of the peat pellets. I'm 100% confident the remaining 7 will show roots in the next day or two...

This is my most successful run of clones in ages, and about 4 days faster than my other methods.

So, my "Clone Machine" looks like this:

1853408


  • The bottom is a piece of plywood
  • Next is a heated seedling mat.
  • A large tray holds everything, with some pieces of wood underneath in order to keep the tray off the direct heat of the mat.
  • Inside the large tray are two smaller trays, these are floating on water inside the large tray, just enough to float the small trays, again to keep from any direct heating... The water in the large tray will help maintain the humidity, and regulate the temperature.
  • Covering the entire thing is a plastic dome, in this case, a plastic tote... One end has a hole in it so the "automatic mister" can spray them and keep them alive.
10 days, NO INTERACTIONS, and I've got healthy rooted clones... Gotta love automation....

I keep the temp about 28-30c and the humidity at 100% and give 5 spritzes every 30 minutes with the mister... For the first couple days, it was 5 spritzes every 5 minutes... It is set to a very fine mist...

This is less work, and better results than my Aqua Cloner...
 
Back
Top Bottom