In this post I will show how to construct a farmer friendly GSM pump motor controller circuit which could
turn on and off the irrigation system remotely from anywhere in the world via cellphone SMS and return you with an acknowledgement message. The idea was requested by Mr. PG Ragavandir.
The Design
Agriculture is one of biggest industry in India which serves food for more than a billion people every year. Producing vast amount of food is never an easy task; irrigation is one of the factor.
Most of the agriculturist’s crop field is situated far from their residence, just turning on the water pump costs huge for their transportation per year.
India is known for IT skills and space programs and reached mars less than cost of movie “Gravity”, this signifies the great potential among Engineers and Scientists. But, the skills are not uniformly distributed across different fields; agriculture is one of the field where technological development is slow.
This SMS based GSM pump motor controller takes a baby step towards agricultural development, this may not be a revolutionary project but, it may bring delight among agriculturists.
Let’s dive into technical part of the project.
The project is designed with minimal hardware components so that a beginner can accomplish it with ease.
The circuit consists of power supply, which powers the whole setup.
The Arduino is the brain of the project which take decisions and GSM modem which sends and receives text SMS and communicate with the user and relay which controls the motor.
How it Works

Note: Please use at least 10K resistor at the base of the BC548 transistor, 330 Ohms is too low.
The transformer step down the 230VAC to 12VAC and bridge rectifier convert AC onto DC current and the current passes through an electrolytic capacitor to smooth the power supply.
A fixed 12V voltage regulator gives power to arduino, GSM modem and relay. The GSM modem is connected to arduino at pin #0 and pin #1, which are RX and TX respectively.
The RX of GSM is connected to TX of arduino and TX of GSM is connected to RX of arduino. If you are confused, just look at the below diagram, misconnection will not send or receive SMS.
ARDUINO TX----------------------RX GSM modem
RX----------------------TX
Ground to ground connection is also established between arduino and GSM modem.
Try to get a male jack power connector for the GSM and arduino, if not just solder the wires directly from power supply to arduino and GSM, which might increase the mess in the project.
The transistor drives the relay and the diode protects the circuit from high voltage spikes while switching the relay ON/OFF.
The LED indicator shows the status of the relay. If the LED glows the relay activated and if the LED is off, the relay is deactivated.
Insert a valid SIM on the GSM modem and try to take advantage of the offers availed by the network provider for SMS such as rate cutters, which will reduce the expenses for SMS.
Program Code:
//---------------- Program developed by R.Girish ----------------//
int LED = 8; // Status LED pin
int motor = 9; // Motor relay control pin
int temp = 0; // Flag to indicate end of command reception
int i = 0; // Index for command buffer
char str[15]; // Buffer to store received SMS command
//----------------------------------------------------------------
void setup()
{
Serial.begin(9600); // GSM module baud rate
pinMode(motor, OUTPUT); // Motor relay output
pinMode(LED, OUTPUT); // LED output
digitalWrite(motor, LOW); // Motor OFF initially
digitalWrite(LED, LOW); // LED OFF initially
// Give GSM module enough time to register to network
delay(20000);
delay(20000);
delay(20000);
// Enable new SMS indication directly on serial
Serial.println("AT+CNMI=2,2,0,0,0");
delay(1000);
// Set SMS text mode
Serial.println("AT+CMGF=1");
delay(500);
// Send startup confirmation SMS
Serial.println("AT+CMGS="+91xxxxxxxxxx"r"); // Replace x with your mobile number
delay(1000);
Serial.println("System is ready to receive commands.");
delay(100);
Serial.println((char)26); // CTRL+Z to send SMS
delay(1000);
}
//----------------------------------------------------------------
void loop()
{
// If a full command is received
if (temp == 1)
{
check(); // Process the received command
temp = 0; // Reset flag
i = 0; // Reset buffer index
delay(1000); // Small delay for stability
}
}
//----------------------------------------------------------------
// Automatically called when serial data is received
void serialEvent()
{
while (Serial.available())
{
// Look for starting delimiter '/'
if (Serial.find("/"))
{
delay(1000); // Wait for complete message
while (Serial.available())
{
char inChar = Serial.read();
str[i++] = inChar; // Store character
// Look for ending delimiter '/'
if (inChar == '/')
{
temp = 1; // Command received completely
return;
}
}
}
}
}
//----------------------------------------------------------------
// Function to compare received command and take action
void check()
{
// Command: motor on
if (!(strncmp(str, "motor on", 8)))
{
digitalWrite(motor, HIGH); // Turn motor ON
digitalWrite(LED, HIGH); // LED ON
delay(1000);
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("Motor Activated");
delay(100);
Serial.println((char)26);
delay(1000);
}
// Command: motor off
else if (!(strncmp(str, "motor off", 9)))
{
digitalWrite(motor, LOW); // Turn motor OFF
digitalWrite(LED, LOW); // LED OFF
delay(1000);
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("Motor deactivated");
delay(100);
Serial.println((char)26);
delay(1000);
}
// Command: test
else if (!(strncmp(str, "test", 4)))
{
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("The System is Working Fine.");
delay(100);
Serial.println((char)26);
delay(1000);
}
}
//---------------- Program developed by R.Girish ----------------//
NOTE 1: While compiling the program it shows a warning, which you can ignore it. The program is verified and tested.
NOTE 2: Please remove TX and RX connection from arduino while uploading the code.
NOTE 3: Replace “xxxxxxxxxxxxx” with recipient’s phone number in 4 places in the program.
NOTE 4: Please purchase a GSM modem without power button in the module; in case of power failure it won’t latch in into mobile network unless you manually press the button, so avoid such type of GSM modems. The GSM modem one without power button will latch into mobile network directly after power retains.
Author’s Prototype of GSM Pump Motor Controller Circuit:

