mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-30 22:19:37 +00:00 
			
		
		
		
	 4bbfea3c7c
			
		
	
	4bbfea3c7c
	
	
	
		
			
			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"
 |