Yes the device is powered on… the LED blinks at the 3000ms interval meaning it sees network.
The Board is Arduino UNO.
The IDE is Arduino 1.0.
You can see there is something coming back on the serial port but it seems to be sets of 255.
The code is loaded and the code we are running is from the wiki.
[code]//Serial Relay - Arduino will patch a
//serial link between the computer and the GPRS Shield
//at 19200 bps 8-N-1
//Computer is connected to Hardware UART
//GPRS Shield is connected to the Software UART
#include <SoftwareSerial.h>
SoftwareSerial mySerial(7, 8);
void setup()
{
mySerial.begin(19200); // the GPRS baud rate
Serial.begin(19200); // the GPRS baud rate
}
void loop()
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}
[/code]
What are we doing wrong here?