├── .gitignore ├── LICENSE ├── README.md ├── openhab_config ├── items │ └── ventilation.items ├── rules │ └── ventilation.rules ├── sitemap │ └── ventilation.sitemap └── transform │ ├── ventilation_mode.map │ ├── ventilation_speed.map │ ├── ventilation_temperature.js │ └── ventilation_ventmode.map ├── openhab_gw.py └── pycomfoconnect ├── __init__.py ├── bridge.py ├── comfoconnect.py ├── const.py ├── error.py ├── message.py └── zehnder_pb2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/README.md -------------------------------------------------------------------------------- /openhab_config/items/ventilation.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_config/items/ventilation.items -------------------------------------------------------------------------------- /openhab_config/rules/ventilation.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_config/rules/ventilation.rules -------------------------------------------------------------------------------- /openhab_config/sitemap/ventilation.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_config/sitemap/ventilation.sitemap -------------------------------------------------------------------------------- /openhab_config/transform/ventilation_mode.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_config/transform/ventilation_mode.map -------------------------------------------------------------------------------- /openhab_config/transform/ventilation_speed.map: -------------------------------------------------------------------------------- 1 | 0=AWAY 2 | 1=NORMAL 3 | 2=HIGH 4 | 3=MAX 5 | 4=AUTO 6 | -=UNKNOWN 7 | -------------------------------------------------------------------------------- /openhab_config/transform/ventilation_temperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_config/transform/ventilation_temperature.js -------------------------------------------------------------------------------- /openhab_config/transform/ventilation_ventmode.map: -------------------------------------------------------------------------------- 1 | 0=8 2 | 1=7 3 | -------------------------------------------------------------------------------- /openhab_gw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/openhab_gw.py -------------------------------------------------------------------------------- /pycomfoconnect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/__init__.py -------------------------------------------------------------------------------- /pycomfoconnect/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/bridge.py -------------------------------------------------------------------------------- /pycomfoconnect/comfoconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/comfoconnect.py -------------------------------------------------------------------------------- /pycomfoconnect/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/const.py -------------------------------------------------------------------------------- /pycomfoconnect/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/error.py -------------------------------------------------------------------------------- /pycomfoconnect/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/message.py -------------------------------------------------------------------------------- /pycomfoconnect/zehnder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ORi0N/comfoconnect_openhab_gw/HEAD/pycomfoconnect/zehnder_pb2.py --------------------------------------------------------------------------------