mytutorialcafe.com
Discussion All About Microcontroller and Computer Interfacing
FAQ
Search
Memberlist
Usergroups
Register
Profile
Log in to check your private messages
Log in
mytutorialcafe.com Forum Index
->
Microcontroller Projects
Post a reply
Username
Subject
Message body
Emoticons
View more Emoticons
Font colour:
Default
Dark Red
Red
Orange
Brown
Yellow
Green
Olive
Cyan
Blue
Dark Blue
Indigo
Violet
White
Black
Font size:
Tiny
Small
Normal
Large
Huge
Close Tags
[quote="tomy"]Dear All, I am developing a Checking system device. When the system goes wrong, then the system will make a phone call to the Control center. I want to ask that how can i use the Microcontroller(8051) to control the mobile to make a call. How can i getting start? Tomy[/quote]
Options
HTML is
OFF
BBCode
is
ON
Smilies are
ON
Disable BBCode in this post
Disable Smilies in this post
All times are GMT
Jump to:
Select a forum
Basic Microcontroller
----------------
89s51 Programmer
Interfacing with Microcontroller
Timer/ Counter Microcontroller Application
Serial RS232 communication
Advance Microcontroller
----------------
Microcontroller Projects
Computer Interfacing
----------------
Serial RS232 Communication
Interfacing Bidirectional LPT
Robot Building
----------------
Building Robot with uC less
Building robot with Microcontroller
Topic review
Author
Message
myturf
Posted: Tue May 09, 2006 7:01 am
Post subject: User Microcontroller to Control Mobile phone
You will use serial port, configured to match parameters with mobile phone.
Usually, it will be setup for MODE-1, 9600bps.
In example, given code will setup serial interface to use Timer1 for
generating baud rate of 9600bps with 11.0952MHz XTAL:
PCON&=0x7f; // clearing SMOD=0
TH1=243; //0xFD;
SCON=0x50; //01010000B // SCON: mode 1, 8-bit UART,
enable rcvr //
TMOD &= 0X0F; // clear Timer 1 //
TMOD|=0x20; // TMOD: timer 1, mode 2, 8-bit reload //
TR1=1; // TR1: timer 1 run //
TI=1;
RI=0;
after that, you could send AT commands to your mobile phone. Example, for
making calls:
printf("ATD_number-to-call_;%c%c",13,10);
tomy
Posted: Tue May 09, 2006 6:35 am
Post subject: User Microcontroller to Control Mobile phone
Dear All,
I am developing a Checking system device. When the system goes wrong, then
the system will make a phone call to the Control center.
I want to ask that how can i use the Microcontroller(8051) to control the
mobile to make a call.
How can i getting start?
Tomy
Powered by
phpBB
© 2001, 2005 phpBB Group