Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/realsense_sensor_data_aq.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Format of attribute: *"v"* in the general data formats:
"tvoc": "<number>", // Level of volatile organic compounds in surrounding air, Unit: mg/m3 (milligrams per meter cube)
"pm_10": "<number>", // Level of particulate matter (10 micrometer), Unit: ug/m3 (microgram per meter cube)
"pm_2.5": "<number>", // Level of particulate matter <2.5 micrometer measured in ug/m3 (Microgram per meter cube)
"pressure": "<number>", // Barometric pressure in surrounding air, Unit: In millibars or 100.4 Kilo Pascal
"pressure": "<number>", // Barometric pressure in surrounding air, Unit: In millibars
"temperature": "<number>", // Temperature in surrounding air, Unit: Degree Celcius
"pir_trigger": "<number>" // State (1 or 0) of any motion detected in the environment
}
Expand All @@ -49,13 +49,16 @@ Notes:
Format of attribute: *"v"* in the general data formats:
```json
{
"amm": <number>, // Level of Ammonia in surrounding air, Unit: PPM (parts per billion)
"amm": <number>, // Level of Ammonia in surrounding air, Unit: ppb (parts per billion)
"aqi": <number>, // Air Quality Index (number between 1 - 500)
"rh": <number>, // Relative humidity (percent, after divided by 10)
"temp": <number>, // Temperature (degree celcius, after divided by 10)
}
```

Note:
1. The unit of **amm** from this device is parts per billion (ppb)

**Example use cases:**

1. **Threshold on level of Ammonia:**
Expand Down Expand Up @@ -170,7 +173,7 @@ Notes:
"unixT": 1654063185904,
"utc": 1654063185,
"v": {
"amm": 0,
"amm": 88,
"aqi": 103,
"rh": 730,
"temp": 304
Expand Down
7 changes: 7 additions & 0 deletions docs/realsense_sensor_firmwares.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@ nav_order: 1
1. SMARTCLEAN#PPLCTR
- 3_0_6_r for Partners and RealSense enabled projects
- 3_0_6_nr for non-RealSense projects
- 4_0_0_r Access Point disabled for Partners and RealSense enabled projects
- 4_0_0_nr Access Point Disabled for non-RealSense projects
2. SMARTCLEAN#ODRDTR
- 3_0_6_r for Partners and RealSense enabled projects
- 3_0_6_nr for non-RealSense projects
- 4_0_0_r Access Point disabled for Partners and RealSense enabled projects
- 4_0_0_nr Access Point Disabled for non-RealSense projects
3. SMARTCLEAN#AQGW
- 1_0_7aqgw_r for Partners and RealSense enabled projects
- 1_0_7aqgw_nr for non-RealSense projects
- 2_0_0aqgw_r Access Point disabled for Partners and RealSense enabled projects
- 2_0_0_nr Access Point Disabled for non-RealSense projects
4. SMARTCLEAN#WD
- 4_0_6wd for Partners and RealSense enabled projects
- 3_1_7wd for non-RealSense projects
- 4_1_0wd Access Point disabled for Partners and RealSense enabled projects
```