#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. // Minimum Threshold Value // Default: 0 #define MIN_THRESHOLD 0 // Good Threshold Value // Default: 50 #define GOOD_THRESHOLD 50 // Fair Threshold Value // Default: 100 #define FAIR_THRESHOLD 100 // Moderate Threshold Value // Default: 150 #define MODERATE_THRESHOLD 150 // Poor Threshold Value // Default: 200 #define POOR_THRESHOLD 200 // Very Poor Threshold Value // Default: 250 #define VERY_POOR_THRESHOLD 250 // Extremely Poor Threshold Value // Default: 300 #define EXTREMELY_POOR_THRESHOLD 300 // <<< end of configuration section >>> #endif // SL_MATTER_AIR_QUALITY_CONFIG_H