Im trying to send a sms message using arduino and a SE K700i phone but im having big problems.
I wrote a function which builds a pdu text string and sends it to the phone but nothing happens. If i run this snippet i found sms is sent
Serial1.println("AT+CMGF=0"); // Set PDU mode
delay(3000);
Serial1.println("AT+CMGS=19"); // Number of octets
delay(3000);
Serial1.print("0011000B918346555555F50000AA05C8329BFD06"); // Sends "Hello" to "00 46707112233"
delay(3000);
Serial1.write(26);
delay(3000);
Serial.println("Command sent");
But when i try my function.. nothing. Any suggestions?

Here is my code:
http://pastebin.com/zzCXhjAY