Anyone know if i can make a serial conneciton to an ocean server sensor using NewSoftSerial ? and if not how can i connect?
I have an arduino duemilonave(328) and i would like to talk to an OSServer 5500 sensor.
here are the links to the sensor:
http://www.robotshop.us/content/PDF/OS5000_Compass_Manual.pdfhttp://www.robotshop.us/content/PDF/Compass_OS5000_Family.pdfI have tested it and it seems to work via a sample exec that connects via usb and outputs tilt values. So i think the sensor is working correctly
When i set up the circuit to talk to the sensor via serial- i do get continous readings back from the sensor but they are all garbled and do not represent readable strings like:^*&^@&^WEUYI....
I am using NewSoftSerial library and i was wondering if i can actually use this lib connect to this type of sensor. The factory default baud is 19200, 8, 1, N according to the specs. Any help or tips would be much appreciated

here is the simple code i wrote:
#include <NewSoftSerial.h>
NewSoftSerial mySerial(3, 4);
int baudRate=19200;
void setup()
{
Serial.begin(9600);
mySerial.begin(baudRate);
Serial.println("setup");
}
void loop() {
int incoming = 0;
if (Serial.available()) {
incoming = Serial.read();
}
if(mySerial.available())
{
Serial.print(mySerial.read(),BYTE);
}
}