41 lines
994 B
Python
41 lines
994 B
Python
"""Constants for blueprint."""
|
|
# Base component constants
|
|
NAME = "Blueprint"
|
|
DOMAIN = "blueprint"
|
|
DOMAIN_DATA = f"{DOMAIN}_data"
|
|
VERSION = "0.0.1"
|
|
ATTRIBUTION = "Data provided by http://jsonplaceholder.typicode.com/"
|
|
ISSUE_URL = "https://github.com/custom-components/blueprint/issues"
|
|
|
|
# Icons
|
|
ICON = "mdi:format-quote-close"
|
|
|
|
# Device classes
|
|
BINARY_SENSOR_DEVICE_CLASS = "connectivity"
|
|
|
|
# Platforms
|
|
BINARY_SENSOR = "binary_sensor"
|
|
SENSOR = "sensor"
|
|
SWITCH = "switch"
|
|
PLATFORMS = [BINARY_SENSOR, SENSOR, SWITCH]
|
|
|
|
|
|
# Configuration and options
|
|
CONF_ENABLED = "enabled"
|
|
CONF_USERNAME = "username"
|
|
CONF_PASSWORD = "password"
|
|
|
|
# Defaults
|
|
DEFAULT_NAME = DOMAIN
|
|
|
|
|
|
STARTUP_MESSAGE = f"""
|
|
-------------------------------------------------------------------
|
|
{NAME}
|
|
Version: {VERSION}
|
|
This is a custom integration!
|
|
If you have any issues with this you need to open an issue here:
|
|
{ISSUE_URL}
|
|
-------------------------------------------------------------------
|
|
"""
|