This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How can I use 8051 to control a GSM modem

I am doing a project on Controling and Monitoring System using GSM Modem. Can I use Keil and 8051 to do make such a system?

Parents Reply Children
  • you need enter the phine number
    and messamge you want to send
    and than
    press ctrl ^z
    which is the char
    putchar (26);
    or

    putchar (0x26);

  • "you need enter the phine number
    and messamge you want to send
    and than
    press ctrl ^z"

    And you need to form all that into the appropriate AT Command - as described in the links already given.

    "putchar (26);
    or
    putchar (0x26);"

    They can't both be correct, can they?!
    Either the hex is right and the decimal is wrong, or vice-versa

    It is left as an exercise for the student to look it up in an ASCII chart and determine which is the correct code...