How to extract an array from json data
Created by: joelzavala
Hi, I'm working with an esp8266 and using the ArduinoJson and ESP8266HTTPClient libraries. I have a data buffer (raw infrared codes) of type int in my server. Example: [1, 2, 3, 4, 5] -> How is it displayed on the server That buffer is what returns me the ESP8266HTTPClient library as payload and string type. Then I get that payload (the variable) and deserialize it with the ArduinoJson library. Now, what I need is to put that array or buffer in an unsigned int buffer variable, how do I do it with the arduino json library?