Hello the SCK dashboard measures and displays these three values (pressure, eco2, eTVOC) routinely, but these values don’t seem to be immediately available through the API.
I checked out the documentation about CCS811 and noticed that they consider temperature and humidity to compensate for values of this sensor.
In looking through the documentation for pulling the latest readings, these lines of code seemed redundant (older versions?) using sensors that I don’t believe are in the SCK 2.1:
{
"id": 8,
"ancestry": null,
"name": "MICS-2710",
"description": "MOS NO2 gas sensor",
"unit": "kOhm (ppm)",
"created_at": "2015-02-02T18:17:23Z",
"updated_at": "2015-07-05T19:56:21Z",
"measurement_id": 6,
"uuid": "1eb0249d-29d8-41be-8e24-d3b1e5773c0f",
"value": 197.574,
"raw_value": 197574,
"prev_value": 182.971,
"prev_raw_value": 182971
},
{
"id": 9,
"ancestry": null,
"name": "MICS-5525",
"description": "MOS CO gas sensor",
"unit": "kOhm (ppm)",
"created_at": "2015-02-02T18:17:44Z",
"updated_at": "2015-07-05T19:56:07Z",
"measurement_id": 5,
"uuid": "7baaecb7-2586-4063-9c15-bfa999e329aa",
"value": 276.753,
"raw_value": 276753,
"prev_value": 278.468,
"prev_raw_value": 278468
},
{
"id": 21,
"ancestry": null,
"name": "Microchip RN-131",
"description": "802.11 b/g WiFi",
"unit": "# networks",
"created_at": "2015-05-04T11:17:18Z",
"updated_at": "2015-07-05T19:57:22Z",
"measurement_id": 9,
"uuid": "5b1f0e38-336a-4abf-9989-69b48f0026ef",
"value": 4,
"raw_value": null,
"prev_value": 4,
"prev_raw_value": null
},
I would love some guidance on knowing the calculations or calls for getting real-time values of:
- Barometric Pressure
- eCO2
- eTVOC
(It’s okay if they’re not super accurate and if we still need to consider burn-in time)
thank you very much!