Skip to content

Basic Java TCP server that creates GPS position NMEA sentence and sends it to clients connected to it.

Notifications You must be signed in to change notification settings

ziroc/Nmea-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nmea-Server

Basic Java TCP server that creates GPS position NMEA sentence and sends it to the connected clients.
You can extend the interface PositionProvider to supply the server updated GPS positions (also heading and speed) to send to the clients.

  NmeaServer server = new NmeaServer(12345);
  server.setPositionProvider(new SimplePositionProvider());
  server.setTimeout(120); // not mandatory
  server.start();

About

Basic Java TCP server that creates GPS position NMEA sentence and sends it to clients connected to it.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages