mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-04-10 15:28:55 +00:00
14 lines
321 B
C++
14 lines
321 B
C++
/**
|
|
* @copyright Utilitech AS 2023-2026
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
#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);
|
|
}; |