mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-04-18 17:27:15 +00:00
18 lines
384 B
C++
18 lines
384 B
C++
#ifndef _IEC62056_21_H
|
|
#define _IEC62056_21_H
|
|
|
|
#include "Arduino.h"
|
|
#include "AmsData.h"
|
|
#include "Timezone.h"
|
|
|
|
class IEC6205621 : public AmsData {
|
|
public:
|
|
IEC6205621(const char* payload, Timezone* tz);
|
|
|
|
private:
|
|
String extract(String payload, String obis);
|
|
double extractDouble(String payload, String obis);
|
|
float extractFloat(String payload, String obis);
|
|
};
|
|
#endif
|