8000 GitHub - Roosted7/jsonlib: Simple JSON parsing library for arduino
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Roosted7/jsonlib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jsonlib

Simple JSON parsing library for arduino.

Usage example

  //Remove white space (outside of string literals) from json String
  json = jsonRemoveWhiteSpace(json);
  
  String posStr = jsonExtract(json, "coord");          // {"lon":-77.35,"lat":38.93}
  float lat = jsonExtract(posStr, "lat").toFloat();    // 38.93
  float lon = jsonExtract(posStr, "lon").toFloat();    // -77.35
  String weather_list = jsonExtract(json, "weather");  // [{"id":500,"main":"Rain","description":"light rain","icon":"10d"}]
  Serial.print("weather_list:");
  Serial.println(weather_list);
  String weather_0 = jsonIndexList(weather_list, 0);   // {"id":500,"main":"Rain","description":"light rain","icon":"10d"}
  Serial.print("weather_0:");
  Serial.println(weather_0);
  String desc = jsonExtract(weather_0, "description"); // light rain
  Serial.printf("Location:%f,%f.  Current conditions: %s", lat, lon, desc.c_str());

Reference

jsonRemoveWhiteSpace

String jsonRemoveWhiteSpace(String json);

Returns a String with white space outside of string literals removed. For instance

{"testing" : "one, two, three"} ==> {"testing":"one, two, three"}

jsonIndexList

String jsonIndexList(String json, int idx);

Returns a String containing indexed item from provided String containing a json object.

jsonExtract

String jsonExtract(String json, String name);

Returns a String containing the named item from provided String containing a json object. If name does not exist returns an empty String.

About

Simple JSON parsing library for arduino

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 92.0%
  • C 8.0%
0