// Copyright Benoit Blanchon 2014 // MIT License // // Arduino JSON library // https://github.com/bblanchon/ArduinoJson #include "Printers.hpp" std::ostream& ArduinoJson::operator<<(std::ostream& os, const ArduinoJson::JsonVariant& v) { if (v.is()) os << v.as(); else if (v.is()) os << v.as(); else os << "JsonVariant"; // TODO return os; }