├── .gitignore ├── LICENSE ├── README.md ├── custom_components.json ├── custom_components └── sinope │ ├── GT125_connect.md │ ├── __init__.py │ ├── climate.py │ ├── const.py │ ├── crc8.py │ ├── device.py │ ├── helpers.py │ ├── light.py │ ├── manifest.json │ ├── services.yaml │ └── switch.py ├── customize.yaml ├── hacs.json ├── icon_view2.png └── www ├── floor-0.png ├── floor-1.png ├── floor-2.png ├── floor-3.png ├── floor-4.png ├── floor-5.png ├── floorplan ├── drop.svg ├── example_ui_lovelace.yaml ├── floor-0.svg ├── floor-1.svg ├── floor-2.svg ├── floor-3.svg ├── floor-4.svg ├── floor-5.svg ├── floorplan.css ├── floorplan.png ├── heat-0.svg ├── heat-1.svg ├── heat-2.svg ├── heat-3.svg ├── heat-4.svg ├── heat-5.svg ├── leak.svg ├── light-off.svg ├── light-on.svg └── readme.md ├── heat-0.png ├── heat-1.png ├── heat-2.png ├── heat-3.png ├── heat-4.png ├── heat-5.png └── scan-device.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/README.md -------------------------------------------------------------------------------- /custom_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components.json -------------------------------------------------------------------------------- /custom_components/sinope/GT125_connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/GT125_connect.md -------------------------------------------------------------------------------- /custom_components/sinope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/__init__.py -------------------------------------------------------------------------------- /custom_components/sinope/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/climate.py -------------------------------------------------------------------------------- /custom_components/sinope/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/const.py -------------------------------------------------------------------------------- /custom_components/sinope/crc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/crc8.py -------------------------------------------------------------------------------- /custom_components/sinope/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/device.py -------------------------------------------------------------------------------- /custom_components/sinope/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/helpers.py -------------------------------------------------------------------------------- /custom_components/sinope/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/light.py -------------------------------------------------------------------------------- /custom_components/sinope/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/manifest.json -------------------------------------------------------------------------------- /custom_components/sinope/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/services.yaml -------------------------------------------------------------------------------- /custom_components/sinope/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/custom_components/sinope/switch.py -------------------------------------------------------------------------------- /customize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/customize.yaml -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/hacs.json -------------------------------------------------------------------------------- /icon_view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/icon_view2.png -------------------------------------------------------------------------------- /www/floor-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-0.png -------------------------------------------------------------------------------- /www/floor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-1.png -------------------------------------------------------------------------------- /www/floor-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-2.png -------------------------------------------------------------------------------- /www/floor-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-3.png -------------------------------------------------------------------------------- /www/floor-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-4.png -------------------------------------------------------------------------------- /www/floor-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floor-5.png -------------------------------------------------------------------------------- /www/floorplan/drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/drop.svg -------------------------------------------------------------------------------- /www/floorplan/example_ui_lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/example_ui_lovelace.yaml -------------------------------------------------------------------------------- /www/floorplan/floor-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-0.svg -------------------------------------------------------------------------------- /www/floorplan/floor-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-1.svg -------------------------------------------------------------------------------- /www/floorplan/floor-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-2.svg -------------------------------------------------------------------------------- /www/floorplan/floor-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-3.svg -------------------------------------------------------------------------------- /www/floorplan/floor-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-4.svg -------------------------------------------------------------------------------- /www/floorplan/floor-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floor-5.svg -------------------------------------------------------------------------------- /www/floorplan/floorplan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floorplan.css -------------------------------------------------------------------------------- /www/floorplan/floorplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/floorplan.png -------------------------------------------------------------------------------- /www/floorplan/heat-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-0.svg -------------------------------------------------------------------------------- /www/floorplan/heat-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-1.svg -------------------------------------------------------------------------------- /www/floorplan/heat-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-2.svg -------------------------------------------------------------------------------- /www/floorplan/heat-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-3.svg -------------------------------------------------------------------------------- /www/floorplan/heat-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-4.svg -------------------------------------------------------------------------------- /www/floorplan/heat-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/heat-5.svg -------------------------------------------------------------------------------- /www/floorplan/leak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/leak.svg -------------------------------------------------------------------------------- /www/floorplan/light-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/light-off.svg -------------------------------------------------------------------------------- /www/floorplan/light-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/light-on.svg -------------------------------------------------------------------------------- /www/floorplan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/floorplan/readme.md -------------------------------------------------------------------------------- /www/heat-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-0.png -------------------------------------------------------------------------------- /www/heat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-1.png -------------------------------------------------------------------------------- /www/heat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-2.png -------------------------------------------------------------------------------- /www/heat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-3.png -------------------------------------------------------------------------------- /www/heat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-4.png -------------------------------------------------------------------------------- /www/heat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/heat-5.png -------------------------------------------------------------------------------- /www/scan-device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudegel/sinope-gt125/HEAD/www/scan-device.jpg --------------------------------------------------------------------------------