ABSTRACT:

The crop is basic reason of production of food and raw material, which eventually is reason of survival of the population. In Indian most of the population is dependent on crops. However, there is also need to review and revitalize the mechanism for updating the technology. In the upcoming years agriculture will see major changes. The main purpose for such project is to develop a mobile phonebased solution that helps in crop management, leads to agricultural yield improvement and helps in care/maintenance of the crops. The large amount of crop is getting damage in the field due to the bacterial attacks and lack of information resources. Annually, such loss exceeds 40% in total. So, the paper presented here suggest various ways in which a farmer can utilize on their handsets using application called “crop management system”, to assist them for relatively better cultivation and merchandise. Our proposed crop management system application will provides the details about customer and farmer and also it avoids the third party buyer problem which cause problem for farmers. This project used to search for fertilizer and cultivate crop. This helps to update the fertilizer and crop and cultivate. And shows the result of the crop cultivated.


EXISTING SYSTEM:

This project helps the farmer to get products for cultivation and also to improve the agriculture. There is no existing project to develop. This gets detailed information to develop for agriculture lands and products.

PROPOSED SYSTEM

Our proposed crop management system application will provides the details about customer and farmer and also it avoids the third party buyer problem which cause problem for farmers.

ARCHITECTURE:




SCREENSHOT:











SAMPLE CODE:

HOME.CS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace fertiliser
{
    public partial class Home : Form
    {
        public Home()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            Fertiliser fertile = new Fertiliser ();
          fertile.Show();
            this.Hide();

        }

        private void button2_Click(object sender, EventArgs e)
        {
            Crop crop = new Crop();
            crop.Show();
            this.Hide();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            Cropvsfertilizer crop = new Cropvsfertilizer();
            crop.Show();
            this.Hide();
        }

        private void button4_Click(object sender, EventArgs e)
        {
            searchfertiliser search = new searchfertiliser();
            search.Show();
            this.Hide();
        }
    }
}
FERTILIZER.CS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace fertiliser
{
    public partial class Fertiliser : Form
    {
        public Fertiliser()
        {
            InitializeComponent();
        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void textBox4_TextChanged(object sender, EventArgs e)
        {

        }

        private void Fertiliser_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "" || textBox2.Text == "" || dateTimePicker1.Text == "" || textBox4.Text == "")
            {
                MessageBox.Show("Please fill the above boxes");
            }
            else
            {
                SqlConnection con = new SqlConnection(@"Data Source=KIT2-PC\VENKAT ; Integrated Security = true ; Initial Catalog = fertiliser");
                con.Open();
                SqlCommand cmd = new SqlCommand(@"insert into fertilizer values('" + textBox1.Text + "','" + textBox2.Text + "','" + dateTimePicker1.Text + "','" + textBox4.Text + "')", con);
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MessageBox.Show("Data inserted Successfully");


                }
                else
                {
                    MessageBox.Show("Data not inserted successfully");
                }
                con.Close();
            }
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Home fertiliser = new Home();
            fertiliser.Show();
            this.Hide();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {

        }

        private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }
    }
}




SEARCH FERTILIZER.CS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace fertiliser
{
    public partial class searchfertiliser : Form
    {
        public searchfertiliser()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection connc = new SqlConnection(@"Data Source =KIT2-PC\VENKAT; Integrated Security =true;Initial Catalog=fertiliser");
            connc.Open();


            SqlCommand cmd1 = new SqlCommand("Select Name from  fertilizer", connc);

            //SqlDataReader reader = cmd1.ExecuteReader();
            //AutoCompleteStringCollection MyCollection = new AutoCompleteStringCollection();
            //while (reader.Read())
            //{
            //    MyCollection.Add(reader.GetString(0));
            //}
            //textBox1.AutoCompleteCustomSource = MyCollection;


            string filterval1 = textBox1.Text;

            SqlCommand cmd = new SqlCommand(@"select * from  fertilizer where Name='" + filterval1 + "'", connc);
            SqlDataAdapter dta = new SqlDataAdapter(cmd);
            DataSet dts = new DataSet();
            dta.Fill(dts);

            dataGridView1.DataSource = dts.Tables[0];

            connc.Close();
            
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Home search = new Home();
            search.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            {
                textBox1.ResetText();
                
            }
        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
        
        }

        private void label2_Click(object sender, EventArgs e)
        {
        
        }
    }
}







