| #ifndef SL_MATTER_AIR_QUALITY_CONFIG_H |
| #define SL_MATTER_AIR_QUALITY_CONFIG_H |
| |
| // <<< Use Configuration Wizard in Context Menu >>> |
| |
| // AirQualityConfig.h |
| // This header file contains preprocessor directives to set air quality thresholds. |
| // Users should modify these #define statements to customize thresholds for their application. |
| // These thresholds are used to categorize air quality into various levels. |
| |
| // <o MIN_THRESHOLD> Minimum Threshold Value |
| // <i> Default: 0 |
| #define MIN_THRESHOLD 0 |
| |
| // <o GOOD_THRESHOLD> Good Threshold Value |
| // <i> Default: 50 |
| #define GOOD_THRESHOLD 50 |
| |
| // <o FAIR_THRESHOLD> Fair Threshold Value |
| // <i> Default: 100 |
| #define FAIR_THRESHOLD 100 |
| |
| // <o MODERATE_THRESHOLD> Moderate Threshold Value |
| // <i> Default: 150 |
| #define MODERATE_THRESHOLD 150 |
| |
| // <o POOR_THRESHOLD> Poor Threshold Value |
| // <i> Default: 200 |
| #define POOR_THRESHOLD 200 |
| |
| // <o VERY_POOR_THRESHOLD> Very Poor Threshold Value |
| // <i> Default: 250 |
| #define VERY_POOR_THRESHOLD 250 |
| |
| // <o EXTREMELY_POOR_THRESHOLD> Extremely Poor Threshold Value |
| // <i> Default: 300 |
| #define EXTREMELY_POOR_THRESHOLD 300 |
| |
| // <<< end of configuration section >>> |
| |
| #endif // SL_MATTER_AIR_QUALITY_CONFIG_H |