https://learn.sparkfun.com/tutorials/lt … wLjA.&_ga=
I’m trying to do Example0 on this link.
I bought a ‘spark fun SARA-R4’ board and am using it. I’m running it on Arduino as I said I bought it on the site, but there’s a problem. I uploaded the code
Initializing the LTE Shield…
…this may take ~25 seconds if the shield is off.
…it may take ~5 seconds if it just turned on.
This one works fine on the serial monitor, but it’s been 30 minutes since then and no text has been printed out. The chords are
SerialMonitor.println(F(“Initializing the LTE Shield…”));
SerialMonitor.println(F(“…this may take ~25 seconds if the shield is off.”));
SerialMonitor.println(F(“…it may take ~5 seconds if it just turned on.”));
// // Call lte.begin and pass it your Serial/SoftwareSerial object to
// // communicate with the LTE Shield.
// // Note: If you’re using an Arduino with a dedicated hardware serial
// // port, you may instead slide “Serial” into this begin call.
if ( lte.begin(LTEShieldSerial, 9600) ) {
SerialMonitor.println(F(“LTE Shield connected!\r\n”));
} } else {
SerialMonitor.println(“Unable to initialize the shield.”);
while(1) ;
}
It looks like this.
I think at least LTE Shield connected! or Disable to initialize the shield. I think either of these should be output, but no text is outputting. I think I connected it to Arduino properly. The red LED is coming out.