Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
KRISHNARAJ V
Published © CC BY-SA

Internet of Farming (IOF)

Controlling the Irrigation motors through Telegram app.

IntermediateProtip18 minutes370
Internet of Farming (IOF)

Things used in this project

Hardware components

Raspberry Pi 2 Model B
Raspberry Pi 2 Model B
×1
Micro SD Card
×1
Key board and Mouse
×1
HDMI Cable
×1
Monitor
×1
Ethernet Cable
×1

Story

Read more

Code

Sample.py

Python
import sys
import time
import random
import datetime
import telepot

"""
A simple bot that accepts two commands:
- /roll : reply with a random integer between 1 and 6, like rolling a dice.
- /time : reply with the current time, like a clock.
INSERT TOKEN below in the code, and run:
$ python diceyclock.py
Ctrl-C to kill.
"""

def handle(msg):
    chat_id = msg['chat']['id']
    command = msg['text']

    print 'Got command: %s' % command

    if command == '/roll':
        bot.sendMessage(chat_id, random.randint(1,6))
    elif command == '/time':
        bot.sendMessage(chat_id, str(datetime.datetime.now()))

bot = telepot.Bot('****YOUR TELEGRAM ACCESS TOKEN KEY****')
bot.notifyOnMessage(handle)
print 'I am listening ...'

while 1:
    time.sleep(10)

IOF

Python
import sys
import time
import telepot
import shlex
from datetime import datetime
from datetime import timedelta
import datetime as dt

import RPi.GPIO as GPIO
from functools import partial



GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD)
GPIO.setup(7,GPIO.OUT)




def handle(msg):
    chat_id = msg['chat']['id']
    command = msg['text']

    print ('Got command: %s') % command
    

    
    if (command == '/reboot'):
        bot.sendMessage(chat_id,'Server is Reboot.')
        #return;
			
    elif (command == '/shutdown'):
        bot.sendMessage(chat_id,'Server is Shutdown.')
        #return;
		
    elif (command == '/motor_off'):
                
        bot.sendMessage(chat_id,'Motor turned OFF.')
        GPIO.output(7,0)
        #return;
    elif (command == '/motor_on'):
        bot.sendMessage(chat_id,'Motor turned ON.')
        GPIO.output(7,1)
        #return;
       

    elif (command =='/about'):
        bot.sendMessage(chat_id,'Telegram IOFarming bot v0.1b\n\nProgrammer: Krishnaraj\n     @krishna4291083 \nEmail: krishnaraj.v2013eee@sece.ac.in')
        #return;
    elif (command =='/author'):
        bot.sendMessage(chat_id,'Telegram IOFarming bot v0.1b \nAbout Author of IOFarming \n Dev.:\n Krishnaraj V\nStudent\nDepartment of Electrical and Electronics\nSri Eshwar College of Engineering\nCoimbatore - 641 202')
        #return;
    elif (command =='/project'):
        bot.sendMessage(chat_id,'Project Details: \n Project Topic: Internet Of Farming(IOF) \n Demo on: SECE Project Expo \n Members: \n1. Krishnaraj V EEE \n2. Adharsh Babu S EEE \n3. Malai Raja D EEE \nContact: @krishna4291083')
        #return;    
    elif (command == '/id'):
        iid = 'Your telegram id : '+str(chat_id)
        bot.sendMessage(chat_id,iid)
        #return;
    elif (command == '/help') or (command == '?'):
        bot.sendMessage(chat_id,'They call me IOFarming Bot, I can help you to get status and control of motor through this bot.\n Commands List:\n\n/id - Get your unique id\n/about - It is all about us\n /project - Its is all about our solution \n/motor_on - To TURN ON Motor \n/motor_off - To TURN OFF Motor \n\nCommands is not case-sensitive.')
        #return;
    else:
        bot.sendMessage(chat_id,'For more information please send /help or ? \nCommands is not case-sensitive.')

        #return;
			
bot = telepot.Bot('  *****YOUR BOT TOKEN KEY****  ')
bot.notifyOnMessage(handle)
print ('I am listening ...')

