forked from bblanchon/ArduinoJson
-
Notifications
You must be signed in to change notification settings - Fork 0
Using the library without Arduino
Benoît Blanchon edited this page Jan 13, 2016
·
2 revisions
This library is primarily design to be used with the Arduino IDE and therefore has a simplified setup procedure for that environment. If you use the Arduino IDE, please read [Using the library with Arduino](Using the library with Arduino).
However, it can be used without Arduino IDE with very little effort.
Step 1: Download source code:
git clone https://github.com/bblanchon/ArduinoJson.git
Step 2: Generate the Makefile for your environment
cd ArduinoJson
cmake .
Step 3: Build
make
Assuming you installed the library into <arduino-json>, you need to add:
-
<arduino-json>/includeto your include path -
<arduino-json>/libto your library path
You are now ready to follow the instructions: