Sound Servo (PC Mic) icon Sound Servo (PC Mic) Maps PC microphone volume to servo positions - control multiple servos (e.g., robotic mouth) with scalar, min/max and invert options. Try it →
 

Parse JSON

The JSON javascript class is included in the ARC javascript compiler. You can parse the JSON in javascript directly in ARC.


Here's an example parsing JSON from a string...

Code:


var resp = '{ "glossary": { "title": "example glossary" } }';

var myObj = JSON.parse(resp);

print (myObj.glossary.title);



And here's an example of getting JSON from an HTTP get request...

Code:


var resp = Net.hTTPGet("https://ip.jsontest.com/");

var myObj = JSON.parse(resp);

print (myObj.ip);