1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-14 14:33:07 +01:00

add info about conversions to UI, tweak layout

This commit is contained in:
andreas
2021-11-05 19:19:43 +01:00
parent 4572cafa23
commit fc57d73054
7 changed files with 99 additions and 9 deletions

View File

@@ -92,6 +92,9 @@ private:
logger->logString("CONV: # %d handled PGNS", converters.numConverters());
return converters.handledPgns();
}
virtual String handledKeys(){
return converters.handledKeys();
}
virtual void HandleMsg(const tN2kMsg &N2kMsg)
{
String key=String(N2kMsg.PGN);

View File

@@ -51,5 +51,6 @@ public:
virtual unsigned long* handledPgns()=0;
virtual int numPgns()=0;
virtual void toJson(JsonDocument &json)=0;
virtual String handledKeys()=0;
};
#endif