mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-03-27 02:33:58 +00:00
11 lines
374 B
C++
11 lines
374 B
C++
#pragma once
|
|
|
|
#include "AmsDataStorage.h"
|
|
#include "AmsConfiguration.h"
|
|
|
|
class AmsJsonGenerator {
|
|
public:
|
|
static void generateDayPlotJson(AmsDataStorage* ds, char* buf, size_t bufSize);
|
|
static void generateMonthPlotJson(AmsDataStorage* ds, char* buf, size_t bufSize);
|
|
static void generateConfigurationJson(AmsConfiguration* config, char* buf, size_t bufSize);
|
|
}; |