-
I'm using my SH-ESP32 to read NMEA0183 GPS data from my ICOM VHF and put it on my N2K network. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Those two PGNs are definitely a good match. Are you interested in providing time as well? If so, PGN 129033 would be a good candidate. One aspect to consider is the expected transmission frequency of the PGNs. 129025 would be normally sent 10 times a second and 129026 four times a second. You might want to stick to those rates even if you receive NMEA 0183 data more infrequently (not sure how often the sentences are sent). If you're using SensESP, you might want to have a look at how I dealt with that in HALMET example firmware: https://github.com/hatlabs/HALMET-example-firmware. I'm pretty happy how clean the PGN sending code turned out there. |
Beta Was this translation helpful? Give feedback.
Those two PGNs are definitely a good match. Are you interested in providing time as well? If so, PGN 129033 would be a good candidate.
One aspect to consider is the expected transmission frequency of the PGNs. 129025 would be normally sent 10 times a second and 129026 four times a second. You might want to stick to those rates even if you receive NMEA 0183 data more infrequently (not sure how often the sentences are sent). If you're using SensESP, you might want to have a look at how I dealt with that in HALMET example firmware: https://github.com/hatlabs/HALMET-example-firmware. I'm pretty happy how clean the PGN sending code turned out there.