mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-03-12 05:25:24 +00:00
15 lines
269 B
C++
15 lines
269 B
C++
#ifndef _IEC62056_21_H
|
|
#define _IEC62056_21_H
|
|
|
|
#include "AmsData.h"
|
|
|
|
class IEC6205621 : public AmsData {
|
|
public:
|
|
IEC6205621(String payload);
|
|
|
|
private:
|
|
String extract(String payload, String obis);
|
|
double extractDouble(String payload, String obis);
|
|
};
|
|
#endif
|