Hi Dears,
I tried to receive datas from Neo-6M V2 (Red colored model) in outside, but I cannot receive any data. I received a lot commas. I waited about 1 hour in outside for receiving data. What should I do? Please help me.
I used these codes.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
mySerial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
if (mySerial.available()){
Serial.write(mySerial.read());
}
if (Serial.available()) {
mySerial.write(Serial.read());
}
}
Serial Communication Screen Shoot: https://i.hizliresim.com/FX0ukW.png
Thanks for your helps. Best Regards.
