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