Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for TCP platform."""
2 
3 from __future__ import annotations
4 
5 from typing import Final
6 
7 CONF_BUFFER_SIZE: Final = "buffer_size"
8 CONF_VALUE_ON: Final = "value_on"
9 
10 DEFAULT_BUFFER_SIZE: Final = 1024
11 DEFAULT_NAME: Final = "TCP Sensor"
12 DEFAULT_TIMEOUT: Final = 10
13 DEFAULT_SSL: Final = False
14 DEFAULT_VERIFY_SSL: Final = True