mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-15 11:36:36 +02:00
25 lines
559 B
C++
25 lines
559 B
C++
#include "ArduinoJson/Internals/JsonWriter.h"
|
|
#include "ArduinoJson/Internals/EscapedString.h"
|
|
|
|
using namespace ArduinoJson::Internals;
|
|
|
|
void JsonWriter::writeString(char const* value)
|
|
{
|
|
_length += EscapedString::printTo(value, _sink);
|
|
}
|
|
|
|
void JsonWriter::writeInteger(long value)
|
|
{
|
|
|
|
_length += _sink->print(value);
|
|
}
|
|
|
|
void JsonWriter::writeBoolean(bool value)
|
|
{
|
|
_length += _sink->print(value ? "true" : "false");
|
|
}
|
|
|
|
void JsonWriter::writeDouble(double value, int decimals)
|
|
{
|
|
_length += _sink->print(value, decimals);
|
|
} |