mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
19 lines
325 B
C++
19 lines
325 B
C++
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#ifndef _IMPULSEAMSDATA_H
|
|
#define _IMPULSEAMSDATA_H
|
|
|
|
#include "AmsData.h"
|
|
|
|
class ImpulseAmsData : public AmsData {
|
|
public:
|
|
ImpulseAmsData(AmsData &state, uint16_t pulsePerKwh, uint8_t pulses);
|
|
ImpulseAmsData(double activeImportCounter);
|
|
};
|
|
|
|
#endif
|