Hi.. i'm Angga from Indonesia.
I'want to ask something about Serial.
I have try a GPS Module "Ublox Neo 6M" connected to Arduino using Serial. NMEA Message has been displayed when I run Serial console like Hyperterminal or Putty like this :
$GPGSA,A,3,15,26,02,29,24,,,,,,,,4.35,1.42,4.110C
$GPGSV,3,1,09,02,38,076,33,04,,,20,15,64,326,38,24,46,174,3447
$GPGSV,3,2,09,25,21,240,26,26,36,019,25,29,35,316,38,30,,,0941
$GPGSV,3,3,09,42,52,078,334E
$GPGLL,0703.66034,S,10800.37353,E,072842.00,A,A74
$GPRMC,072843.00,A,0703.66035,S,10800.37290,E,0.073,,151114,,,A66
$GPVTG,,T,,M,0.073,N,0.135,K,A20
$GPGGA,072843.00,0703.66035,S,10800.37290,E,1,05,1.42,616.7,M,2.7,M,,7E
$GPGSA,A,3,15,26,02,29,24,,,,,,,,4.35,1.42,4.110C
$GPGSV,2,1,08,02,38,076,36,15,64,326,41,24,46,174,36,25,21,240,277F
$GPGSV,2,2,08,26,36,019,26,29,35,316,41,30,,,08,42,52,078,3640
$GPGLL,0703.66035,S,10800.37290,E,072843.00,A,A7A
$GPRMC,072844.00,A,0703.66038,S,10800.37267,E,0.035,,151114,,,A66
$GPVTG,,T,,M,0.035,N,0.065,K,A26
$GPGGA,072844.00,0703.66038,S,10800.37267,E,1,05,1.42,617.5,M,2.7,M,,*7F
my question is : what the technique or function on Arduino, if I want to extract just 1 line $GPRMC.......
like this : $GPRMC,072843.00,A,0703.66035,S,10800.37290,E,0.073,,151114,,,A*66
to become a string variable...
Thanks before.