JsonParserGeneratorRK
JsonParserGeneratorRK copied to clipboard
JSON parser and generator for Particle devices
Still compiles and works, just pointing this out. Demo/lib/JsonParserGeneratorRK/src/JsonParserGeneratorRK.cpp:1136:11: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'unsigned int'} [-Wsign-compare] 1136 | while(ii < jp.getOffset() &&...
i need to allocate more memory Anyone has a solution?
Hi, I am trying to achieve the following JSON object: ``` { "b": 92.60, "SDI12-Id": "113CampbellCS65X 000Std.02=37053", "seq": 666, "t": -99.99, "Time": "2020-08-31T12:44:24Z", "Pairs": [{ "ParameterID": "0", "Value": 0.00 },...
Hi, In the README file, I can read: > SparkJson creates piles of objects that are copies of the original data during parsing. Do you have any data to back...
how do I parse the scheduleJson into array of Schedule class? ``` String scheduleJson = "[{hour:1, isFlashWindow: false}, {hour:2, isFlashWindow: false}, {hour:7.30, isFlashWindow: true}, {hour:8, isFlashWindow: false}]"; class Schedule{ public:...
Hey, First of all thanks for the awesome library, i really love it. I use webhooks and get large response data(about 8KB) and I use the Subscription handler you did...
Added explicit cast to (int) for jp.getOffset() to fix sign comparison warning between int and size_t types. This resolves the compiler warning when comparing signed and unsigned integer types.