How to use the above setup:
• Send /motor on/ SMS from your cellphone to activate the relay.
• Send /motor off/ SMS to deactivate the relay.
• Send /test/ SMS for testing the response from the circuit.
Make sure you start the command with”/” and end with “/” otherwise it won’t accept as valid request.
• /motor on/ will turn ON the relay and return with an acknowledgement SMS “Motor Activated.”
• /motor off/ will turn off the relay and return with an acknowledgement SMS “Motor Deactivated.”
• If you send /test/ it will return with an acknowledgement SMS “The System is Working Fine.”
• The above message signifies that your setup is working fine.
• If no acknowledgement is returned to you can assume that no action is preceded on the motor and you may troubleshoot the problems.
• After powering the setup ON wait for 1 minute the system will send an acknowledgement SMS “System is ready to accept commands.” once you receive this SMS your project is ready to serve.
The above commands are fool proof and never trigger the motor falsely, the setup will not respond any SMS other than the above specified commends.
Improving the above Concept
This above GSM pump application circuit attracted lots of readers and we have received tons of queries and suggestions. One of the avid readers of this website Mr.Gandhi suggested a good improvement to the prior design.
SMS Acknowledgement When Motor is Actually ON
The improvement is all about the revert acknowledgement, where the user will receive a SMS response in his cellphone from the GSM pump controller system when a user sends a valid SMS comment.
The existing design sends an acknowledgement SMS to the user independent of the actual state of the relay i.e. ON/OFF.
The new design change suggested by Mr.Gandhi checks the state of the relay whether the relay is physically switched its state or not.
The change as per this new GSM water pump controller design can be implemented to the previous design without much hassle by adding a feedback system as shown in the schematic and uploading the new code.
Circuit Diagram:

When we send SMS command “/MOTOR ON/” the pin # 9 goes high and trigger the relay ON. If the relay connects the common and N/O pins the pump starts and also turns ON the transformer which will give +5 at the output.
The +5V signal is fed to pin # 7 which will confirm and return with an acknowledgement “Motor activated”.
When we send “/MOTOR OFF/” the pin # 9 turns LOW and relay disconnects the common and N/O pins, this will turn off the pump as well as the connected transformer. The output at pin # 7 goes LOW and returns with an acknowledgement “Motor deactivated”.
If no acknowledgement SMS is received in your cellphone, we can confirm that no action was taken and the pump is at the last requested state, you may go to the site and troubleshoot or no acknowledgement is received due power cut.
Program Code:
//---------------- Program developed by R.Girish ----------------//
// Pin definitions (do NOT change to keep circuit intact)
int motor = 8; // Relay / Motor control pin
int LED = 9; // Status LED
int ack = 7; // Acknowledgement feedback pin
// Variables for SMS parsing
int temp = 0; // Flag to indicate full command received
int i = 0; // Index for character buffer
char str[15]; // Buffer to store incoming SMS command
void setup()
{
// Initialize serial communication with GSM module
Serial.begin(9600);
// Pin configuration
pinMode(ack, INPUT);
pinMode(motor, OUTPUT);
pinMode(LED, OUTPUT);
// Ensure outputs start in OFF state
digitalWrite(motor, LOW);
digitalWrite(LED, LOW);
// GSM module startup delay (network registration time)
delay(20000);
delay(20000);
delay(20000);
// Configure GSM module for direct SMS display
Serial.println("AT+CNMI=2,2,0,0,0");
delay(1000);
// Set SMS text mode
Serial.println("AT+CMGF=1");
delay(500);
// Send startup confirmation SMS
Serial.println("AT+CMGS="+91xxxxxxxxxx"r"); // Replace with your number
delay(1000);
Serial.println("System is ready to receive commands.");
delay(100);
Serial.println((char)26); // CTRL+Z to send SMS
delay(1000);
}
void loop()
{
// If a complete command is received
if (temp == 1)
{
check(); // Process the command
temp = 0; // Reset flag
i = 0; // Reset buffer index
memset(str, 0, sizeof(str)); // Clear buffer
delay(1000);
}
}
// This function automatically runs when serial data arrives
void serialEvent()
{
while (Serial.available())
{
// Look for starting delimiter '/'
if (Serial.find("/"))
{
delay(1000);
while (Serial.available())
{
char inChar = Serial.read();
// Store character safely in buffer
if (i < sizeof(str) - 1)
{
str[i++] = inChar;
str[i] = ' '; // Always keep string terminated
}
// End delimiter '/' detected
if (inChar == '/')
{
temp = 1; // Signal full command received
return;
}
}
}
}
}
// Command processing function
void check()
{
// Turn motor ON command
if (!(strncmp(str, "motor on", 8)))
{
digitalWrite(motor, HIGH);
delay(100);
// Check acknowledgement feedback
if (digitalRead(ack) == 1)
{
digitalWrite(LED, HIGH);
delay(1000);
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("Motor Activated");
delay(100);
Serial.println((char)26);
delay(1000);
}
}
// Turn motor OFF command
else if (!(strncmp(str, "motor off", 9)))
{
digitalWrite(motor, LOW);
delay(5000);
if (digitalRead(ack) == 0)
{
digitalWrite(LED, LOW);
delay(1000);
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("Motor deactivated");
delay(100);
Serial.println((char)26);
delay(1000);
}
}
// System test command
else if (!(strncmp(str, "test", 4)))
{
Serial.println("AT+CMGS="+91xxxxxxxxxx"r");
delay(1000);
Serial.println("The System is Working Fine.");
delay(100);
Serial.println((char)26);
delay(1000);
}
}
//---------------- Program developed by R.Girish ----------------//
The above implementation is not practically tested, but the author is cent percent sure that above idea will work. If readers found any issues with the above improvement can express through the comment section.
Part List
1) Transformer step down 12-0V
2) Diodes IN4007 x5
3) LM7812 x1
4) Relay 12V x1
5) BC548 Transistor x1
6) Electrolytic Capacitor 1000uF x1
7) GSM module: SIM 800 or SIM 900 model
8) 330 Ohm Resistor x2
9) LED RED/GREEN x1
10) Arduino Uno or Arduino nano or Arduino Mega
11) DC male jack x2
Video Clip:
Integrating with 3 Phase Motors
I have been receiving many requests to upgrade the relay stage for the above design so that it becomes compatible for operating 3 phase motors using GSM cell phone commands.
Therefore I decided to design the required circuit which will hopefully be able to switch ON and switch OFF a given 3 phase motors having the typical start and stop contactor mechanism.
The following figure shows how to configure the design using an IC 4017 circuit.

NOTE: The 100uF /10K and 220uF and 47K values may need some adjustments in order ensure the correct amount of delay for the respective transistors and relay stages.



