I've used modules like this before (including the SIM908, which is like the SIM900, but with GPS too). The biggest pain is that they only support AT commands as a protocol. It's very difficult to work with reliably, especially in a memory-constrained device. Whenever you issue a command, you need to check the next line to see whether it succeeded or failed, but the next line might be the response, or it might be an entirely unrelated unsolicited response (an asynchronous notification). You end up with either a complicated state machine or having to treat every command specially.<p>Even synchronizing the commands and responses is tricky, because you have to send an 'AT' and wait for an 'OK', or if you didn't get one, send an 'AT' again. Then when you get an 'OK', is it from the first AT or the second one? So you have to spend a second eating all the data comes in before you can start sending commands for real. It's all so... ugh.<p>I'd love for someone to implement a well-thought-out binary protocol as an alternative.<p>I see the example code give here just cheats and waits 100ms for each command to happen, then assumes it was successful and moves on to the next.
The link to buy it lists it as discontinued. Here is V2.0, which is available!<p><a href="http://www.seeedstudio.com/depot/gprs-shield-v20-p-1379.html?cPath=132_134" rel="nofollow">http://www.seeedstudio.com/depot/gprs-shield-v20-p-1379.html...</a>
One thing you can do is get a microcontroller that does USB host, get a cheapie android phone online, and wire it up that way using ADB.<p>I wrote a library to let a Parallax Propeller do this (it will be more power hungry than, say, an IOIO board, but it can give your phone 8 serial ports rather than just one). <a href="http://obex.parallax.com/object/116" rel="nofollow">http://obex.parallax.com/object/116</a><p>Economies of scale mean that a low end android phone costs about as much as this shield.
So for those who may have seen the BTTN post (100 dollar cell network enabled button) you now know the dirty secret. You are this shield, and arduino and 60c away from building your own.
They just copy/pasted the wiki engine, it's even showing "Wikipedia, the free encyclopedia". Looks like a really bad job. However, the Shield looks really neat and worth it.