├── .github ├── ISSUE_TEMPLATE │ ├── new-device-feature-support.md │ └── plugin-doesn-t-work-properly.md └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SUPPORTED_DEVICES.md ├── adapter.py ├── adapters ├── __init__.py ├── adapter_with_battery.py ├── base_adapter.py ├── bitron │ ├── AV201032.py │ ├── __init__.py │ └── siren.py ├── dimmable_bulb_adapter.py ├── dimmable_ct_bulb_adapter.py ├── diy │ ├── diyruzrt.py │ ├── ptvo_switch.py │ └── zigup.py ├── ecodim │ ├── __init__.py │ └── zigbee2buttonwallswitchblack.py ├── feibit │ └── __init__.py ├── generic │ ├── __init__.py │ ├── mixins │ │ ├── __init__.py │ │ ├── cct.py │ │ └── rgb.py │ ├── siren.py │ └── thermostat.py ├── gledopto │ ├── GLC0082ID.py │ └── __init__.py ├── heiman │ ├── HS1CAE.py │ ├── HS1RC.py │ └── __init__.py ├── icasa │ ├── KPD14S.py │ ├── KPD18S.py │ └── __init__.py ├── ikea │ ├── __init__.py │ ├── symfonisk.py │ ├── tradfri_remote_control.py │ ├── tradfri_switch_on_off.py │ └── tradfri_wireless_dimmer.py ├── life_control │ ├── MCLH08.py │ └── __init__.py ├── lumi │ ├── DJT11LM.py │ ├── JTYJ_GD_01LM.py │ ├── VOCKQJK11LM.py │ ├── WXCJKG11LM.py │ ├── WXCJKG12LM.py │ ├── WXCJKG13LM.py │ ├── __init__.py │ ├── aqara_opple_switch.py │ ├── sensor_cube.py │ └── smart_lock.py ├── meazon │ ├── __init__.py │ └── dinrail.py ├── moes │ ├── BRT100TRV.py │ └── __init__.py ├── neo │ ├── NASAB02B0.py │ └── __init__.py ├── on_off_switch_adapter.py ├── osram │ ├── __init__.py │ └── smart_mini_switch.py ├── oujiabao │ ├── CR701_YZ.py │ └── __init__.py ├── philips │ ├── __init__.py │ └── hue_dimmer_switch.py ├── rgb_adapter.py ├── rgbw_adapter.py ├── samsung │ ├── __init__.py │ └── sensor_arrival.py ├── schneider_electric │ ├── WV704R0A0902.py │ └── __init__.py ├── sinope │ ├── TH1124ZB.py │ └── __init__.py ├── siterwell │ ├── GS361AH04.py │ └── __init__.py ├── trust │ ├── __init__.py │ └── zyct202.py ├── tuya │ ├── TS0002.py │ ├── TS0012.py │ ├── TS0013.py │ ├── TS0015.py │ ├── TS0601.py │ ├── TV02.py │ └── __init__.py ├── tuyatec │ ├── GDKES02TZXD.py │ ├── GDKES03TZXD.py │ └── __init__.py ├── weiser_lock.py └── zemismart │ ├── ZML03EZ.py │ └── __init__.py ├── api ├── __init__.py ├── api.py ├── bridge.py ├── command.py ├── commands.py ├── devices.py ├── groups.py ├── network_map.py └── plugin.py ├── blacklist.py ├── bridge.py ├── configuration.py ├── devices ├── __init__.py ├── base_colortemp_light.py ├── boolean_sensor.py ├── custom_sensor.py ├── device.py ├── json_sensor.py ├── light │ ├── ct.py │ ├── dimmer.py │ ├── on_off.py │ ├── rgb.py │ └── rgbw.py ├── rgb_light.py ├── rgbw_light.py ├── sensor │ ├── __init__.py │ ├── barometer.py │ ├── co2.py │ ├── contact.py │ ├── current.py │ ├── door_contact.py │ ├── humidity.py │ ├── kwh.py │ ├── lux.py │ ├── motion.py │ ├── percentage.py │ ├── pressure.py │ ├── smoke.py │ ├── temperature.py │ ├── voltage.py │ └── water_leak.py ├── setpoint.py ├── switch │ ├── __init__.py │ ├── blind_percentages_switch.py │ ├── color_temp_dimmer_switch.py │ ├── dimmer_switch.py │ ├── level_switch.py │ ├── on_off_switch.py │ ├── push_on_button.py │ ├── selector_switch.py │ ├── siren_switch.py │ └── toggle_switch.py ├── temperature_humidity_barometer_sensor.py ├── temperature_humidity_sensor.py └── text_sensor.py ├── devices_manager.py ├── domoticz.py ├── feature_utils.py ├── features ├── __init__.py ├── cover.py ├── energy.py ├── light.py └── temp_hum_pressure.py ├── frontend ├── libs │ ├── ace_json_mode.js │ ├── ace_worker_json.js │ ├── leaflet.css │ ├── leaflet.js │ ├── viz.full.render.js │ └── viz.js ├── plugin_config.js ├── zigbee2mqtt.html ├── zigbee2mqtt.js ├── zigbee_devices.js └── zigbee_groups.js ├── groups_manager.py ├── mqtt.py ├── plugin.py └── zigbee_message.py /.github/ISSUE_TEMPLATE/new-device-feature-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/.github/ISSUE_TEMPLATE/new-device-feature-support.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/plugin-doesn-t-work-properly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/.github/ISSUE_TEMPLATE/plugin-doesn-t-work-properly.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORTED_DEVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/SUPPORTED_DEVICES.md -------------------------------------------------------------------------------- /adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapter.py -------------------------------------------------------------------------------- /adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/__init__.py -------------------------------------------------------------------------------- /adapters/adapter_with_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/adapter_with_battery.py -------------------------------------------------------------------------------- /adapters/base_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/base_adapter.py -------------------------------------------------------------------------------- /adapters/bitron/AV201032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/bitron/AV201032.py -------------------------------------------------------------------------------- /adapters/bitron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/bitron/__init__.py -------------------------------------------------------------------------------- /adapters/bitron/siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/bitron/siren.py -------------------------------------------------------------------------------- /adapters/dimmable_bulb_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/dimmable_bulb_adapter.py -------------------------------------------------------------------------------- /adapters/dimmable_ct_bulb_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/dimmable_ct_bulb_adapter.py -------------------------------------------------------------------------------- /adapters/diy/diyruzrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/diy/diyruzrt.py -------------------------------------------------------------------------------- /adapters/diy/ptvo_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/diy/ptvo_switch.py -------------------------------------------------------------------------------- /adapters/diy/zigup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/diy/zigup.py -------------------------------------------------------------------------------- /adapters/ecodim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ecodim/__init__.py -------------------------------------------------------------------------------- /adapters/ecodim/zigbee2buttonwallswitchblack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ecodim/zigbee2buttonwallswitchblack.py -------------------------------------------------------------------------------- /adapters/feibit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/feibit/__init__.py -------------------------------------------------------------------------------- /adapters/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapters/generic/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapters/generic/mixins/cct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/generic/mixins/cct.py -------------------------------------------------------------------------------- /adapters/generic/mixins/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/generic/mixins/rgb.py -------------------------------------------------------------------------------- /adapters/generic/siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/generic/siren.py -------------------------------------------------------------------------------- /adapters/generic/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/generic/thermostat.py -------------------------------------------------------------------------------- /adapters/gledopto/GLC0082ID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/gledopto/GLC0082ID.py -------------------------------------------------------------------------------- /adapters/gledopto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/gledopto/__init__.py -------------------------------------------------------------------------------- /adapters/heiman/HS1CAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/heiman/HS1CAE.py -------------------------------------------------------------------------------- /adapters/heiman/HS1RC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/heiman/HS1RC.py -------------------------------------------------------------------------------- /adapters/heiman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/heiman/__init__.py -------------------------------------------------------------------------------- /adapters/icasa/KPD14S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/icasa/KPD14S.py -------------------------------------------------------------------------------- /adapters/icasa/KPD18S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/icasa/KPD18S.py -------------------------------------------------------------------------------- /adapters/icasa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/icasa/__init__.py -------------------------------------------------------------------------------- /adapters/ikea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ikea/__init__.py -------------------------------------------------------------------------------- /adapters/ikea/symfonisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ikea/symfonisk.py -------------------------------------------------------------------------------- /adapters/ikea/tradfri_remote_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ikea/tradfri_remote_control.py -------------------------------------------------------------------------------- /adapters/ikea/tradfri_switch_on_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ikea/tradfri_switch_on_off.py -------------------------------------------------------------------------------- /adapters/ikea/tradfri_wireless_dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/ikea/tradfri_wireless_dimmer.py -------------------------------------------------------------------------------- /adapters/life_control/MCLH08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/life_control/MCLH08.py -------------------------------------------------------------------------------- /adapters/life_control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/life_control/__init__.py -------------------------------------------------------------------------------- /adapters/lumi/DJT11LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/DJT11LM.py -------------------------------------------------------------------------------- /adapters/lumi/JTYJ_GD_01LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/JTYJ_GD_01LM.py -------------------------------------------------------------------------------- /adapters/lumi/VOCKQJK11LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/VOCKQJK11LM.py -------------------------------------------------------------------------------- /adapters/lumi/WXCJKG11LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/WXCJKG11LM.py -------------------------------------------------------------------------------- /adapters/lumi/WXCJKG12LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/WXCJKG12LM.py -------------------------------------------------------------------------------- /adapters/lumi/WXCJKG13LM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/WXCJKG13LM.py -------------------------------------------------------------------------------- /adapters/lumi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/__init__.py -------------------------------------------------------------------------------- /adapters/lumi/aqara_opple_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/aqara_opple_switch.py -------------------------------------------------------------------------------- /adapters/lumi/sensor_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/sensor_cube.py -------------------------------------------------------------------------------- /adapters/lumi/smart_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/lumi/smart_lock.py -------------------------------------------------------------------------------- /adapters/meazon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapters/meazon/dinrail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/meazon/dinrail.py -------------------------------------------------------------------------------- /adapters/moes/BRT100TRV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/moes/BRT100TRV.py -------------------------------------------------------------------------------- /adapters/moes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/moes/__init__.py -------------------------------------------------------------------------------- /adapters/neo/NASAB02B0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/neo/NASAB02B0.py -------------------------------------------------------------------------------- /adapters/neo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/neo/__init__.py -------------------------------------------------------------------------------- /adapters/on_off_switch_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/on_off_switch_adapter.py -------------------------------------------------------------------------------- /adapters/osram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/osram/__init__.py -------------------------------------------------------------------------------- /adapters/osram/smart_mini_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/osram/smart_mini_switch.py -------------------------------------------------------------------------------- /adapters/oujiabao/CR701_YZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/oujiabao/CR701_YZ.py -------------------------------------------------------------------------------- /adapters/oujiabao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapters/philips/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/philips/__init__.py -------------------------------------------------------------------------------- /adapters/philips/hue_dimmer_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/philips/hue_dimmer_switch.py -------------------------------------------------------------------------------- /adapters/rgb_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/rgb_adapter.py -------------------------------------------------------------------------------- /adapters/rgbw_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/rgbw_adapter.py -------------------------------------------------------------------------------- /adapters/samsung/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/samsung/__init__.py -------------------------------------------------------------------------------- /adapters/samsung/sensor_arrival.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/samsung/sensor_arrival.py -------------------------------------------------------------------------------- /adapters/schneider_electric/WV704R0A0902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/schneider_electric/WV704R0A0902.py -------------------------------------------------------------------------------- /adapters/schneider_electric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/schneider_electric/__init__.py -------------------------------------------------------------------------------- /adapters/sinope/TH1124ZB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/sinope/TH1124ZB.py -------------------------------------------------------------------------------- /adapters/sinope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/sinope/__init__.py -------------------------------------------------------------------------------- /adapters/siterwell/GS361AH04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/siterwell/GS361AH04.py -------------------------------------------------------------------------------- /adapters/siterwell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapters/trust/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/trust/__init__.py -------------------------------------------------------------------------------- /adapters/trust/zyct202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/trust/zyct202.py -------------------------------------------------------------------------------- /adapters/tuya/TS0002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TS0002.py -------------------------------------------------------------------------------- /adapters/tuya/TS0012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TS0012.py -------------------------------------------------------------------------------- /adapters/tuya/TS0013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TS0013.py -------------------------------------------------------------------------------- /adapters/tuya/TS0015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TS0015.py -------------------------------------------------------------------------------- /adapters/tuya/TS0601.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TS0601.py -------------------------------------------------------------------------------- /adapters/tuya/TV02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/TV02.py -------------------------------------------------------------------------------- /adapters/tuya/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuya/__init__.py -------------------------------------------------------------------------------- /adapters/tuyatec/GDKES02TZXD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuyatec/GDKES02TZXD.py -------------------------------------------------------------------------------- /adapters/tuyatec/GDKES03TZXD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuyatec/GDKES03TZXD.py -------------------------------------------------------------------------------- /adapters/tuyatec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/tuyatec/__init__.py -------------------------------------------------------------------------------- /adapters/weiser_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/weiser_lock.py -------------------------------------------------------------------------------- /adapters/zemismart/ZML03EZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/zemismart/ZML03EZ.py -------------------------------------------------------------------------------- /adapters/zemismart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/adapters/zemismart/__init__.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | from api.api import API -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/api.py -------------------------------------------------------------------------------- /api/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/bridge.py -------------------------------------------------------------------------------- /api/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/command.py -------------------------------------------------------------------------------- /api/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/commands.py -------------------------------------------------------------------------------- /api/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/devices.py -------------------------------------------------------------------------------- /api/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/groups.py -------------------------------------------------------------------------------- /api/network_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/network_map.py -------------------------------------------------------------------------------- /api/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/api/plugin.py -------------------------------------------------------------------------------- /blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/blacklist.py -------------------------------------------------------------------------------- /bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/bridge.py -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/configuration.py -------------------------------------------------------------------------------- /devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/base_colortemp_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/base_colortemp_light.py -------------------------------------------------------------------------------- /devices/boolean_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/boolean_sensor.py -------------------------------------------------------------------------------- /devices/custom_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/custom_sensor.py -------------------------------------------------------------------------------- /devices/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/device.py -------------------------------------------------------------------------------- /devices/json_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/json_sensor.py -------------------------------------------------------------------------------- /devices/light/ct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/light/ct.py -------------------------------------------------------------------------------- /devices/light/dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/light/dimmer.py -------------------------------------------------------------------------------- /devices/light/on_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/light/on_off.py -------------------------------------------------------------------------------- /devices/light/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/light/rgb.py -------------------------------------------------------------------------------- /devices/light/rgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/light/rgbw.py -------------------------------------------------------------------------------- /devices/rgb_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/rgb_light.py -------------------------------------------------------------------------------- /devices/rgbw_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/rgbw_light.py -------------------------------------------------------------------------------- /devices/sensor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/sensor/barometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/barometer.py -------------------------------------------------------------------------------- /devices/sensor/co2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/co2.py -------------------------------------------------------------------------------- /devices/sensor/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/contact.py -------------------------------------------------------------------------------- /devices/sensor/current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/current.py -------------------------------------------------------------------------------- /devices/sensor/door_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/door_contact.py -------------------------------------------------------------------------------- /devices/sensor/humidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/humidity.py -------------------------------------------------------------------------------- /devices/sensor/kwh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/kwh.py -------------------------------------------------------------------------------- /devices/sensor/lux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/lux.py -------------------------------------------------------------------------------- /devices/sensor/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/motion.py -------------------------------------------------------------------------------- /devices/sensor/percentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/percentage.py -------------------------------------------------------------------------------- /devices/sensor/pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/pressure.py -------------------------------------------------------------------------------- /devices/sensor/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/smoke.py -------------------------------------------------------------------------------- /devices/sensor/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/temperature.py -------------------------------------------------------------------------------- /devices/sensor/voltage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/voltage.py -------------------------------------------------------------------------------- /devices/sensor/water_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/sensor/water_leak.py -------------------------------------------------------------------------------- /devices/setpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/setpoint.py -------------------------------------------------------------------------------- /devices/switch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/switch/blind_percentages_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/blind_percentages_switch.py -------------------------------------------------------------------------------- /devices/switch/color_temp_dimmer_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/color_temp_dimmer_switch.py -------------------------------------------------------------------------------- /devices/switch/dimmer_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/dimmer_switch.py -------------------------------------------------------------------------------- /devices/switch/level_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/level_switch.py -------------------------------------------------------------------------------- /devices/switch/on_off_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/on_off_switch.py -------------------------------------------------------------------------------- /devices/switch/push_on_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/push_on_button.py -------------------------------------------------------------------------------- /devices/switch/selector_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/selector_switch.py -------------------------------------------------------------------------------- /devices/switch/siren_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/siren_switch.py -------------------------------------------------------------------------------- /devices/switch/toggle_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/switch/toggle_switch.py -------------------------------------------------------------------------------- /devices/temperature_humidity_barometer_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/temperature_humidity_barometer_sensor.py -------------------------------------------------------------------------------- /devices/temperature_humidity_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/temperature_humidity_sensor.py -------------------------------------------------------------------------------- /devices/text_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices/text_sensor.py -------------------------------------------------------------------------------- /devices_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/devices_manager.py -------------------------------------------------------------------------------- /domoticz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/domoticz.py -------------------------------------------------------------------------------- /feature_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/feature_utils.py -------------------------------------------------------------------------------- /features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/features/cover.py -------------------------------------------------------------------------------- /features/energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/features/energy.py -------------------------------------------------------------------------------- /features/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/features/light.py -------------------------------------------------------------------------------- /features/temp_hum_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/features/temp_hum_pressure.py -------------------------------------------------------------------------------- /frontend/libs/ace_json_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/ace_json_mode.js -------------------------------------------------------------------------------- /frontend/libs/ace_worker_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/ace_worker_json.js -------------------------------------------------------------------------------- /frontend/libs/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/leaflet.css -------------------------------------------------------------------------------- /frontend/libs/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/leaflet.js -------------------------------------------------------------------------------- /frontend/libs/viz.full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/viz.full.render.js -------------------------------------------------------------------------------- /frontend/libs/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/libs/viz.js -------------------------------------------------------------------------------- /frontend/plugin_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/plugin_config.js -------------------------------------------------------------------------------- /frontend/zigbee2mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/zigbee2mqtt.html -------------------------------------------------------------------------------- /frontend/zigbee2mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/zigbee2mqtt.js -------------------------------------------------------------------------------- /frontend/zigbee_devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/zigbee_devices.js -------------------------------------------------------------------------------- /frontend/zigbee_groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/frontend/zigbee_groups.js -------------------------------------------------------------------------------- /groups_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/groups_manager.py -------------------------------------------------------------------------------- /mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/mqtt.py -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/plugin.py -------------------------------------------------------------------------------- /zigbee_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/HEAD/zigbee_message.py --------------------------------------------------------------------------------