├── .github └── workflows │ ├── ossar-analysis.yml │ └── validate.yaml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── smart-app-icon.png ├── custom_components └── Hitachi_smart_app │ ├── __init__.py │ ├── climate.py │ ├── config_flow.py │ ├── const.py │ ├── entity.py │ ├── fan.py │ ├── humidifier.py │ ├── manifest.json │ ├── number.py │ ├── sensor.py │ ├── smarthome │ ├── __init__.py │ ├── _taiseia.py │ ├── certificate.crt │ ├── const.py │ ├── exceptions.py │ └── urls.py │ ├── switch.py │ └── translations │ ├── en.json │ └── zh-Hant.json ├── hacs.json └── info.md /.github/workflows/ossar-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/.github/workflows/ossar-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _test 2 | __pycache__ 3 | secrets.py 4 | *.pyc 5 | .DS_Store 6 | .vscode 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/README.md -------------------------------------------------------------------------------- /assets/smart-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/assets/smart-app-icon.png -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/__init__.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/climate.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/config_flow.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/const.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/entity.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/fan.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/humidifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/humidifier.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/manifest.json -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/number.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/sensor.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/__init__.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/_taiseia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/_taiseia.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/certificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/certificate.crt -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/const.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/exceptions.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/smarthome/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/smarthome/urls.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/switch.py -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/translations/en.json -------------------------------------------------------------------------------- /custom_components/Hitachi_smart_app/translations/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/custom_components/Hitachi_smart_app/translations/zh-Hant.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/hacs.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n71154plus/Hitachi_smart_app/HEAD/info.md --------------------------------------------------------------------------------