mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
19 lines
327 B
C++
19 lines
327 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2019
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include "../Configuration.hpp"
|
|
|
|
namespace ArduinoJson {
|
|
namespace Internals {
|
|
|
|
#if ARDUINOJSON_USE_DOUBLE
|
|
typedef double JsonFloat;
|
|
#else
|
|
typedef float JsonFloat;
|
|
#endif
|
|
} // namespace Internals
|
|
} // namespace ArduinoJson
|