├── .config └── configuration.yaml ├── .devcontainer ├── devcontainer.json └── docker-compose.yaml ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── custom_components └── ihcviewer │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── apibase.py │ ├── getresource.py │ ├── log.py │ ├── manual_binarysensor.py │ ├── manual_light.py │ ├── manual_remove.py │ ├── manual_sensor.py │ ├── manual_switch.py │ ├── mapper.py │ ├── mapping.py │ ├── project.py │ ├── setboolresource.py │ ├── systeminfo.py │ └── yamlhelper.py │ ├── config_flow.py │ ├── const.py │ ├── frontend │ ├── panel.js │ └── panel.js.map │ ├── manifest.json │ ├── strings.json │ └── translations │ └── en.json ├── images ├── menu.png └── treeview.png ├── info.md ├── license.txt ├── package.json ├── readme.md ├── src ├── copytoclipboard.ts ├── dialogs │ ├── ihc-binary-res-dlg.ts │ ├── ihc-resource-dlg.ts │ └── ihc-sensor-res-dlg.ts ├── elements │ ├── ihc-controller-element.ts │ ├── ihc-info-element.ts │ ├── ihc-log-element.ts │ ├── ihc-properties-element.ts │ ├── ihc-tree-node.ts │ └── loader-element.ts ├── ihcmanager.ts ├── ihcproject.ts └── panel.ts ├── tsconfig.json └── webpack.config.js /.config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.config/configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.devcontainer/docker-compose.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /custom_components/ihcviewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/__init__.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/__init__.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/apibase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/apibase.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/getresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/getresource.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/log.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/manual_binarysensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/manual_binarysensor.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/manual_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/manual_light.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/manual_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/manual_remove.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/manual_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/manual_sensor.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/manual_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/manual_switch.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/mapper.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/mapping.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/project.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/setboolresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/setboolresource.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/systeminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/systeminfo.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/api/yamlhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/api/yamlhelper.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/config_flow.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/const.py -------------------------------------------------------------------------------- /custom_components/ihcviewer/frontend/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/frontend/panel.js -------------------------------------------------------------------------------- /custom_components/ihcviewer/frontend/panel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/frontend/panel.js.map -------------------------------------------------------------------------------- /custom_components/ihcviewer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/manifest.json -------------------------------------------------------------------------------- /custom_components/ihcviewer/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/strings.json -------------------------------------------------------------------------------- /custom_components/ihcviewer/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/custom_components/ihcviewer/translations/en.json -------------------------------------------------------------------------------- /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/treeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/images/treeview.png -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/info.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/readme.md -------------------------------------------------------------------------------- /src/copytoclipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/copytoclipboard.ts -------------------------------------------------------------------------------- /src/dialogs/ihc-binary-res-dlg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/dialogs/ihc-binary-res-dlg.ts -------------------------------------------------------------------------------- /src/dialogs/ihc-resource-dlg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/dialogs/ihc-resource-dlg.ts -------------------------------------------------------------------------------- /src/dialogs/ihc-sensor-res-dlg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/dialogs/ihc-sensor-res-dlg.ts -------------------------------------------------------------------------------- /src/elements/ihc-controller-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/ihc-controller-element.ts -------------------------------------------------------------------------------- /src/elements/ihc-info-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/ihc-info-element.ts -------------------------------------------------------------------------------- /src/elements/ihc-log-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/ihc-log-element.ts -------------------------------------------------------------------------------- /src/elements/ihc-properties-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/ihc-properties-element.ts -------------------------------------------------------------------------------- /src/elements/ihc-tree-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/ihc-tree-node.ts -------------------------------------------------------------------------------- /src/elements/loader-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/elements/loader-element.ts -------------------------------------------------------------------------------- /src/ihcmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/ihcmanager.ts -------------------------------------------------------------------------------- /src/ihcproject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/ihcproject.ts -------------------------------------------------------------------------------- /src/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/src/panel.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingusdk/haihcviewer/HEAD/webpack.config.js --------------------------------------------------------------------------------