Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.onewire.onewirehub Namespace Reference

Classes

class  CannotConnect
 
class  InvalidPath
 
class  OneWireHub
 

Functions

bool _is_known_device (str device_family, str|None device_type)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary DEVICE_COUPLERS
 
dictionary DEVICE_MANUFACTURER
 

Detailed Description

Hub for communication with 1-Wire server or mount_dir.

Function Documentation

◆ _is_known_device()

bool homeassistant.components.onewire.onewirehub._is_known_device ( str  device_family,
str | None  device_type 
)
private
Check if device family/type is known to the library.

Definition at line 48 of file onewirehub.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.onewire.onewirehub._LOGGER = logging.getLogger(__name__)
private

Definition at line 45 of file onewirehub.py.

◆ DEVICE_COUPLERS

dictionary homeassistant.components.onewire.onewirehub.DEVICE_COUPLERS
Initial value:
1 = {
2  # Family : [branches]
3  "1F": ["aux", "main"]
4 }

Definition at line 35 of file onewirehub.py.

◆ DEVICE_MANUFACTURER

dictionary homeassistant.components.onewire.onewirehub.DEVICE_MANUFACTURER
Initial value:
1 = {
2  "7E": MANUFACTURER_EDS,
3  "EF": MANUFACTURER_HOBBYBOARDS,
4 }

Definition at line 40 of file onewirehub.py.