while 1:
    time.sleep(5)

Arduino CODE

Arduino
// Date and time functions using a DS1307 RTC connected via I2C and Wire lib
#include <Wire.h> 
#include "RTClib.h" //Library for RTC
#include<SoftwareSerial.h>//Header for GSM Module
#include <LiquidCrystal.h>//Header for LCD Display
#include "HardwareSerial.h"


SoftwareSerial mySerial(0,1);//Object and pin declaration of GSM Module
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);//Object and pin declarations of LCD
/*
 * LCD RS pin to digital pin 7
 * LCD Enable pin to digital pin 6
 * LCD D4 pin to digital pin 5
 * LCD D5 pin to digital pin 4
 * LCD D6 pin to digital pin 3
 * LCD D7 pin to digital pin 2
 * LCD R/W pin to ground
 * 10K resistor:
 * ends to +5V and ground
 * wiper to LCD VO pin (pin 3)
 */
/**********************/


RTC_DS1307 rtc;

char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};

int control = 8; //For intimating control to Raspberry Pi by sending HIGH or LOW
int well = 9;//Motor 1 pin DTMF D1 pin
int bore = 10;//Motor2 pin DTMF D2 pin
int well_run = 11;//Relay channel pin - 1
int bore_run = 12;//Relay channel pin - 2

int control_status; //Check control from Raspberry Pi
int well_status = 0; 
int bore_status = 0; 

int sm = A3;//Assign input variable and pin for Soil Moisture Sensor
int ldr = A0;//Assign input variable and pin for Light Sensor
int hm = A2;//Assign input variable and pin for Humidity Sensor
int temp = A1;//Assign input variable and pin for Temperature Sensor
//Variables declaration
int smValue,ldrValue,hmValue,tempValue,lightValue,soilValue; 
float hmVoltage,relativeHm,tempVoltage,degreesC,degreesF;

/**********************/



