Added a header to simplify library usage

This commit is contained in:
Benoit Blanchon
2014-11-11 16:54:46 +01:00
parent e0ce711eb4
commit f6f8a63b99
25 changed files with 34 additions and 119 deletions

11
include/ArduinoJson.h Normal file
View File

@ -0,0 +1,11 @@
// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#include "../include/ArduinoJson/JsonArray.hpp"
#include "../include/ArduinoJson/JsonObject.hpp"
#include "../include/ArduinoJson/StaticJsonBuffer.hpp"
using namespace ArduinoJson;