Signal K Node server plugin to convert Signal K to NMEA 0183. See the code for a list of supported sentences.
To use the plugin you need to
- activate the plugin and the relevant sentences under /plugins/configure (see image below)
- add a configuration
toStdout
to theserialport
you want the sentences to go to
...
}, {
"id": "nmea-out",
"pipeElements": [{
"type": "providers/serialport",
"options": {
"device": "/dev/nmea-digyacht",
"baudrate": 4800,
"toStdout": "nmea0183out"
}
}, {
...
Internally the plugin emits events named nmea0183out
. This configuration sends the data of these events to the serialport's output.