mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-28 13:09:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			502 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			502 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Constants for the Blue Current integration."""
 | |
| 
 | |
| import logging
 | |
| 
 | |
| DOMAIN = "blue_current"
 | |
| 
 | |
| LOGGER = logging.getLogger(__package__)
 | |
| 
 | |
| EVSE_ID = "evse_id"
 | |
| MODEL_TYPE = "model_type"
 | |
| PLUG_AND_CHARGE = "plug_and_charge"
 | |
| VALUE = "value"
 | |
| PERMISSION = "permission"
 | |
| CHARGEPOINT_STATUS = "CH_STATUS"
 | |
| CHARGEPOINT_SETTINGS = "CH_SETTINGS"
 | |
| BLOCK = "block"
 | |
| UNAVAILABLE = "unavailable"
 | |
| AVAILABLE = "available"
 | |
| LINKED_CHARGE_CARDS = "linked_charge_cards_only"
 | |
| PUBLIC_CHARGING = "public_charging"
 | |
| ACTIVITY = "activity"
 | 
