using N2k-signalk without full signalk Installation #47
-
I have a use case where I would like to be able to convert NMEA2000 data received via a can interface (CAN0) to the signalk delta format with out having the signalk server installed. I would like it to be created using NodeJs. So far I see the steps as: CAN0 -> CanboatJS -> N2K-Signalk Im just not sure of the logical steps to get this to work. Is there straight forward solution? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can do this easily with the command line utilities. candump can0 | candumdumpanylizerjs | n2k-signalk (On my phone, so hopefully typed all that right) |
Beta Was this translation helpful? Give feedback.
-
And you can splice them together in js the way the commandline utilities do it, just check the code. |
Beta Was this translation helpful? Give feedback.
You can do this easily with the command line utilities.
candump can0 | candumdumpanylizerjs | n2k-signalk
(On my phone, so hopefully typed all that right)