NMEA2000 icon indicating copy to clipboard operation
NMEA2000 copied to clipboard

NMEA2000 library for Arduino

Results 188 NMEA2000 issues
Sort by recently updated
recently updated
newest added

Hello. I know this lib is compatile with ESP-IDF. is there a way to use it with Eclipse? I am new to Eclipse and I am still learning. Can it...

I am testing the NMEA2000ToWiFiAsSeaSmart example. I have modified the code by simply changing the WiFi mode from STA to AP. The issue is that I am trying to implement...

A conceptual question, in tNMEA2000::N2km_NodeOnly mode (I understand it is Tx only), shouldn't I implement the Rx buffers: NMEA2000.SetN2kCANMsgBufSize(6); default 5 messages. NMEA2000.SetN2kCANReceiveFrameBufSize(250); And yes, for the TX one: NMEA2000.SetN2kCANSendFrameBufSize(250);...

Hi, I think there is something wrong in this code: ``` bool tN2kGroupFunctionHandler::HandleCommand(const tN2kMsg &N2kMsg, uint8_t PrioritySetting, uint8_t NumberOfParameterPairs, int iDev) { // As default we respond with not supported....

I had a problem with newer ESP32xx MCUs, as they apparently are not compatible with the included ESP32 code for the internal ESP32xx CAN interface. (Now named "TWAI" by Esperssif.)...

Hi, Reading about the NMEA2000 ESP32 library I assumed I could also use it for an Arduino Nano ESP32. Probably not, because I can not get it working. When I...

Thank you for your great NMEA2000 library. I managed to get this working well on a Raspberry Pi Pico with the CANPico carrier board from Canis Labs (from SK Pang)....

First of all, thank You very much for incredible library. The question follows - does nmea2000 library forwards all received messages or only some predefined subset, when for instance we...

I would like to read a message from N2K, modify it, and forward to serial. I can set up a tNMEA2000Handler for the PGN I want, and use the Set......

In the case of sending two messages with the same PGN 130316, for example, OutsideTemperature from two different sensors, should I only send each message with a different tempInstance? Is...