void setup()  // this setup code here is to run once:
{
int minu,hours,secs;
  
lcd.begin(20, 4);//Declaration of LCD size and begin the LCD
//mySerial.begin(9600);//Start the Serial Communication between GSM and GR-Kaede
Serial.begin(9600);//Start the Serial Monitor

/****** Check RTC whether begins or not*******/

if (! rtc.begin()) {
    Serial.println("Couldn't find RTC");
    while (1);
  }

/****** Check RTC whether running or not*******/
if (! rtc.isrunning()) {
    Serial.println("RTC is NOT running!");
    // following line sets the RTC to the date & time this sketch was compiled
    rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
    // This line sets the RTC with an explicit date & time, for example to set
    //January 21, 2014 at 3am you would call:
    //rtc.adjust(DateTime(2016, 3, 27, 9, 5, 30));
  }

/************ PIN CONFIGURATION *************************/

pinMode(sm, INPUT);//Assign Soil Moisture Sensor as Input
pinMode(ldr, INPUT);//Assign Light Sensor as Input
pinMode(hm, INPUT);//Assign Humidity Sensor as Input
pinMode(temp, INPUT);//Assign Temperature Sensor as Input

pinMode(control,INPUT);
pinMode(well,INPUT);
pinMode(bore,INPUT);
pinMode(well_run,OUTPUT);
pinMode(bore_run,OUTPUT);


/**********************/
lcd.clear();//Clear the LCD
lcd.setCursor(0, 0);//Set the cursor to origin point
lcd.print("INTERNET OF FARMING ");//To print SMART AGRICULTURE in LCD
lcd.setCursor(0, 1);//Set the cursor to next row
lcd.print("(IOF) TIME:");//TO print SYSTEM in LCD
/**********************/

digitalWrite(well_run,HIGH);
digitalWrite(bore_run,HIGH);
//lcd.setCursor(0, 2);
//lcd.print("Wait a min to setup");          
//delay(5000); 
//lcd.setCursor(0, 2); 
//lcd.print("                   ");
}
void loop() // put your main code here, to run repeatedly:
{
/*************** Time Configuration ************************/
int minu,hours,secs;
    DateTime now = rtc.now();
    
    //Serial.print(now.year(), DEC);
    //Serial.print('/');
    //Serial.print(now.month(), DEC);
    //Serial.print('/');
    //Serial.print(now.day(), DEC);
    //Serial.print(" (");
    //Serial.print(daysOfTheWeek[now.dayOfTheWeek()]);
    //Serial.print(") ");
    
/***************** Display Time in LCD Screen*********/
    lcd.setCursor(12, 1);//Set the cursor in LCD to 2nd row 11th Column
    lcd.print("        ");
    lcd.setCursor(12, 1);
    lcd.print(now.hour(), DEC);
    lcd.print(':');
    lcd.print(now.minute(), DEC);
    lcd.print(':');
    lcd.print(now.second(), DEC);
    //Serial.println();

/*************** End of displaying time in Lcd**************/

minu=now.minute(),DEC;
hours=now.hour(),DEC;
secs=now.second(), DEC;
//Serial.println(hours);
//Serial.println(minu);



/*************** End of Configuration *************************/
        
       
ldrValue = analogRead(ldr);//Read Light Sensor Voltage Value
lightValue = ldrValue/10 +40; // Added to remove garbage value
smValue = analogRead(sm);// Read Soil Moisture Sensor Voltage Value
smValue = smValue - 20;// Added to remove garbage value
hmValue = analogRead(hm);//Read Humidity Sensor Voltage Value
hmVoltage = (hmValue/1023.0)*5.0; // Convert hmValue to voltage (5V circuit)
relativeHm = ((hmVoltage-0.958)/0.0307)+53; // Convert voltage to relative humidity
tempValue = analogRead(temp);//Read Temperature Sensor Voltage Value
degreesC = (tempValue / 10)+29;
degreesF = degreesC * 1.8 + 32;
       
       
       
/**********************/
       
 //Soil Moisture Sensor Details

Serial.print("Soil Moisture : ");//Print "Soil Moisture : " in Serial Monitor
lcd.setCursor(0, 2);//Set the cursor in LCD to 2nd row 4th Column
lcd.print(" SM:");//To print "SM:" in LCD display
lcd.setCursor(5, 2);//Set the cursor in LCD to 2nd row 8th Column
lcd.print("     ");
lcd.setCursor(5, 2);
lcd.print(smValue);//Display the Soil moisture level in LCD
Serial.print(smValue);//Display the Soil moisture level in Serial Monitor 


  //Light Sensor Details

Serial.print("| Light : ");//Print "Light : " in Serial Monitor
lcd.setCursor(0, 3);//Set the cursor in LCD to 3rd row 0th Column
lcd.print(" L :");
lcd.setCursor(5, 3);//Set the cursor in LCD to 3rd row 2nd Column
lcd.print(lightValue);
lcd.print("% ");
Serial.print(lightValue);//Display the Light Intensity level in Serial Monitor

  //Humidity Sensor Details 

Serial.print("% | Humidity : ");//Print "Humidity : " in Serial Monitor
lcd.setCursor(9, 3);//Set the cursor in LCD to 3rd row 5th Column
lcd.print("HM:");
lcd.setCursor(13, 3);//Set the cursor in LCD to 3rd row 8th Column
lcd.print(relativeHm);
lcd.print("%");
Serial.print(relativeHm); //Display the Humidity level in Serial Monitor


  //Temperature Sensor Details 

Serial.print("% | Temperature : ");//Print "Temperature : " in Serial Monitor
lcd.setCursor(9, 2);//Set the cursor in LCD to 2nd row 11th Column
lcd.print(" T:");
lcd.setCursor(13, 2);//Set the cursor in LCD to 2nd row 14th Column
lcd.print(int(degreesC));
lcd.print(" 'C ");
Serial.print(degreesC);//Display the Temperature - Celsius in Serial Monitor
Serial.print("C ");

Serial.print(degreesF);//Display the Temperature - Fahrenheit in Serial Monitor
Serial.println("F "); 

/************ Read Control from Raspi and DTMF ***************/
control_status = digitalRead(control);// Read Control from Raspi
well_status = digitalRead(well);//Read Well motor control from DTMF
bore_status = digitalRead(bore);// Read Bore motor control from DTMF
delay(1000);
/*******************Check pin for Automatic Control from Raspi*******************************/
if(control_status == HIGH) //Check for control from Raspi
{
/*************Turn off all motor initially******************/
    digitalWrite(well_run,HIGH);//Turn off well motor
    digitalWrite(bore_run,HIGH);//Turn off bore motor
  if((smValue >= 850)&&(lightValue >=20)&&control_status == HIGH)
  {
  digitalWrite(well_run,LOW);//Relay Inverted INPUT(LOW instead of HIGH)
  delay(20000);//Well motor running time
  digitalWrite(well_run,HIGH);//Turn off well motor
  digitalWrite(bore_run,LOW);// Turn on Bore motor
  delay(10000);//Bore motor running time
  digitalWrite(bore_run,HIGH);//Turn off bore motor
  }
  else
  {
    digitalWrite(well_run,HIGH);//Turn off well motor after reaches 70% moisture level
    digitalWrite(bore_run,HIGH);//Turn off bore motor after reaches 70% moisture level
  }
}

/*************End fo Auto Control********************/
if(well_status == HIGH)//Check well motor status from DTMF
{
  digitalWrite(well_run,LOW);//Turn on well motor
}
if(well_status == LOW)//check well motor status from DTMF
{
  digitalWrite(well_run,HIGH);//Turn off well motor
}
if(bore_status == HIGH)//Check bore motor status
{
  digitalWrite(bore_run,LOW);//Turn on bore motor
}
if(bore_status == LOW)//Check bore motor status
{
  digitalWrite(bore_run,HIGH);//Turn of bore motor
}
}
/****************End of Loop *******************************/


