mirror of
				https://github.com/home-assistant/core.git
				synced 2025-11-04 08:29:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			302 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			302 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Constants for the air-Q integration."""
 | 
						|
 | 
						|
from typing import Final
 | 
						|
 | 
						|
CONF_RETURN_AVERAGE: Final = "return_average"
 | 
						|
CONF_CLIP_NEGATIVE: Final = "clip_negatives"
 | 
						|
DOMAIN: Final = "airq"
 | 
						|
MANUFACTURER: Final = "CorantGmbH"
 | 
						|
ACTIVITY_BECQUEREL_PER_CUBIC_METER: Final = "Bq/m³"
 | 
						|
UPDATE_INTERVAL: float = 10.0
 |