├── README.md ├── custom_components └── phicomm_dc1_switch │ ├── __init__.py │ ├── manifest.json │ └── switch.py ├── hacs.json └── info.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5high/phicomm-dc1-homeassistant/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/phicomm_dc1_switch/__init__.py: -------------------------------------------------------------------------------- 1 | """The phicomm dc1 switch integration.""" -------------------------------------------------------------------------------- /custom_components/phicomm_dc1_switch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5high/phicomm-dc1-homeassistant/HEAD/custom_components/phicomm_dc1_switch/manifest.json -------------------------------------------------------------------------------- /custom_components/phicomm_dc1_switch/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5high/phicomm-dc1-homeassistant/HEAD/custom_components/phicomm_dc1_switch/switch.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5high/phicomm-dc1-homeassistant/HEAD/hacs.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5high/phicomm-dc1-homeassistant/HEAD/info.md --------------------------------------------------------------------------------