mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-17 09:02:11 +00:00
17 lines
303 B
C
17 lines
303 B
C
#ifndef _HANTOJSON_h
|
|
#define _HANTOJSON_h
|
|
|
|
#if defined(ARDUINO) && ARDUINO >= 100
|
|
#include "Arduino.h"
|
|
#else
|
|
#include "WProgram.h"
|
|
#endif
|
|
|
|
#include <ArduinoJson.h>
|
|
#include "AmsData.h"
|
|
#include "HwTools.h"
|
|
|
|
void hanToJson(JsonDocument& json, AmsData& data, HwTools& hw, double temperature);
|
|
|
|
#endif
|