/********************SEND MESSAGE ****************/

void checkConditions()
{
  if(smValue > 850 && (int)relativeHm > 20)//Check soil and air moisture is below 70%
  {
    if((int)degreesC > 20 && lightValue > 25)//Do not required to feed at night time
    {
      sendMessage();
    }
  }
}

void sendMessage()
{
  mySerial.println("AT+CMGF=1"); //Sets the GSM Module in Text Mode
  delay(500); // Delay of 500 milli seconds or 1/2 second
  mySerial.println("AT+CMGS=\"+919688755885\"\r"); //Declaring Mobile number with Country code
  delay(500);
  mySerial.print(" Soil Moisture : ");
  mySerial.print(smValue);
  mySerial.print(" % ");
  mySerial.println(" Light Level : ");
  mySerial.print(ldrValue);
  mySerial.print(" % ");
  mySerial.println(" Humidity : ");
  mySerial.print(hmValue);
  mySerial.print(" % ");
  mySerial.println(" Temperature : ");
  mySerial.print(tempValue);
 delay(100);
 mySerial.println("1\x1A");// ASCII code of CTRL+Z
 delay(500); 
}





/******************* END OF ARDUINO PROGRAM ********************/

Raspberry Pi CODE

Python
import sys  #importing system files
import os #importing os files
import time #importing time control
import telepot #importing telecommunication files
import shlex
from datetime import datetime #importing date files for specifying particular date
from datetime import timedelta #importing date files for specifying particular time
import datetime as dt

import RPi.GPIO as GPIO #importing GPIO files
from functools import partial

before = 0;

GPIO.setwarnings(False) #Stop Warnings 
GPIO.setmode(GPIO.BOARD) #Set pins mode
GPIO.setup(7,GPIO.OUT) #Set Raspi 7th pin as OUTPUT
GPIO.setup(11,GPIO.OUT) #Set Raspi 11th(well motor) pin as OUTPUT
GPIO.setup(12,GPIO.OUT)#Set Raspi 12th(bore motor) pin as OUTPUT