CROP.CS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace fertiliser
{
    public partial class Crop : Form
    {
        public Crop()
        {
            InitializeComponent();
        }

        private void Crop_Load(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Home crop = new Home();
            crop.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "")
            {
                MessageBox.Show("Please fill the boxes");
            }
            else
            {
                SqlConnection con = new SqlConnection(@"Data Source=KIT2-PC\VENKAT ; Integrated Security = true ; Initial Catalog = fertiliser");
                con.Open();
                SqlCommand cmd = new SqlCommand(@"insert into crop values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "')", con);
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MessageBox.Show("Data inserted Successfully");


                }
                else
                {
                    MessageBox.Show("Data not inserted successfully");
                }
                con.Close();

            }
        }
        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }
    }
}



CROP VS FERTILIZER.CS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace fertiliser
{
    public partial class Cropvsfertilizer : Form
    {
        public Cropvsfertilizer()
        {
            InitializeComponent();
        }

        private void Cropvsfertilizer_Load(object sender, EventArgs e)
        {

        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == ""|| textBox2.Text == ""|| textBox3.Text == "")
            {
                MessageBox.Show("Please fill the details above");
            }
            else
            {

                SqlConnection con = new SqlConnection(@"Data Source=KIT2-PC\VENKAT ; Integrated Security = true ; Initial Catalog =fertiliser");
                con.Open();
                SqlCommand cmd = new SqlCommand(@"insert into cropfertiliser values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "')", con);
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MessageBox.Show("Data inserted Successfully");


                }
                else
                {
                    MessageBox.Show("Data not inserted successfully");
                }
                con.Close();

            }
        }
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Home cropvsfertilizer = new Home();
            cropvsfertilizer.Show();
            this.Hide();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            textBox1.ResetText();
            textBox2.ResetText();
            textBox3.ResetText();
        }
    }
}



MODULES SPECIFICATION:

A module is a part of a program. Programs are composed of one or more independently developed modules that are not combined until the program is linked. A single module can contain one or several routines. The project contains the following main modules.
• Home Module
• Fertilizer Module
• Search fertilizer Module
• Crop Module
• Crop vs fertilizer Module
• Search crop Module



HOME MODULE:

This module the buttons of other modules where connected here and the connected modules are listed below.
• fertilizer module
• search fertilizer module
• crop module
• crop vs fertilizer module
• search module



FERTILIZER MODULE:

In fertilizer module, we can update the newly arrived fertilizer for later use then it will store the databae of the fertilizers. Fields required in this module are listed below
• name of the fertilizer : the fertilizer name
• type of fertilizer : the fertilizer type
• expiry date : date of expire
• components of fertilizer : the components of the fertilizer



SEARCH FERTILIZER MODULE:

In search fertilizer Module, we can search the fertilizers using their name which was saved already in the database. Fields required in this module are listed below
name of the fertilizer : fertilizers name



CROP MODULE:

The crop module is used to store the Entire details of the crop. Fields Required in this module are listed below:
• Name of the crop : Name of the staff
• cultivation period : DOB of staff
• crop usage : the use of the crop
• preferred soil : preferred soil for crop
• scientific name(if any) : scientific name of the crop



CROP VS FERTILIZER MODULE:

In this module, we can update the results of the crop using the fertilizer. Fields Required in this module are listed below:
• effect of crop : effect of the crop
• growth of crop : current growth of the crop
• quantity of crop : quantity of fertility



SEARCH CROP MODULE:

