Loading...
Logo
Processing Forum
I've set up an Arduino to read a GPS and output part of the NMEA stream to its serial port. I'm trying to read that serial stream on my laptop using processing and although I can now read an NMEA sentence, every time I loop to read the next one its the same sentence (based on the time code). When I restart the program it reads a new sentence but it doesn't update. Should I be flushing the buffer contents before I try to read from the port again?

Appreciate your advice.
Jim Salacain

import processing.serial.*;

Serial myPort;  // Create object from Serial class
 int val;             // Data received from the serial port
 PFont font;
 int y = 0;
 int i=0;
 int j = 0;
 String valstring;
 String timecode;
 String lattcode;
 String longcode;
 String hemiNScode;
 String hemiEWcode;
 String altcode;
 String[] NMEA;

void setup()
{
  size(400, 400);
  font = loadFont("Helvetica-48.vlw");
  textFont(font, 18);
  myPort = new Serial(this, "/dev/tty.usbmodemfa131", 38400);
}

void draw()
{
  do {                                             // Look for start of NMEA sentence
    if ( myPort.available() > 0) {      // If port is available,
      val = myPort.read();                // read a byte and store it in val
    }
  } while (val != 36);                       // While val <> "$"

// Start reading the NMEA sentence

    do {
        if ( myPort.available() > 0) {  // If data is available,
          val = myPort.read();            // read it and store it in val
        }
        valstring = valstring + str(char(val));
    } while (val != 13);                     // Loop until EOL
   
    NMEA = split(valstring, ",");

    print("time: ");
    println(NMEA[1]);
    print("Lat: ");
    println(NMEA[2]);
    print("Hemi N/S: ");
    println(NMEA[3]);
    print("Long: ");
    println(NMEA[4]);
    print("Hemi E/W: ");
    println(NMEA[5]);
    print("Alt: ");
    println(NMEA[9]);
    println(" ");

Replies(4)

Hi spatialan..

Did you ever resolve this? I'd be interested to know how you solved this puzzle. I have an app that needs to restart itself and the Arduino but can't seem to get the right sequence of commands.
I happened upon a link which recommended having the sketch monitor the serial buffer interrupt. I added the following function to the code:

void serialEvent(Serial p) { 
  valstring = p.readString(); 
  NMEA = split(valstring, ",");
}

and every time and new message shows up in the serial buffer the loop() routine kicks off and processes the next NMEA line. Works like a charm. 

Here's a link...

Good luck.
pretty good for a newbie spatialan... What do us real newbies call ourselves?? "Premies" ha ha ;) Good work :)
I'm going to see if your code can work for my problem. Thks
the link to Tom's code does NOT work on osx. Don't know if it is an osx problem or a Lion problem.

it will work ONLY under the following conditions:

write a python program (using pyserial), to "prime the pump, so to speak". By having python start to read the values from the arduino, THEN you can start the Processing sketch, and it will run.

here is the simple python script:

#!/usr/bin/env python

import serial
from time import sleep

s = serial.Serial(port='/dev/tty.usbmodem411', baudrate=9600)

while (1):
    sleep(1)
    s.write('\n')
    l = s.readline().strip()
    print l