How to convert NMEA 0183 from high to low baud rate (without AIS info)?

Re: How to convert NMEA 0183 from high to low baud rate (without AIS info) or SeaTalk

No one with an arduino mega to try it out on? Seems simple, unfortunately mine is a few thousand miles away.

setup () {
Serial1.begin (115200);
Serial2.begin (9600);
}

loop () {
if (Serial1.available())
Serial2.write(Serial1.read());
}
 
Re: How to convert NMEA 0183 from high to low baud rate (without AIS info) or SeaTalk

Well I've taken the plunge. Ordered the ST1 to STng converter kit.
Will report how it goes.
 
Top