In search crop Module, we can search the crops using their name which was saved already in the database. Fields required in this module are listed below
name of the crop : crop name





ISO certified - B TECH MINI PROJECTS FOR ECE :

KaaShiv Offers, b tech mini projects for ece. b tech mini projects for ece includes Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development, Ethical hacking and Networking . This internship includes the topics related to b tech mini projects for ece 2nd year, b tech mini projects for ece 3rd year with circuit diagram.This company runs by,
    • 10 Years Awarded Microsoft Most Valuable Professional
    • Google Recognized Experts
    • Cisco Recognized Certified Experts
    • Microsoft Awarded Certified Experts
    • Robotics Experts
    • HCL Technologies Awarded Expert

Trainers at KaaShiv InfoTech are real-time Software / IT professionals worked in leading MNCs like,
    • CTS,
    • Wipro,
    • TCS,
    • Infosys,
    • Accenture and
    • Mindtree.

The Course curriculum for b tech mini projects for ece is carefully researched and prepared by professionals from MNC to meet the demands expected in the IT industry. After completing the mini project Training in Chennai at KaaShiv Infotech, students will be familiar with the Software development process followed in IT industry. Below are some of the insights of our b tech mini projects for ece .

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • b tech mini projects for ece students involves Full practical training
    • Hardware and software tools full support
    • Technology training
    • Placement training
    • Full documentation and report analysis
    • R & D projects
    • Industrial exposure
    • Endorsing Corporate skills

WHAT IS MINI PROJECT ?

    • The mini Projects plays a crucial role in the teaching-learning process.
    • It is also a way of identifying the ability of the student to perform an industrial project or applied research linked to the knowledge discipline.
    • A project is defined as an effort to create or modify a specific product or service.
    • Projects are temporary work efforts with a clear beginning and end.
    • mini project (or program) any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned (usually by a project team) to achieve a particular aim.

WHAT ARE THE BENEFITS GAINED BY DOING MINI PROJECT :

    • mini projects if done well can add a lot of credibility to your profile.
    • And especially your mini projects building experience can help you perform well in core job placements & higher studies admission interviews.

TIPS TO SELECT GOOD MINI PROJECTS:

    • Analyze the current trends
    • Focus your mini projects on any social issue
    • Get expert’s assistance whenever possible
    • Research about the mini projects done by your seniors
    • Refer the research journals published by scholars
    • Check the feasibility of your mini projects
    • Work with organizations like Kaashiv InfoTech

WHY, IEEE FOR CSE STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • b tech mini projects for ece students provides a real time exposure for the b tech mini projects for ece students on the latest and trending technologies. Below are some of the Top jobs in the IT Industry Job Openings ,
    • Software Developers – Good in Python, Machine Learning, Data Science and AI programming
    • BlockChain Administrators
    • IOT Specialists
    • Cyber Security
    • Web Application Developer – Web Designers
    • Information Security Analyst – Security Specialist
    • Network Engineers / Analyst
KaaShiv Infotech, b tech mini projects for ece - programme hornes you in the above said skills / job roles from basics to Advanced.

B TECH MINI PROJECTS FOR ECE - PROGRAMME HIGHLIGHTS :

    • b tech mini projects for ece program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • b tech mini projects for ece Report creation / Project Report creation
    • b tech mini projects for ece students based 2 projects ( real time)
    • Mini project Certificate & Inplant Training Certificate & Industrial exposure certificate + (Achievement certificate for best performers)

ADVANTAGES OF OUR-B TECH MINI PROJECTS FOR ECE :

    • Get Real Work Experience
    • Get a Taste of Your Chosen Field
    • Start Networking
    • Helps You Choose a Speciality
    • Helps You Become More Self-Confident
    • Boosts Your CV
    • Increases Your Market Value

B TECH MINI PROJECTS FOR ECE - MATERIALS :

    • b tech mini projects for ece student , includes Materials after the internship programme
    • Technological guidance and materials will be shared in entire year for the students to mold technically.
    • Our be student involves Free Projects at the end of the programme.

