#include SoftwareSerial g_gps( 6, 7 ); void setup() { g_gps.begin(9600); Serial.begin( 9600 ); } void loop() { char c = g_gps.read(); if( -1 != c ) { Serial.print( c ); } }