Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buy
Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buy// Optional: increase receive buffer size (edit library file)
// Send data via software serial (non-blocking friendly) if (Serial.available()) char out = Serial.read(); mySerial.write(out); // blocking but short softwareserial h
// Software serial for GPS module mySerial.begin(9600); // Optional: increase receive buffer size (edit library
void setup() // Hardware serial for debugging Serial.begin(9600); // echo to hardware serial
void loop() // Continuously read from software serial while (mySerial.available()) char c = mySerial.read(); Serial.print(c); // echo to hardware serial