mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
21 lines
412 B
Python
21 lines
412 B
Python
"""Constants for Brother integration."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "brother"
|
|
|
|
PRINTER_TYPE_LASER = "laser"
|
|
PRINTER_TYPE_INK = "ink"
|
|
|
|
PRINTER_TYPES: Final = [PRINTER_TYPE_LASER, PRINTER_TYPE_INK]
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|
|
|
|
SECTION_ADVANCED_SETTINGS = "advanced_settings"
|
|
|
|
CONF_COMMUNITY = "community"
|
|
|
|
DEFAULT_COMMUNITY = "public"
|
|
DEFAULT_PORT = 161
|