Hi Libelium,
Please check this output.
http://i46.tinypic.com/2jcved4.pngAfter changing the JV, BD, AP using XCTU, i got the waspmote communicating.
Thanks Libelium
--------------------------------------------------------------------
Next I've GPRS-Pro by which i need to send temperature data by sms every 5 min after averaging the temperature values.
The example i referred is ------Waspmote GPRS_Pro Sending an SMS Example--------
.
.
if(GPRS_Pro.setTextModeSMS()) USB.println("Text Mode SMS OK");
.
.
if(
GPRS_Pro.sendSMS("Test Message!","*********")) USB.println("SMS Sent OK");
.
.
In
this function how to pass the temperature value for 5 min.
.
.
USB.print("Temperature: ");
USB.println(RTC.getTemperature(),DEC);
.
.
In simple terms: How to pass data in GPRS_PRO.sendSMS() function. or how to assign temperature to a variable and pass that data to GPRS_PRO.sendSMS() function.
Kindly help me on this...
Many thanks
manomac