-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added dummy library "JSON Library" with examples
with this library and examples we will test the .hpp files handling by eratosthenes and the compiler
- Loading branch information
1 parent
9d59d9b
commit b7536e5
Showing
11 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
Symfony/src/Codebender/LibraryBundle/Resources/library_files/jsonlib/JsonLibraryc.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
|
||
#ifdef ARDUINO | ||
|
||
|
||
#endif |
5 changes: 5 additions & 0 deletions
5
Symfony/src/Codebender/LibraryBundle/Resources/library_files/jsonlib/JsonLibraryh.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
#ifdef ARDUINO | ||
|
||
|
||
#endif |
5 changes: 5 additions & 0 deletions
5
Symfony/src/Codebender/LibraryBundle/Resources/library_files/jsonlib/JsonLibraryhp.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
|
||
#ifdef ARDUINO | ||
|
||
#endif |
10 changes: 10 additions & 0 deletions
10
...le/Resources/library_files/jsonlib/examples/IndentedPrintExample/IndentedPrintExample.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include "PrintExamplehp.hpp" | ||
|
||
void setup() { | ||
int x= varde+5; | ||
|
||
} | ||
|
||
void loop() { | ||
// not used in this example | ||
} |
1 change: 1 addition & 0 deletions
1
...ryBundle/Resources/library_files/jsonlib/examples/IndentedPrintExample/PrintExamplehp.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#define varde 2 ; |
3 changes: 3 additions & 0 deletions
3
...braryBundle/Resources/library_files/jsonlib/examples/JsonParserExample/JsonLibrarycex.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#ifdef ARDUINO | ||
|
||
#endif |
9 changes: 9 additions & 0 deletions
9
...ryBundle/Resources/library_files/jsonlib/examples/JsonParserExample/JsonParserExample.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "jsonlibex.h" | ||
|
||
void setup() { | ||
Serial.begin(9600); | ||
} | ||
|
||
void loop() { | ||
// not used in this example | ||
} |
1 change: 1 addition & 0 deletions
1
...nder/LibraryBundle/Resources/library_files/jsonlib/examples/JsonParserExample/jsonlibex.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "JsonLibrarycex.cpp" |
5 changes: 5 additions & 0 deletions
5
Symfony/src/Codebender/LibraryBundle/Resources/library_files/jsonlib/jsonlib.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
#ifdef ARDUINO | ||
|
||
|
||
#endif |