I’m using airqualitywingexample with particle Argon.
In the example, datas are sent to particle cloud using
Particle.publish("blob", AirQual.toString(), PRIVATE, WITH_ACK);
From my understanding, the datas are published in JSON format:
example of the datas:
{
“pm25”: 12,
“pm10”: 13,
“temperature”: 31.29,
“humidity”: 70,
“tvoc”: 15,
“c02”: 501
}
But how do I extract each individual data and publish it to particle cloud?