Most of the heavy work was complete, it is still missing the water tank and pump connection thought.
Now is time to describe how the system will work and establish bases to start sketching the program.
We will start with a very basic design to have the rotary growing system going and as we go we can implement more sophisticated functions or add more sensors and controls.
Below is the block diagram showing Inputs and Outputs connected to the Intel Edison Arduino Board and a brief description of each I/O.
OUTPUTS
Stepper Motor turns the drum continuously at an RPM set through the remote dashboard;
Grow Light switches On/Off at times set through the remote dashboard;
Water Pump switches On/Off at a frequency set through the remote dashboard;
Fan switches On/Off depending on the temperature and humidity readings.
INPUTS
Sensors:
Light Sensor records the grow light intensity and sets an alarm if the Grow Light is set on but there is no reading;
Temperature Sensor records the temperature inside the drum and switches the Fan on if temperature is above set limit;
Humidity Sensor records the humidity inside the drum and switches the Fan on if humidity is above set limit;
Water Level Sensor sets an alarm if the water level is lower than the set limit;
PH Sensor sets an alarm if PH reading is out of the set limits.
Switches:
Auto/Manual Switch gives manual access to the next switches bypassing the programmed instructions;
Motor Switch turns drum motor On/Off
Light Switch turns grow light On/Off
Water Pump Switch turns water pump On/Off
Using Fritzing we created the sketch below showing the actual connections to the Intel Edison Board.
Having the basis to start programming and connecting the components to the board we will use the Arduino IDE to program the board. The programming instructions will be presented on the next posts.
Top Comments