Softwareserial H Info

// Software serial for GPS module mySerial.begin(9600);

void loop() // Continuously read from software serial while (mySerial.available()) char c = mySerial.read(); Serial.print(c); // echo to hardware serial softwareserial h

// Send data via software serial (non-blocking friendly) if (Serial.available()) char out = Serial.read(); mySerial.write(out); // blocking but short // Software serial for GPS module mySerial