Loading...
Logo
Processing Forum
Hello,
I have an em406a gps hooked up to an arduino uno. I am using the tinygps library to interpret the gps data on the arduino and output the lat/lon to the serial. Here is part of the arduino code:

Copy code
  1. #include <NewSoftSerial.h>
  2. #include <TinyGPS.h>

  3. #define RXPIN 2
  4. #define TXPIN 3

  5. #define GPSBAUD 4800

  6. TinyGPS gps;

  7. NewSoftSerial uart_gps(RXPIN, TXPIN);

  8. void getgps(TinyGPS &gps);

  9. void setup()
  10. {
  11.   Serial.begin(115200);

  12.   uart_gps.begin(GPSBAUD);
  13.   
  14.   Serial.println("");
  15.   Serial.println("GPS");
  16.   Serial.println("       ...waiting for lock...           ");
  17.   Serial.println("");
  18. }


  19. void loop()
  20. {
  21.   while(uart_gps.available())     
  22.   {
  23.       int c = uart_gps.read();  
  24.       if(gps.encode(c))     
  25.       {
  26.         getgps(gps);     
  27.       }
  28.   }
  29. }

  30. void getgps(TinyGPS &gps)
  31. {
  32.    float latitude, longitude;

  33.   gps.f_get_position(&latitude, &longitude);

  34.   Serial.print(latitude,5);
  35.   Serial.print(" ");
  36.   Serial.println(longitude,5);
  37. }
I am trying to find a way to output the data to the serial so that in processing I can separate the values. I use the space as a delim for split().

Here is my processing code:

Copy code
  1. import processing.serial.*;

  2. Serial myPort;
  3. Float lat;
  4. Float lon;

  5. void setup() {
  6.   frameRate(5);
  7.   println(Serial.list());
  8.   myPort = new Serial(this, Serial.list()[0], 115200);
  9. }

  10. void draw() {
  11.   while (myPort.available() > 0) {
  12.     String inBuffer = myPort.readString();   
  13.     if (inBuffer != null) {
  14.       String[] nums = split(inBuffer, ' ');
  15.       Float lat = float(nums[0]);
  16.       Float lon = float(nums[1]);
  17.       println(lat+","+lon);
  18.     }
  19.   }
  20. }
If I do not set the frameRate low the code does not work at all. The problem I keep running into is an exception error for num[1] that says that it is out of bounds. The code usually starts to work but after a little it seems to run into this error.


Does anyone know a good way to send data via serial from arduino to processing so that it can be broken apart in processing into different variables(latitude,longitude,speed,etc.)?

Thanks

Stephen

Replies(2)

Maybe you have to test against the length of the string... if it's getting an ArrayIndexOutOfBounds exception, its likely that at some point your Longitude didn't get recorded, so the value is null...
I am not sure why there would be a null value for the longitude. In the arduino serial monitor, there is always a value shown. Before I do the split() this code works at any Frame Rate:

Copy code
  1. println(inBuffer);
 My code for splitting the data is what is causing the problem. I do not know of an effective way to filter the data, or fix the  ArrayIndexOutOfBounds exception.
Any ideas?