EngineersGarage

  • Engineers Garage Main Site
  • Visit our active EE Forums
    • EDABoard.com
    • Electro-Tech-Online
  • Projects & Tutorials
    • Circuits
    • Electronic Projects
    • Tutorials
    • Components
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • Advertise
You are here: Home / Replies / Hello Shafik n friends,We

Hello Shafik n friends,We

|

Microcontroller › 8051 › how to make complete project?burn program?which tool have to use? › Hello Shafik n friends,We

March 23, 2012 at 2:37 pm #7324
Ashish Chakole
Participant

Hello Shafik n friends,

We have been carrying out our project work based on ‘GSM based household meter tampering detection’.(program is given below) . We have experienced some problems while executing the program. It would be very kind of you to go through the program and suggest the corrections.
The sensors form the input to the microcontroller and a message should be sent as soon as the pin goes high. Also relays have to be controlled using sms sent by the user. 

We are also planning to interface a 16*2 LCD display (optional), which will display the same message as is to be sent through the GSM modem. If possible could you suggest the required changes in the current program.

We will be interfacing a SIM300 GSM modem.

It would be very kind of you to revert back. We have gone through all the programs in engineers garage, please mention any corrections wrt this program.

 

 

 

#include<reg51.h>
#define FREQ 12000000
#define baud 9600
#define spbrg_value (((FREQ/64)/baud)-1)

sbit seal=P2^0;
sbit magnet=P2^1;
sbit reversed=P2^2;

int i=0,j,k,temp;
unsigned char *sms_service=”AT<enter>”;
unsigned char *sms_format=”AT+CMGF=1<enter>”;
unsigned char *sms_write=”AT+CMGS=”9999999999″<enter>”; // 10-Digit Mobile Number
unsigned char *sms=”seal broken”;
unsigned char *smss=”magnetic material detected”;
unsigned char *smsss=”current reversal”;
unsigned char *sms_report=”SMS Sent…”;
unsigned char sms_terminate=0x1A;
unsigned char enter=0x0D;

void delay(unsigned int msec) // Function for delay
{
int i,j;
for(i=0;i<msec;i++)
for(j=0; j<1275; j++);
}

void init_serial() // Initialize serial port
{
TMOD=0x20; // Mode2
TH1=0xFD; //buad rate
SCON=0x50; // Serial mode=1 ,8-Bit data,1 Stop bit ,1 Start bit, Receiving on
TR1=1; // Start timer
}

void tx_data(unsigned char str) // Transmit data function
{
SBUF=str; //Store data in SBUF
while(TI==0); //Wait till data transmits
TI=0;
}

void gsm_cmd(unsigned char *string)
{
i=0;j=0;
while(string!=’’)
{
temp=0;
if(string
==0x5C) // Not to send ” cahracter
i++;
tx_data(string
); // Send by serial communication
i++;
while(temp!=1);
}
temp=0;
tx_data(enter); // Send ASCII code for ‘Enter’ key
while(temp!=1);
}

void main()
{
P2=0xFF;
P2=0x00;
init_serial();
while(1)
{

if(seal==1)
{
gsm_cmd(sms_service);
gsm_cmd(sms_format);
delay(1000);
gsm_cmd(sms_write);
delay(1000);
gsm_cmd(sms);
tx_data(0x1A);
delay(1000);
}
else if(magnet==1)
{
gsm_cmd(sms_service);
gsm_cmd(sms_format);
delay(1000);
gsm_cmd(sms_write);
delay(1000);
gsm_cmd(smss);
tx_data(0x1A);
delay(1000);
}

else if(reversed==1)
{
gsm_cmd(sms_service);
gsm_cmd(sms_format);
delay(1000);
gsm_cmd(sms_write);
delay(1000);
gsm_cmd(smsss);
tx_data(0x1A);
delay(1000);
}

}
}

 

 

 

 

 

plz can u make any correction in this program?  especialy in bold part?

 

 

 

 

 

RSS Recent Posts

  • Simple LED Analog Clock Idea July 7, 2025
  • The Analog Gods Hate Me July 7, 2025
  • Wideband matching an electrically short bowtie antenna; 50 ohm, 434 MHz July 7, 2025
  • PIC KIT 3 not able to program dsPIC July 7, 2025
  • Parts required for a personal project July 6, 2025

Stay Up To Date

Newsletter Signup
EngineersGarage

Copyright © 2025 WTWH Media LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of WTWH Media
Privacy Policy | Advertising | About Us

Search Engineers Garage

  • Engineers Garage Main Site
  • Visit our active EE Forums
    • EDABoard.com
    • Electro-Tech-Online
  • Projects & Tutorials
    • Circuits
    • Electronic Projects
    • Tutorials
    • Components
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • Advertise