GPIO.output(12,1) #Make well motor to OFF
GPIO.output(11,1) #Mkae bore motor to OFF

def handle(msg): #defining message handling function from telegram
    chat_id = msg['chat']['id'] #get chat id
    command = msg['text'] #get telegram message

    print ('Got command: %s') % command #Receive and display command in Screen
    
    if (command == '/well_motor_off'): #Check command from Telegram Bot
                
        bot.sendMessage(chat_id,'Well Motor turned OFF.')
        GPIO.output(11,1)
        #return;
    elif (command == '/bore_motor_off'): #Check command from Telegram Bot
                
        bot.sendMessage(chat_id,'Bore Motor turned OFF.')
        GPIO.output(12,1)
        #return;
    elif (command == '/start_auto'): #Check command from Telegram Bot
                
        bot.sendMessage(chat_id,'Hurry! Auto-motoring ON.')
        GPIO.output(7,1)
        #return;
    elif (command == '/stop_auto'): #Check command from Telegram Bot
                
        bot.sendMessage(chat_id,'Ho! Ho! Auto-motoring OFF.')
        GPIO.output(7,0)
        #return;  
    elif (command == '/well_motor_on'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Well Motor turned ON.')
        GPIO.output(11,0)
        #return;
    elif (command == '/bore_motor_on'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Bore Motor turned ON.')
        GPIO.output(12,0)
        #return;
    elif (command == '/start'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Welcome Farmer! \nHow can I help you? \nGet HELP => /help ')
        #return;
       

    elif (command =='/about'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Telegram IOFarming bot v1.2b\n\nProgrammer: Krishnaraj\n     @krishna4291083 \nEmail: krishnaraj.v2013eee@sece.ac.in')
        #return;
    elif (command =='/author'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Telegram IOFarming bot v1.2b \nAbout Author of IOFarming\n ******************* \n Dev.:\n Krishnaraj V\nStudent\nDepartment of Electrical and Electronics\nSri Eshwar College of Engineering\nCoimbatore - 641 202')
        #return;
    elif (command =='/project'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'Project Details: \n Project Topic: Internet Of Farming(IOF) \n Team Name: SECE Innovators \n Demo on: TAFE Project Expo, Chennai \n Members: \n1. Krishnaraj V EEE \n2. Adharsh Babu S EEE \nContact: @krishna4291083')
        #return;    
    elif (command == '/id'): #Check command from Telegram Bot
        iid = 'Your telegram id : '+str(chat_id)
        bot.sendMessage(chat_id,iid)
        #return;
    elif (command == '/help') or (command == '?'): #Check command from Telegram Bot
        bot.sendMessage(chat_id,'They call me IOFarming Bot, I can help you to get status and control of motor through this bot.\n Commands List:\n**************\n\n \n/well_motor_on-To TURN ON Well Motor\n/well_motor_off-To TURN OFF well motor\n/bore_motor_on-To TURN ON bore motor\n/bore_motor_off-To TURN OFF bore motor\n/start_auto-To Start Motoring Automatically\n/stop_auto-To stop Motoring Automatically\n/id-Get your unique ID\n/about-It is all about us\n/project-About project\n/author-To get author description \n\nCommands is not case-sensitive.')
        #return;
    else:
        bot.sendMessage(chat_id,'Sorry! COMMAND NOT EXISTS! \nFor more information please send /help or ? \nCommands is not case-sensitive.')

        #return;
			
bot = telepot.Bot('186745884:AAF9pVO1KVIaoap_FKMUFAnzqAtEIq5d9U8')
bot.notifyOnMessage(handle)
print ('I am listening ...') #Display in Terminal when this program runs without any error.

while 1:
    time.sleep(3) #delay for 5 seconds



‘’’’ *************** END OF RASPBERRY PI PROGRAM ********** ‘’’’

Credits

KRISHNARAJ V
1 project • 61 followers
Software Trainee | Electrical and Electronics Engineer | Embedded Systems | Internet of Things | Electronic Hobbiest
Contact

Comments

Please log in or sign up to comment.