iuriaranda / signalk-mqtt-bridge

SignalK Node server plugin that acts as a bridge between SignalK data and MQTT
MIT License
5 stars 2 forks source link

SignalK <> MQTT bridge

SignalK Node server plugin that acts as a bridge between SignalK data and MQTT. Its purpose is similar to the one of the signalk-mqtt-gw plugin, but this one has a different interaction with MQTT, inspired by Victron's dbus-mqtt module.

Note that this plugin doesn't have an embedded MQTT broker. It connects as a client to an MQTT broker running in the system or remotely.

Features

Scoped MQTT topics

All MQTT topics used by this plugin are prefixed with <action>/signalk/<systemId>/

When it connects to an MQTT broker, the plugin will publish two messages:

Keepalive

With the keepalive, MQTT clients can trigger the plugin to send all SignalK deltas or subscribe to deltas for specific paths.

To activate the keepalive, publish a message to topic R/signalk/<systemId>/keepalive. The payload may be blank, or may contain a JSON-encoded list of topics of interest. The keepalive will last for the configured TTL in the plugin config, 60 seconds by default. After that, the plugin will stop sending deltas until a new message is published to R/signalk/<systemId>/keepalive.

The topics of interest in the keepalive message follow the same notation as MQTT topic subscriptions. Any part of the topic-matching string can be replaced with a + to indicate a wildcard. The string may end with a # which indicates that all trailing parts are accepted.

For example, the following will instruct the plugin to send deltas for paths vessels.self.electrical.batteries.*.current and vessels.*.navigation.position.

mosquitto_pub -m '["vessels/self/electrical/batteries/+/current", "vessels/+/navigation/position"]' -t 'R/signalk/4881db477e55/keepalive'

An empty payload will instruct the plugin to send messages for all deltas.

mosquitto_pub -m '' -t 'R/signalk/4881db477e55/keepalive'

To keep the keepalive active all the time, you could use a command like this:

while :; do mosquitto_pub -m '' -t 'R/signalk/4881db477e55/keepalive'; sleep 30; done

Subscribe to SignalK deltas

This SignalK plugin sends deltas to MQTT using the N/ topic prefix. To receive deltas from SignalK, first subscribe to the topics of interest, then send periodic keepalive messages to keep the plugin active.

For example, use this to subscribe to deltas for all paths under vessels.self.*

mosquitto_sub -t 'N/signalk/4881db477e55/vessels/self/#'

# in a separate terminal
while :; do mosquitto_pub -m '["vessels/self/#"]' -t 'R/signalk/4881db477e55/keepalive'; sleep 30; done

Request SignalK data from MQTT

You can also request data from specific paths from SignalK, as a one-time request. To do so publish a message with the read topic prefix (R/...) with an empty payload. Remember to be subscribed to a matching topic to receive the data.

mosquitto_sub -t 'N/signalk/4881db477e55/vessels/self/#'

# in a separate terminal
mosquitto_pub -m '' -t 'R/signalk/4881db477e55/vessels/self/environment/depth/belowKeel'

Send deltas to SignalK via MQTT

To send deltas to SignalK via MQTT, publish a message with the W/ topic prefix, with the delta value as payload. For example:

mosquitto_pub -m '10' -t 'W/signalk/4881db477e55/vessels/self/environment/wind/speedApparent'

Send PUT requests to SignalK via MQTT

To send PUT requests to SignalK via MQTT, publish a message with the P/ topic prefix, with the PUT value as payload. For example:

mosquitto_pub -m '1' -t 'P/signalk/4881db477e55/vessels/self/electrical/switches/anchorLight/state'