mirror of
				https://github.com/home-assistant/core.git
				synced 2025-11-04 00:19:31 +00:00 
			
		
		
		
	Co-authored-by: Åke Strandberg <ake@strandberg.eu> Co-authored-by: G Johansson <goran.johansson@shiftit.se> Co-authored-by: Norbert Rittel <norbert@rittel.de>
		
			
				
	
	
		
			15 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Constants for the Ubiquiti airOS integration."""
 | 
						|
 | 
						|
from datetime import timedelta
 | 
						|
 | 
						|
DOMAIN = "airos"
 | 
						|
 | 
						|
SCAN_INTERVAL = timedelta(minutes=1)
 | 
						|
 | 
						|
MANUFACTURER = "Ubiquiti"
 | 
						|
 | 
						|
DEFAULT_VERIFY_SSL = False
 | 
						|
DEFAULT_SSL = True
 | 
						|
 | 
						|
SECTION_ADVANCED_SETTINGS = "advanced_settings"
 |