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

Ashish Chakole

  • Profile
  • Topics Started
  • Replies Created
  • Engagements

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • October 13, 2015 at 4:48 am in reply to: microphone #13374
    Ashish Chakole
    Participant

    Hi guys,

    I'm looking for the readymade audio kit which involves microphone and 3.5 female audio jack. by using this kit I want to know sound pattern of the particular object when we hit it. Any inputs are welcome.  

    April 4, 2012 at 1:08 pm in reply to: PROBLEM RELATED TO LCD…… #7391
    Ashish Chakole
    Participant

    thanx……….

     

    March 23, 2012 at 2:37 pm in reply to: how to make complete project?burn program?which tool have to use? #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?

     

     

     

     

     

    March 23, 2012 at 2:22 pm in reply to: GSM based smart information system for lost cards #7323
    Ashish Chakole
    Participant

     

     

    Hello Mr Arun,

     

    are u ok with the program after making corrections by Sayeed?

    if yes then plz forward me the corrected program plz plz……

     

    its very urgent…….

    March 23, 2012 at 2:18 pm in reply to: GSM based smart information system for lost cards #7322
    Ashish Chakole
    Participant

     

     Hello Sayeed n friends,

     

    i did same thing, i removed      temp=0; and while(temp!=1); both  and the problem was solved. the previous program used to stuck at while(temp!=1); but after removal, its working properly,

     

    but still i hav doubt whethr program will work with the hardware,……

     

    Also , Sayeed u hav sugested some corrections in Arun Kumar’s program but i dint get it properly, i mean i m too weak to undrstnd the Syntax of the program…. Would u plz post the complete program with the given corrections??? 

     

    plz plz plz,,,,,, its realy urgent….

     

     

    Thnx

  • Author
    Posts
Viewing 5 posts - 1 through 5 (of 5 total)

RSS Recent Posts

  • Harman Kardon radio module BMW noise February 16, 2026
  • Arduino standalone minimal February 16, 2026
  • analog logic of shmidt trigger bjt circuit February 16, 2026
  • CR2/CR123A Batteries In Projects February 16, 2026
  • Math problem February 15, 2026

Stay Up To Date

Newsletter Signup
EngineersGarage

Copyright © 2026 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