mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-14 15:54:47 +00:00
14 lines
209 B
C++
14 lines
209 B
C++
#ifndef _DSMRPARSER_H
|
|
#define _DSMRPARSER_H
|
|
|
|
#include "Arduino.h"
|
|
#include "DataParser.h"
|
|
|
|
class DSMRParser {
|
|
public:
|
|
int8_t parse(uint8_t *buf, DataParserContext &ctx, bool verified);
|
|
private:
|
|
};
|
|
|
|
#endif
|