ESP-1ch-Gateway-v5.0--OLD/libraries/ArduinoJson/src/ArduinoJson/Data/JsonFloat.hpp

19 wiersze
277 B
C++

// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License
#pragma once
#include "../Configuration.hpp"
namespace ArduinoJson {
namespace Internals {
#if ARDUINOJSON_USE_DOUBLE
typedef double JsonFloat;
#else
typedef float JsonFloat;
#endif
}
}