-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: add the ability for to ouput to the YDWG-02 #50
Conversation
You need to support |
Thank you Scott, I've added the support for nmea2000JsonOut. |
Scott, |
Yes, you can change those timestamps |
Thank you Scott for the comments. I've fixed each of those now. |
Thanks! Will test tomorrow. I have one in my lab now to test with. (They were awesome enough to send me a free unit!) |
Getting:
|
The YDWG-02 uses a raw format described in http://www.yachtd.com/downloads/ydwg02.pdf
The format of messages sent from application to Device is the same, but without time
and direction field. Outgoing messages must end with . If the message
from application is accepted, passes filters and is transmitted to NMEA 2000,
it will be sent back to the application with ‘T’ direction.
For example, the application sends the following sentence to the Device:
19F51323 01 02
When this message is sent to the NMEA 2000 network, the Application receives
an answer like:
17:33:21.108 T 19F51323 01 02
Closes #49