void send(){
Sim900Serial.println("AT+CMGS=\"+8613**************\"\r"); // Replace x with mobile number
delay(1000);
Sim900Serial.println(MESSAGE);// The SMS text you want to send
delay(100);
Sim900Serial.println((char)26);// ASCII code of CTRL+Z
delay(1000);}