mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 07:29:23 +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);
|
|
}; |