QUERIES OR CONTACT DETAILS :

Venkat (7667662428) and Asha (7667668009)
Email ID: kaashiv.info@gmail.com , priyanka.kaashiv@gmail.com

B TECH MINI PROJECTS FOR ECE- PROGRAMME DURATION :

1 months / 2 months / 3 months to 6 Months ( Any Number of Days - Based on student preferences)

WHO CAN ATTEND THIS B TECH MINI PROJECTS FOR ECE PROGRAMME :

b tech mini projects for ece - Programme can be attended by the students who are looking for b tech mini projects for ece / b tech mini projects for ece 2nd year/ b tech mini projects for ece 3rd year/b tech mini projects for ece final yaer

IEEE MINI PROJECTS FOR CSE- PROGRAMME OUTCOME :

1. Student will be specialized in Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development , Web designing and Networking concepts (Basics to Advanced)
2. Covering 45 concepts
3. Students will be getting trained in / writing 45 Programs – Will change based on the durations of the program.
4. 2 Projects and project documents will be given at the end of the program

REFERENCE YOUTUBE URL FOR B TECH MINI PROJECTS FOR ECE :

Check our Internship Training sample videos at this URL –
www.youtube.com/channel

REGISTRATION LINK FOR – B TECT MINI PROJECTS ECE :

b tech mini projects for ece - Offline - Office training
Fill our online Internship form

B TECT MINI PROJECTS FOR ECE – DEMO LINK :

Check out our Sample b tech mini projects for ece Content for the training
kaashivinfotech.com/inplant-training-in-chennai-for-cse-demo

CHECK OUR PREVIOUS TESTIMONIALS FROM STUDENTS FROM DIFFERENT COUNTRIES AND DIFFERENT STATES :

www.kaashivinfotech.com/testimonials/

CHECK OUR STUDENTS FEEDBACK ON OUR - B TECH MINI PROJECTS FOR ECE:

b tech mini projects for ece - Feedback - inplant-training-feedback /
b tech mini projects for ece - Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR B TECH MINI PROJECT FOR ECE:

internship-and-inplant-training-attendees/

CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS :

www.youtube.com/channel
Check our Social Service youtube channels

REAL TIME PROJECT :

We ranked Top 200 technological companies in Tamil Nadu, Click here to view

MORE ON OUR, B TECH MINI PROJECTS FOR ECE:

In our, internship on b tech mini projects for ece - programme below are following different kind of programmes focused such as,
1.b tech mini projects for ece (or) paid b tech mini projects for ece ,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. b tech mini projects for ece work from home – Our company provides facility for the students to learn from home as an b tech mini projects for ece based on latest technological trends.
3. b tech mini projects for ece report – Reports are also provided for the b tech mini projects for ece students in our company related
4. b tech mini projects for ece jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the b tech mini projects for ece in our company.
5. b tech mini projects for ece summer / Winter internship 2019/2020 – Summer / Winter holiday internship in mini projects will be given to the student based on the developer knowledge base.
6. b tech mini projects for ece interview questions – We provide top trending and frequently asked question for the intern students during the internship period based on software development and trending technologies.
7. b tech mini projects for ece test – Based on the students request, if you are looking for any test to validate your knowledge. we are ready to provide the same.
8. b tech mini projects for ece certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. b tech mini projects for ece online– Learn b tech mini projects for ece from home, our company perform internship through online too.
10. b tech mini projects for ece ppt / projects report – We provide b tech mini projects for ece based ppts. projects and project reports as materials after the internship in our company.
11. Free b tech mini projects for ece - Our company will provide b tech mini projects for ece the best students of kaashiv infotech.
12. Project For Diploma b tech mini projects for ece – We offer project for the diploma b tech mini projects for ece students in our company.
13. b tech mini projects for ece 2nd Year – Our company offers you b tech mini projects for ece the above students.


MORE PROJECTS