Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

transferring messages from mobile to PC

Status
Not open for further replies.

bobdxcool

Member level 5
Joined
Mar 9, 2012
Messages
82
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
2,042
I wanted to transfer the messages that my mobile receives to a word or text file in my PC. Is it possible to do it serially through COM port ??

I also tried sending a message to USB Modem (micromax modem with a docomo SIM). I used the following python code.

Code:
import serial
import time
ser = serial.Serial('COM4', 9600)
while 1:
	data = ser.read()
	if (data):
		print "data : ", data

The baud rate and all are correct.

When I used this, I checked for the output in cmd window. the output was just blank space.
Meaning that, the message was not being read by serial COM port.

Please help. Pls suggest any code in python or any other language in order to transfer messages from my mobile to computer, or transfer messages sent to the usb modem to a notepad or wordpad or anything else.

If this is not possible, is it possible to send the messages from mobile to any webpage or email,using some android application ?
 

Sir, what you were asking for was a method to transfer your messages to the PC. And sir, if you actually looked you would see that there is also a program for android. And, sir, if you ACTUALLY READ IT, you would see that it says "Export Android SMS to document files such as txt, csv, doc or html".
 

Sir, what you were asking for was a method to transfer your messages to the PC. And sir, if you actually looked you would see that there is also a program for android. And, sir, if you ACTUALLY READ IT, you would see that it says "Export Android SMS to document files such as txt, csv, doc or html".


But the problem with this software is that everything has to be done manually. Whereas, I want the sms's to be automatically transferred to the pc and saved in a text file, as and when they received on the phone.
Pls help.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top