Hello, I’ve recently bought the GE865 Evaluation board (along with an Arduino board). I tested the GE865 using HyperTerminal and everything was ok, but now I’ve connected it to an Arduino board with an LCD, I can’t seem to get anything back from it.
I have unsoldered the USB jumpers, connected the TX and RX pins to digital pins on the Arduino and connected +V and GND (all using a Voltage converter)
The code I am using:
SoftwareSerial SMS = SoftwareSerial(rxGSM, txGSM);
char incomingData;
void setup()
{
...
pinMode(txGSM, OUTPUT);
pinMode(rxGSM, INPUT);
SMS.begin(9600);
SMS.print("AT#SPN");
...
}
void loop()
{
incomingData = SMS.read();
delay(100);
DISP.print(incomingData);
}
where DISP is a variable for my LCD.
Have I done anything wrong?