我想解析來自我的arduino中的網絡服務器的JSON響應,以打開和關閉LED燈。我正在使用WiFi client repeating example to make a GET request to my server。解析JSON響應?
這裏就是我做的GET請求部分,並將其打印JSON響應到串行端口:
client.println("GET /abc/bze/ HTTP/1.1");
client.println("Host: www.abc.ca");
client.println("User-Agent: ArduinoWiFi/1.1");
client.println("Connection: close");
client.println();
我的JSON看起來像這樣
{"lightstatus":"on"}
但是,我怎麼解析只有JSON響應才能使用它來控制我的LED?謝謝。
的可能重複[是否有一個C++庫來讀取JSON文件轉換成C++對象?(http://stackoverflow.com/questions/6538725/is-there-ac-library-to-read-json -documents-into-c-objects) – lpapp