/NMEA0183-WiFi-Multiplexer

Reads NMEA0183 messages from two serial lines and forwards multiplexed messages to USB-Serial and WLAN as UDP broadcast.

Primary LanguageC++GNU General Public License v3.0GPL-3.0

NMEA0183 WiFi Multiplexer with ESP8266 (D1 Mini)

Caution!

----------------------------

This is an updated version (0.2) with pins changed from D7/D8 to D6/D7 to avoid boot problems (see Issues). If you ordered already a version 1.0 PCB, then just cut the connection to D8 (e.g. with a knife) and solder a wire to D6 pin on D1 Mini. The updated software (version 0.2) will work then. But with changed serial line numbers from #1 to #2 and vice versa.

----------------------------

The project reads NMEA0183 messages from two serial (RS232) inputs and forwards multiplexed messages to USB-Serial and WLAN as UDP broadcast.

The multiplexer is powered either from USB connection or with 12 Volt via DC-DC converter. ESP8266 is using Software Serial on ports D6 and D7.

Main purpose is to provide GPS and AIS information wirelessly to a tablet/smartphone for navigation. Works with Navionics app (configure UDP connection with Host: x.y.z.255 and Port: 4444).

Schematics

Just change the settings in the programm according to your needs:

// Change these values only
// ------------------------------------------------------------------------
#define AP 0             // Set to 1 to act as Access Point, 0 as client 

const char *ssid      = "ssid";           // Set WLAN name
const char *password  = "password";      // Set password

const char *udpAddress = "192.168.4.255"; // Set network address for broadcast
const int udpPort = 4444;                 // UDP port

#define BaudRate1 4800   // Baud rate for serial#1
#define BaudRate2 38400  // Baud rate for serial#2

// -------------------------------------------------------------------------

KiCad files are available to change/extend and to create a PCB.

Board

Parts

Updates

  • 01.10.2021 - Version 0.2: Changed pins from D/D8 to D6/D7 to avoid boot problems (see Issues).
  • 06.03.2021 - Version 0.1: Initial version