DIY GUY Chris
Published © Apache-2.0

Arduino Indoor Garden

In this project, I will make an indoor gardening system to take care of my sweet plant and its beautiful flowers.

BeginnerFull instructions provided98,918
Arduino Indoor Garden

Things used in this project

Story

Read more

Custom parts and enclosures

House DXF Files

Schematics

Schematic

Code

Arduino source code

Arduino
/************************************************************************************************************************************************************************                                              
 * - Author               : BELKHIR Mohamed              *                                               
 * - Profession           : (Developer) MEGA DAS owner   *                                                                                              
 * - Main purpose         : Industrial Application       *                                                                                 
 * - Copyright (c) holder : All rights reserved          *
 * - License              : BSD 2-Clause License         * 
 * - Date                 : 20/11/2017                   *
 * ***********************************************************************************************************************************************************************/
 
 /*********************************** NOTE **************************************/
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:

// * Redistributions of source code must retain the above copyright notice, this
//  list of conditions and the following disclaimer.

// * Redistributions in binary form must reproduce the above copyright notice,
//  this list of conditions and the following disclaimer in the documentation
//  and/or other materials provided with the distribution.

// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED

/*
________________________________________________________________________________________________ (`v)
________________________________________________________________________________________________(`())__(`v)
_________________________________________________________________________________________________(_.^._)__(`())
___________________________________________________________________________________________________(`v)(_.^._)
__________________________________________________________________________________________________(`())(`v)
___________________________________________________________________________________________________(_.^._)(`())
______________________________________________________________________________________________(`v)_____ (_.^._)(`v)
_____________________________________________________________________________________________ (`())_ (`v)___(`())
______________________________________________________________________________________________ (_.^._)_(`())___(_.^._)
______________________________________________________________________________________________ (`v) (_.^._) (`v)
______________________________________________________________________________________________(`())____(`())
_______________________________________________________________________________________________(_.^._)_____(_.^._)
_____________________________________________________________________________________________________
___________________________________________________________________________________________________
_____________________________________________________________________________________________________.
___________________________________________________________________________________________________
___________________________________________________________________________________________________
____________________________________________________________________________________________________ 
______________________________________________________________________________________________________
_______________________________________________________________________________________________________
____________________________________________________________________________________________________________
____________________________________________________________________________________________.________
_________________________________________________________________________________________________
__________________________________________________________________________________________________ 
___________________________________________________________________________________________ ___________
___________________________________________________________________________________________________________
____________________________________________________________________________________________________
______________________________________________________________________________________________
__________________________________________________________________________________________(`v)
__________________________________________________________________________________________(`())
__________________________________________________________________________________________ (_.^._)
___________________________________________________________________________________________ (`v)
____________________________________________________________________________________________ (`())
______________________________________________________________________________________________ (_.^._)
________________________________________________________________________________________________(`v)
__________________________________________________________________________________________________(`())
__________________________________________________________________________________________________(_.^._)______
_____________________________________________________________________________________________
_______________________________________________________________________________________________

 */
#include "DHT.h"                                             // Include the dht library to interface with the DHT sensor
#include <Wire.h>                                            // IC library to use the light sensor
#include <BH1750.h>                                          // Import BH1750 library in order to be able to use the light sensor
//------------------------------------------------ Define the control pins --------------------------------------------------------
const int Pump=4;                                            // We've used this pin to control the motor pump 
const int Fan=5;                                             // Use this pin as a PWM output to control the Fan speed
const int Light=6;                                           // Use this pin in order to control the LED brightness
const int TempHum=7;                                         // Input pin for DHT sensor
const int Moisture=8;                                        // Digital Input pin to read the moisture command signals
const int TestLED=9;                                         // Use this output pin to test the right soldering on your PCB by turning on and off the test LEDs
const int Brightness=12;                                     // Input pin to read the light sensor signals
const int analogMoistue=0;                                   // Analog Input to read the analog signal from moisture sensor
//---------------------------------------------------------------------------------------------------------------------------------
#define DHTTYPE DHT11                                        // DHT 22  (AM2302), AM2321
DHT dht(TempHum, DHTTYPE);                                   // Temperature and humidity sensor constructor
BH1750 lightMeter;                                           // Light sensor constructor
char Data='x';                                               // Store Serial data in this variable
String cmd="";                                               // Read the full instruction sent from the android app
int flagModeAuto=0;                                          // flag to activate the auto mode
int sprayCMD=0;                                              // CMD limit spray
int LightCMD=0;                                              // CMD limit brightness
int lightLevelPlus=0;                                        // Variable to control the light brightness
float temperature=0;                                         // Variable to store the temperature value
float humidity=0;                                            // Variable to store the humidity value
uint16_t lux=0;                                              // Variable to read light brightness from the light sensor
//------------------------------------------------ Start the pin configuration --------------------------------------------------------
void setup() 
{
  
  Wire.begin();                                              // Initialize the I2C bus (BH1750 library doesn't do this automatically)
  dht.begin();                                               // Start the temperature and humidity sensor reading
  lightMeter.begin();                                        // Start the light sensor reading
  Serial.begin(9600);                                        // Set the baudrate up to 9600 BPS to comunicate with the android app through Bluetooth
  Serial.setTimeout(100);                                    // Set the time to wait for data before closing the Serial port (after 100 ms)
  pinMode(Pump,OUTPUT);
  pinMode(Fan,OUTPUT);
  pinMode(Light,OUTPUT);
  pinMode(Moisture,INPUT);
  pinMode(TestLED,INPUT);
  delay(1000);
  digitalWrite(Pump,LOW);
  digitalWrite(Fan,LOW);
  digitalWrite(Light,LOW);
}

//------------------------------------------------ Start the Process code --------------------------------------------------------
void loop() 
{
  while(Serial.available())                                  // Read the serial data once available
  {
    delay(10);
    Data=Serial.read();
    cmd+=Data;
  }
  if(cmd=="dt")                                              // Send the humidity value to the android app                                 
  {
    Serial.print(humidity);
  }
  if(cmd=="dh")                                              // Send the brightness value to the android app
  {
    Serial.print(lux);
  }
  if(cmd=="db")                                              // Send the temperature value to the android app
  {
    Serial.print(temperature);
  }
  if(cmd=="o")                                              // Activate the automatic mode
  {
    flagModeAuto=1;
  }
  if(cmd=="m")                                              // Disactivate the automatic mode
  {
    flagModeAuto=0;
  }
  if(flagModeAuto==1)
  {
    autoPump();
    lightBrightness();
    autoFan();
  }
  if(flagModeAuto==0)
  {
    if(cmd=="f")                                             // Turn ON the FAN
    {
      analogWrite(Fan,255);
    }
    if(cmd=="x")                                             // Turn OFF the FAN
    {
      analogWrite(Fan,0);
    }
    if(cmd=="l")                                             // Turn ON the Lights
    {
      analogWrite(Light,255);
    }
    if(cmd=="k")                                             // Turn OFF the Lights
    {
      analogWrite(Light,0);
    }
    if(cmd=="w")                                             // Turn ON the Pump
    {
      analogWrite(Pump,255);
    }
    if(cmd=="y")                                             // Turn OFF the Pump
    {
      analogWrite(Pump,0);
    }
  }
  cmd="";                                                    // Clear the cmd variable to make it available for the next instruction
  lux = lightMeter.readLightLevel();                         // Get the brightness level from the light sensor
  temperature=dht.readTemperature();                         // Get the temperature value from the DHT sensor (C)
  humidity=dht.readHumidity();                               // Get the humidity value from the DHT sensor (%)
}
//------------------------------------------------ Auto control function for Pump spray --------------------------------------------------------
void autoPump()
  {
    if(analogRead(analogMoistue)<sprayCMD)
    {
      digitalWrite(Pump,HIGH);
      delay(1000);
      digitalWrite(Pump,LOW);
      delay(1000);
    }
  }

//------------------------------------------------ Auto control function for Brightness LED --------------------------------------------------------
void lightBrightness()
{ 
  while(lux<LightCMD)
    {
      analogWrite(Light,lightLevelPlus);                         // Increase the light brightness
      delay(100);
      lightLevelPlus++;
      lux = lightMeter.readLightLevel();                         // Read the light brightness level
    }
}
//------------------------------------------------ Auto control function for FAN --------------------------------------------------------
void autoFan()
{
  if(temperature>30)
  {
    analogWrite(Fan,255);                                        // Turn ON the fan if the temperature exceed 30C
  }
  else
  {
    analogWrite(Fan,0);                                          // Turn OFF the fan if the temperature exceed 30C
  }
}

Credits

DIY GUY Chris

DIY GUY Chris

48 projects • 331 followers
I'm having fun while making electronics projects, I am an electrical engineer in love with "Do It Yourself" tasks.

Comments