mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-02-01 14:42:00 +00:00
9 lines
248 B
C++
9 lines
248 B
C++
#pragma once
|
|
|
|
#include "AmsDataStorage.h"
|
|
|
|
class AmsJsonGenerator {
|
|
public:
|
|
static void generateDayPlotJson(AmsDataStorage* ds, char* buf, size_t bufSize);
|
|
static void generateMonthPlotJson(AmsDataStorage* ds, char* buf, size_t bufSize);
|
|
}; |