I've made ??connections in the movie! but do not know how to send SMS. which is actually the source code! serial.print (....), here do not know what to write!
If the LED on the Arduino flashes, the phone responded. The number of times it flashes corresponds to the number of characters returned.
I've made ??connections in the movie!
Pretty hard to tell from that movie what is connected where on the phone.
I saw someone on youtube with a phone that's like my T230, which calls for the Arduino and not use than some cables stuck back on the phone!
There may be something lost in translation here, but "a phone like my T230" and "the same phone I have" are sufficiently different that what works on their phone may not work on yours.
Show how YOU connected YOUR phone, better than in the video, and post the code you are using. Only then can we provide any real help.
You won't be able to send SMS until you get the Arduino to talk to the phone. Get over it.
In setup(), use com.print("AT"); to send the AT command to the phone.
In loop(), use com.available() to see if there is data to read (a response from the phone). If there is, use com.read() to read a byte, and Serial.print() to send that character to the serial port so it can be seen in the Serial Monitor. Don't forget the Serial.begin() statement in setup().
When you know that the Arduino can talk to the phone, you can send the actual command(s) to send an SMS (most likely using com.print(), not com.println()).
However... it is important that you are sure that you have a serial connection to your phone from your arduino, before you jump into all the programming.
If you have Bluetooth on your PC, i recommend connecting to the phone via a virtual com port. That way you can use hyperterminal (or other terminal software) to talk to the phone, and try and use the AT command set. Try to manually write commands to the phone, and make it send a SMS.
It is important to figure out if the phone supports SMS in TXT mode, or in PDU mode. The latter would be quite difficult to handle in the arduino program.
Once you figure out those things, you can move on, and connect the phone to the arduino (your connections look right, by the way! ), and see if you can get an AT command through from you PC terminal program, through the arduino, to the phone. the reply to 'AT' should be 'OK'