Signal K Node server plugin to filter and forward NMEA0183 sentences.
- Add NMEA0183 provider to SignalK configuration with a
sentenceEvent
option:
},{
"type": "providers/nmea0183-signalk",
"options":{
"sentenceEvent": "myNMEA0183InputEvent"
},
"optionMappings": [
...
]
}, {
- Activate the plugin and add a new configuration block that lists all NMEA0183
sentences and describes the internal SignalK server
input
andoutput
events.
- Add SignalK configuration to forward sentences to specific
serialport
configuration with matchingtoStdout
:
...
}, {
"id": "nmea-out",
"pipeElements": [{
"type": "providers/serialport",
"options": {
"device": "/dev/nmea-digyacht",
"baudrate": 4800,
"toStdout": ["myNMEA0183OutputEvent"]
}
}, {
...
Use GitHub issues and Pull Requests.
MIT