Hello,
I have got a BeesShield V2.12 and a GPSBee(11-16-2010;ublox Neo-6M).
I can’t receive anything from the GPSBee.
I tried to RS232-TTL-Module to test the connection from the BeeShield socket to to controller board (Seeeduino V2.21):
Hope this link works
If I send a textfile with hyperterminal via the PC to the RS232 Module, I can receive the text in the serial monitor of the arduino.
I am using Arduino-0023 with this code:
#include <NewSoftSerial.h>
NewSoftSerial mySerial(3, 2);
void setup()
{
Serial.begin(57600);
Serial.println("Goodnight moon!");
// set the data rate for the NewSoftSerial port
mySerial.begin(9600);
mySerial.println("Hello, world?");
}
void loop() // run over and over again
{
if (mySerial.available()) {
Serial.print((char)mySerial.read());
// Serial.print("myserial available");
}
}
Now I connect the GPSBee:
What I get, is the power LED turning on, nothing else happens. Shouldn’t the LEDs on the Shield flash up?
Nothing is received over the RS232 line that worked in the previous test.
Is the module damaged?
Cheers,
Martin