2014-10-24 18:31:50 +02:00
|
|
|
// Copyright Benoit Blanchon 2014
|
|
|
|
|
// MIT License
|
|
|
|
|
//
|
|
|
|
|
// Arduino JSON library
|
|
|
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
|
|
|
|
|
|
#include "Printers.hpp"
|
|
|
|
|
|
2014-10-24 19:59:14 +02:00
|
|
|
std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue&) {
|
2014-10-24 18:31:50 +02:00
|
|
|
os << "JsonValue"; // TODO
|
|
|
|
|
return os;
|
|
|
|
|
}
|