Questions & Answers
Hai sir…I'm new for Aurdino…
So pls tell the Model no of Aurdino…
And How to program the Aurdino sir…
Hi Kesava, you will have to go through an extensive course to learn Arduino, it cannot be taught here in comments or through a few articles.
Is there any book available sir
you can find many good online tutorials with videos…
Sir i have one doubt abt PIR SENSOR…
I bought from Amazon.Using rest room Pir sensor out..connected with transistor & relay its working well…but sometimes its flashing..
While flashing time i enter inside its working well…whats the reason for flashing..
It could be due to some stray signal pick up, try connecting a 10uF or any high value capacitor across base/emitter of the transistor and check the response
Sir I need automatic water tank overflow control circuit Using microcontroller with full detailed coding.
Naresh, if possible I'll try to include it soon.
Already i connected sir…10uf 63v electrolyatic capacitor…same prblm coming sir…..when i enter inside it glowing well the flashing will be stop…and after 3 min it will be off …after 1 hour it will be flashing.
Sensor problem means it won't work when we enter…
try connecting a filter capacitor immediately across the supply pins of the PIR, and also connect an LED in series with the transistor base and PIR o/p pin…..just to monitor the PIR output response….
I'm using NPN transistor …
Transistor base want to connect ANODE of LED ?
and CATHODE of led to PIR o/p….
We want to use resistor & led in series or only led in series
anode will connect with PIR o/p, and cathode towards the transistor base with the resistor in series…the resistor can come at the LeD anode or at the LeD cathode.
PIR——>|—-^^^^—–base
PIR——^^^^—–>|—–base
In u r PIR post i see one..ckt
In the transistor emitter and base across one capacitor 25V 470uf…
I make in my circuit..Now its working fine sir…
I want to know the reason ..
1.Y its making flashing while I'm using 10uf capacitor…
2.when we increase capacitor value it not flashing and working good..
What is the function of capacitor in this PIR circuit…
Now its working well..
I'm so happy sir..
Thank u very much sir..
Kesava, I am glad you could correct the fault, however flashing should not have happened, that's something you will have to identify yourself, or you can change the PIR and see if the fault persists.
increasing the capacitor effectively grounded the stray signals which was causing the fluctuations, and therefore the flashing stopped
If u r using pir circuit pls give the link id sir
Instead of using PIR .I have one idea by using IR ,PHOTO DIODE and CD4017…when we give one postive pulse to PIN 14 the CD 4017 One channel will active i seen this circuit in Infrared using on off for home appliance…
.I'm modifying the circuit..I'm using IR bulb it will continuously glow when we enter inside the ir will reflect the signal to photodiode . The photo diode will give signal to PNP transistor to activate the CD4017..now the o/p will be active…when we go outside of the room the reflection will happen again and the o/p will be off…
I didn't try this circuit….If it's correct means i will try sir….pls give me SUGGESTIONS sir….
yes you can alternatively try other types of sensors for sensing an intrusion.
you can try a proximity detector circuit for the same.
surely a 4017 flip flop circuit can be used for implementing the toggling action of a relay by integrating it with any form of intrusion detector sensor.
Dear Sir,
Thanks for your response for this circuit, and I thank Mr. Radhakrishnan too.
I will try to make this, If I achieved this for sure will tell your name & Mr. Radhakrishnan's name to whom all I try to help.
Great for you both, may GOD bless
Thanks & Best Regards
PG Ragavandir
You are welcome Ragavan! Wish you all the best…
Dear Sir,
As you told Circuit is working sir, I got the commend(System is ready to accept commands)when we switch "ON" the circuit.
But after getting that how many calls I have to do? I tried calling that number (call is going) but Relay is not getting activated and LED is also not glowing. Please help me to solve this problem sir.
Best Regards
PG Ragavandir
Dear Ragavan, Mr. GR will answer your question soon.
Hi Ragavan,
Your system is working fine if you receive "System is ready to accept commands".
You must send text SMS to the number not calling.
Use /motor on/ to activate the relay.
Use /motor off/ to deactivate the relay.
Use /test/ for testing the response from the circuit.
Start the command with”/” and end with “/” otherwise it won’t accept as valid request.
Try to read the complete article as it is mentioned in the post 🙂
Regards
Dear Swagatam Sit & Radhakrishnan Sir,
Thanks for your immediate reply.
As you told I did sir but sorry for saying, same message is coming as ready,
Now I connected Arduino with PC to check comment prompt. In that I gave comment as your instruction but same happening sir. Relay is not switching "ON or OFF"
Sir if possible can you please share your phone number or Gmail ID so that call or chat. Please help
Best Regards
PG Ragavandir
Hi ragavan,
I think you are totally confused!!!
you must send SMS commands as mentioned earlier from your mobile (the number which you have entered in the code) to the number of sim card which you have inserted in GSM module. That's all, and you will receive an acknowledgement SMS from GSM module. Every time you power on you will get that test SMS.
Command prompt??? you mean serial monitor? No need to type any comment on that and no need to connect arduino to PC other than uploading the code.
Any problem we are here to help.
Best Regards
Dear Sir,
Thanks for your reply, sorry for my late reply.
I have to send SMS from my phone to the SIM in GSM number like "Motor ON & Motor OFF" right?
Your right as you told I have typed in serial monitor only sir, sorry.
Now will try and tell the result.
Best Regards
PG Ragavandir
Hi ragavan,
Send sms /motor on/, /motor off/
Starting and ending with "/".
Regards
Dear Sir,
Working sir, thanks a lot, "HATS OFF" for both,
but this is working through only sending SMS "motor ON" and "motor OFF"? or we can Call and control also?
Best Regards
PG Ragavandir
Hi ragavan,
I am glad that it worked.
It can be controlled only by SMS
Regards.
Why gsm module don't send any acknowledgement message
Hi ranjan,
Please check your wire connections. We can't spot the reason why your circuit didn't work. Please elaborate your quires.
Regards
please help me sir i want to give this project in my final year project
I study in diploma 3rd year in ELECTRICAL
Dear GR sir,
I copy the program and replace "xxxxxxxx" by phone no. and compiled it,uploaded by aurdino software 1.0.3 version
Then I use gsm module sim800a
It has 4 no. of pin Tx,Rx,gnd,5v
I connect
Rx of aurdino——->Tx of gsm
Tx of aurdino——->Rx of gsm
gnd of aurdino——->gnd of gsm
5V of aurdino——->5V of gsm
Then give the supply to aurdino uno board
I use airtel 4g sim with 2g accessible
But it doesn't give any reply to the programmed phone number
Hi Ranjan,
Replace "XXXXX" with your phone number with +91 country code at beginning.
Do NOT use 5V arduino supply to GSM modem. You should power it separately from a wall adapter with 9V.
Let me know whether your GSM modem has power button, if so you should to press the power button for 3 seconds.
Make sure that your sim card is latched into mobile network. You can confirm this by looking at network LED blinking once every 3 seconds and not blinking at faster rate continuously.
Regards
It has not any power button
I also give phone number with our country code i.e.+91
Its network led doesn't blink in 3 second
Hi ranjan,
if the network LED is not blinking for every 3 second, there may be chance that your GSM modem is defective or the SIM is defective. Please confirm this before proceeding further steps.
Your may check your GSM modem by sending basic SMS:
https://www.homemade-circuits.com/2016/09/how-to-send-sms-using-gsm-modem-and.html
If your GSM modem can send SMS then its error with your wire connection.
Regards
can you please share your GSM modem's picture top and bottom view and share the link. Let me take a look….
How I share the picture
Hi Ranjan,
You have a slightly different kind of GSM modem than what I imagined, no problem.
you can test the GSM modem by following the link in the previous comment and comment your issues, let's resolve it.
Regards.
In this gsm module there are 3 led red,green,yellow and a buzzer.When i give supply to the gsm module the buzer is beep and red and yellow led is blink fast 3-4 time then off up to 30sec and the green led is always on
My link from which I purchase gsm module.
http://www.amazon.in/gp/aw/d/B01MSVR7NJ/ref=mp_s_a_1_17?ie=UTF8&qid=1487232078&sr=8-17&pi=AC_SX118_SY170_QL70&keywords=gsm+module#
Hi ranjan,
Looks good,
Insert the sim and call the number, you should get ring back. If this is done, try to send basic sms using your module from the link in previous comments.
Regards
But sir I shouldn't get any ring back sir.
I think I purchage your module.
Please sir send me your link from which you buy your module.
Hi ranjan,
I don't remember URL, but I purchased from amazon. Try searching SIM 800 and you may see a module similar to mine which is shown the link:
https://www.homemade-circuits.com/2016/09/how-to-send-sms-using-gsm-modem-and.html
Regards
Good morning,
Very good work. I want to ask if I want to put four relay;
What change in the code;
And command if(!(strncmp(str,"motor on",8))). The number 8 it says;
I tried the code on A6 GSM and it works fine.
Thank you very much.
Good morning,
Very good work. I want to ask if I want to put four relay;
What change in the code;
And command if(!(strncmp(str,"motor on",8))). The number 8 it says;
I tried the code on A6 GSM and it works fine
Thank you very much.
Thank you Konstantinos, I hope Mr. GR will see this comment and revert soon.
Dear swagatam ,
Can you ask me ,how many times can i pogeram a aurdino ,or is there any chance to rectify the pogram after uploded
Dear Kaushik,
there are no such restrictions, you can program as many times as you want and rectify the codes anytime after the upload
swagatam,
i have a doubt,can you guide me sir,in program front what will be the 1st line of program & what will be the last line of program to be copy for uploaded?
kaushik, this article was submitted by Mr. girish who is one of the authors of this blog, I hope he will find your comment and respond soon.