Some NMEA statements begin with '!' character. ie: !AIVDM, !AIVDO, etc. I think this is very easy to implement. Just modify line 402 in NMEAParser.h from `if (inChar == '$') {` to `if (inChar == '$' || inChar == '!') {`