pouët.net

Go to bottom

SIM Card device & SMS's

category: offtopic [glöplog]
 
Sorry if it's too offtopic, but pouet is the only place in the internet that I use to communicate with other developers.

The problem:
I'm looking for some kind of device to read a SIM Card with the capability of connecting itself on the cellphone network and sending SMS's programmatically. Any hint about the existence of such thing? I have no idea how to do it.
added on the 2011-06-17 04:43:48 by Danguafer Danguafer
Sounds like you are looking for a mobile phone :p

I think any post-2004~ nokia phone with the PC suite installed is capable of doing this. I've even had a software for iPhone installed once that was capable of doing this as well.
Getting such a phone should be really cheap.
The iPhone sender was a 3rd party thing, so coding your own sender interface for it is doable.
added on the 2011-06-17 07:05:55 by oasiz oasiz
Just find any cheap Nokia phone which can connect via USB and is supported by PC Suite, I was using Nokia 6267.
Then download Gammu application, configure it and you can send SMS's from your app like this:
ShellExecute(0,"open","gammu.exe","sendsms TEXT ******* -report -text \"**************\"",0,SW_SHOWNORMAL);
Take a look at this project,might be of interest to you : http://www.elektronika.ba/563/sms-box-project/
added on the 2011-06-17 10:29:14 by D-Force D-Force
yes.. use an old phone and maybe a serial port driver bridge if it has usb interface.. then you may send sms by opening the COM port and communicate with it using ASCII..
Thanks for the reply.

oasiz: And I was all the night like: "I really hope I had specified it sufficiently".

Nitro: It's a nice solution. :)

D-Force: Yes, sounds interesting, I will read it soon.

hooverphonique: But I still wonder how the communication is done. :(
added on the 2011-06-17 18:39:50 by Danguafer Danguafer
why use a phone at all, and not some online sms service provider? it's bound to be cheaper.
added on the 2011-06-17 18:42:47 by havoc havoc
if you can use the phone as a modem (serial over bluetooth or usb) you can type standard hayes (at kind) commands into the phone. You can make and receive phone calls this way and send and receive text messages. I did this trick to send 1000 text messages once.

Sound funny but cell-phones do have an at command set
added on the 2011-06-17 18:51:18 by sigflup sigflup
1. Go to the sparkfun website. (www.spakrfun.com)
2. order one of these tiny one square-inch GSM module with UART for less than 40€
3. Connect to your computer and send SMS via good old AT-commands.
4. PROFIT
added on the 2011-06-17 22:00:13 by torus torus
I'm paying 50 cents for unlimited number of sms's per day. :) So I'm planning to conquer to world with that. ;)
added on the 2011-06-17 22:20:36 by Danguafer Danguafer
what, that rapper dude is sending sms's for you?!
added on the 2011-06-17 23:17:27 by booster booster
hayes command set is more or less standard (i guess some phones may deviate)..

buying a gsm module is an option, but an old phone is free ;-)
Busy sending sms for you. He looks kinda nerdy here.
BB Image
added on the 2011-06-18 08:58:35 by D-Force D-Force
lol :z
added on the 2011-06-21 07:28:44 by Danguafer Danguafer
Mmm... I've never coded such hardware things. And I am still wondering how I can open the USB device through fopen on Windas :( I couldn't find any useful material for reading.
added on the 2011-06-21 22:26:12 by Danguafer Danguafer
I need some help here. :/
added on the 2011-06-26 05:13:10 by Danguafer Danguafer
use libusb
added on the 2011-06-26 05:42:55 by psenough psenough
Thanks
added on the 2011-06-27 05:39:42 by Danguafer Danguafer

login

Go to top