mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-30 13:46:17 +00:00
16 lines
295 B
C++
16 lines
295 B
C++
#ifndef _IEC62056_21_H
|
|
#define _IEC62056_21_H
|
|
|
|
#include "Arduino.h"
|
|
#include "AmsData.h"
|
|
|
|
class IEC6205621 : public AmsData {
|
|
public:
|
|
IEC6205621(const char* payload);
|
|
|
|
private:
|
|
String extract(String payload, String obis);
|
|
double extractDouble(String payload, String obis);
|
|
};
|
|
#endif
|