Saturday, June 1, 2013

Code's on Github and I'm Thinking About Putting in More Work

Its come to my attention that whoever I had hosting my code has stopped so I uploaded it to github. Here's a link: Link

I'm out of school for summer and would love to expand my project but my budget is tight. If there's anyone out there that would like to see this project grow you can donate to my bitcoin address and expect to see new features. If you would like a particular feature leave the address you used to send  your bitcoins and what you would like to see and i'll work on it.

Also thank you guys for all the complementary comments! I'm glad you guys enjoy my work.

Bitcoin Address: 13gvGMboRyzx4AhYGvCXQQfH7a1QVtoJNN

Thursday, February 16, 2012

End of the line, at least for now

I've decided to dedicate all of my time towards my schooling. I'm going to be going to school for electronics engineering so my dream to make a cheap, intuitive and functional automated hydroponic system will continue once I gain more knowledge in the field.

Friday, December 16, 2011

I'm back

Sorry everyone for the my long absence, after a bit of posting in October and little to no response from the online community I started to think that there wasn't a big enough audience to keep this blog alive, but after checking back I realized that all the blog needed was a little time to get noticed.

I'll be continuing my project but i will do so a little bit differently than i had planned. From this point on the Arduino will be the middle man for the project and the software to control it will run on a PC.

So far I have temperature and humidity control ported and once I get the lighting control implemented I'll make a release. I'll be keeping everyone posted.

If you have and software development experience and are willing to help let me know.

Sunday, October 9, 2011

Update - Version 1.11 - Fixed Bugs and a Look into Moisture Sensors

After checking on my system yesterday I noticed it stopped updating the LCD display and operating the controllers within a couple hours after powering on the device. The issue was very simple to solve, all it involved was changing an "if" statement to a "while" statement. Also the updated version notifies the user when it cannot initialize the SD card during start up via the LCD display.

Here's the updated version:
Download v1.11




I've been googling moisture sensors for the past week or so. The most ideal product I found was the Vegitronix Soil Moisture Sensor but they run roughly $30 a piece which isn't a very ideal price. I then stumbled upon a tutorial for home made moisture sensors that uses galvanized nails to take measurements by passing a alternating current between the probes while taking readings on the one that isn't currently emitting a current. The probes are set in gypsum plaster to avoid corrosion from salts and to make sure they don't touch. During the next week i will be working on making a set of my own, once they are complete i will run some tests to get a better understanding on how to make them work accurately in the next update.

I'll be keeping you guys posted, thanks for listening in.

Wednesday, October 5, 2011

Now Available - Version 1.1 - Arduino Uno Compatible w/ Humidity Control

Hey peoples, I just finished debugging Version 1.1. I've included a pin map I made using Fritzing:
**Here's the Download Link

Like I mentioned earlier, this is most likely the last version that will be available on Arduino Uno and Duemilanove. If you intend on using a larger scale grow room controller with more features I recommend getting a Arduino Mega.

Leave me a comment and let me know what you think!
Enjoy!

Debugging Version 1.1 - Arduino Uno Compatable + Humidity Control

Hey everyone, I've been working on version 1.1 the past few days. I've reduced the code down by 100 lines and have shrunk the code enough to add a humidity controller and it will fit on an Arduino Uno or Duemilanove. Right now I'm working out the last few bugs so it should be available within the next few days.

*After version 1.1 the project will be based on Arduino Mega because I'm running out of pins and flash memory.

I have also had time to get some feedback on various forums and have gotten a good idea of a release plan:

  • V1.1 - Arduino Uno compatable, humidity control
  • V1.2 - Arduino Mega based , soil moisture logging
  • V1.3 - Soil Moisture Control (automated watering)
  • V1.4 - Ph Logging
  • V1.5 - Ph Control
  • V1.6 - Larger LCD Display
  • V1.7 - Nutrient Control
  • V1.8 - Co2 Control
  • V1.9 - Fire, Leak and Leak Alarms and a Silent Intruder Alarm with SMS
  • V2.0 - Ethernet and PC server with full online control, monitoring, and surveillance (I better start learning javascript now lol)
These are subject to change and reordering but that generally the track the project'll follow.
**Download Version 1 - GrowRoomController_v1.zip

Friday, September 30, 2011

Here is my Arduino-based Grow Room Controller.

This nifty project of mine effectively controls a small scale grow room setup. My setup currently controls only a few appliances, but the code could easily be modified to work with other environmental variables. My setup contains:
  • The Grow Light
  • The Exhaust Fan that pulls air out of the room, through the grow light fixture
  • A Heater
The controller has the ability to log the temperature and humidity readings with a time stamp to an SD card. It also logs events such as the powering on and off of appliances in a separate file in the same directory. The file directory structure is as follows: "YEAR\MM\DD\" and there is an event and data log for each day.

It is composed of the following components:
The pin map can easily be deciphered from the beginning of the code and by looking up the communication protocols used by different components

You can dig into the code for more info (be warned it's almost 900 lines of code including comments). DOWNLOAD: GrowRoomController_v1.zip
**The download includes necessary libraries that normally do not come with the Arduino IDE, it also includes a modified version of the SLCD library that uses the NewSoftSerial library to communicate with the LCD display.