GithubHelp home page GithubHelp logo

st599 / nmea0183-wifi-multiplexer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ak-homberger/nmea0183-wifi-multiplexer

0.0 0.0 0.0 626 KB

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

License: GNU General Public License v3.0

C++ 100.00%

nmea0183-wifi-multiplexer's Introduction

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).

There is also a software version that is parsing the messages and can suppress certain messages. This version needs this additional NMEA0183 libray: https://github.com/ttlappalainen/NMEA0183

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

  • 10.11.2022 - Version 0.3: Corrected line end handling to avaid duplication of messages sent (see Issues).
  • 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

nmea0183-wifi-multiplexer's People

Contributors

ak-homberger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.