momo got a domain name this weekend
http://momobots.com
“Greetings from Dublin! We received an overwhelming number of submissions for the ArtBots show this year, and choosing the participants has been a difficult and complex endeavor. We are delighted to tell you that we have selected your work: “momo: a haptic navigation device” for participation the 2008 show.”
I was asked for this code yesterday so thought I should post it.
The code reads in GPS data from the serial port and parses out the $GPRMC string returning the latitude and longitude values.
import processing.serial.*;
LatLon ll; //latlon object
Serial myPort; // The serial port
void setup() {
size(400,400);
//LatLon object
ll = new […]
Tom Igoe just rocked my world.
Check out this processing code that enables the sending of commands to the Etek EB-85A GPS module.
Note: The carriage return and line feed <CR><LF> need to be denoted as: “\r\n” or “\r”+”\n”;
MTK-packet_user-manual.pdf
EB-85A_catalog.pdf
/*
ETEK EB-85A GPS reader test
Tom Igoe <http://www.tigoe.net/pcomp/code>
November 2007
*/
import processing.serial.*;
Serial myPort;
void setup(){
[…]
Pololu Device Specifications :: EB-85A GPS pin specification
.
TERMINAL
list serial ports: ls /dev/tty.*
read serial port data: screen /dev/tty.Pololu 4800
kill process: ctrl A ctrl \
© itp. Powered by WordPress using the DePo Clean Theme.