├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── device_support_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── matchers │ ├── codespell.json │ ├── flake8.json │ ├── python.json │ └── ruff.json │ ├── publish-to-pypi.yml │ └── stale.yml ├── .gitignore ├── .markdownlint.json ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.default.json ├── Contributors.md ├── LICENSE.md ├── README.md ├── _config.yml ├── pyproject.toml ├── script ├── check_dirty ├── check_format └── setup ├── setup.py ├── tests ├── __init__.py ├── async_mock.py ├── common.py ├── conftest.py ├── test_bosch.py ├── test_candeo.py ├── test_ctrl_neutral1.py ├── test_danfoss.py ├── test_develco.py ├── test_gledopto.py ├── test_ikea.py ├── test_inovelli_blue.py ├── test_kof.py ├── test_konke.py ├── test_legrand.py ├── test_linkind.py ├── test_linxura.py ├── test_nimly.py ├── test_orvibo.py ├── test_paulmann.py ├── test_philips.py ├── test_quirks.py ├── test_quirks_v2.py ├── test_schneiderelectric.py ├── test_sinope.py ├── test_smarthjemmet.py ├── test_smartwings.py ├── test_thirdreality.py ├── test_tuya.py ├── test_tuya_air.py ├── test_tuya_builder.py ├── test_tuya_clusters.py ├── test_tuya_cover.py ├── test_tuya_dimmer.py ├── test_tuya_gas.py ├── test_tuya_mcu.py ├── test_tuya_motion.py ├── test_tuya_power.py ├── test_tuya_rain.py ├── test_tuya_rcbo.py ├── test_tuya_sensor.py ├── test_tuya_siren.py ├── test_tuya_smoke.py ├── test_tuya_spells.py ├── test_tuya_thermostat.py ├── test_tuya_trv.py ├── test_tuya_valve.py ├── test_xbee.py ├── test_xiaomi.py └── test_zunzunbee_slateswitch.py ├── tuya.md ├── uv.lock ├── xbee.md └── zhaquirks ├── __init__.py ├── adeo ├── __init__.py └── color_controller.py ├── aduro ├── __init__.py └── adurolightncc.py ├── aurora ├── __init__.py └── aurora_dimmer.py ├── bitron ├── __init__.py └── thermostat.py ├── bosch ├── __init__.py ├── isw_zdl1_wp11g.py ├── motion.py ├── rbsh_rth0_zb_eu.py ├── rbsh_trv0_zb_eu.py └── relay_rbsh-mms-zb-eu.py ├── candeo ├── __init__.py ├── rotary_dimmer_switches.py ├── sensors.py ├── smart_led_controllers.py └── wall_modules.py ├── centralite ├── __init__.py ├── cl_3130.py ├── cl_3157100.py ├── cl_3300S.py ├── cl_3305S.py ├── cl_3310S.py ├── cl_3321S.py ├── cl_3460L.py ├── ias.py ├── motion.py └── motionandtemp.py ├── const.py ├── custom ├── __init__.py └── telink.py ├── danfoss ├── __init__.py └── thermostat.py ├── develco ├── __init__.py ├── air_quality.py ├── emi_han.py ├── emi_led.py ├── emi_p1.py ├── heat_alarm.py ├── humidity.py ├── intelligent_keypad.py ├── io_module.py ├── motion.py ├── open_close.py ├── power_plug.py ├── smart_button.py ├── smart_siren.py ├── smoke_alarm.py └── water_leak.py ├── echostar ├── __init__.py └── bell.py ├── ecolink ├── __init__.py └── contact.py ├── edpwithus ├── __init__.py └── redy_plug.py ├── elko ├── __init__.py └── smart_super_thermostat.py ├── eurotronic ├── __init__.py └── spzb0001.py ├── feibit ├── __init__.py └── switch.py ├── gledopto ├── __init__.py ├── glc009.py ├── glc009p.py ├── gls007z.py ├── glsd_dimmer.py └── soposhgu10.py ├── heiman ├── __init__.py └── smoke.py ├── hivehome ├── __init__.py ├── mot003V0.py └── mot003V6.py ├── hzc ├── __init__.py ├── dimmerswitch.py └── doubledimmerswitch.py ├── icasa ├── __init__.py ├── iczb_kpd12.py ├── iczb_kpd14s.py └── iczb_kpd18s.py ├── ikea ├── __init__.py ├── blinds.py ├── cctlightzha.py ├── dimmer.py ├── fivebtnremote.py ├── fourbtnremote.py ├── motion.py ├── motionzha.py ├── opencloseremote.py ├── plug.py ├── plug_g2.py ├── shortcutbtn.py ├── somrigsmartbtn.py ├── starkvind.py ├── symfonisk.py ├── symfonisk2.py ├── twobtnremote.py ├── vallhorn.py └── vindstyrka.py ├── iluminize ├── __init__.py ├── cct.py └── dim.py ├── imagic ├── __init__.py ├── gs1117s.py └── im1116s.py ├── innr ├── __init__.py ├── innr_sp120_plug.py ├── innr_sp234_plug.py ├── innr_sp240_plug.py └── rs228t.py ├── inovelli ├── VZM30SN.py ├── VZM31SN.py ├── VZM32SN.py ├── VZM35SN.py ├── VZM36.py ├── __init__.py └── types.py ├── insta ├── __init__.py └── nexentro_pushbutton_interface.py ├── keenhome ├── __init__.py ├── sv02612mp13.py └── weather.py ├── kof ├── __init__.py └── kof_mr101z.py ├── konke ├── __init__.py ├── button.py ├── magnet.py ├── motion.py └── temp.py ├── lds ├── __init__.py └── cctswitch.py ├── ledvance ├── __init__.py ├── a19rgbw.py └── flexrgbw.py ├── legrand ├── __init__.py ├── cable_outlet.py ├── connected_outled.py ├── dimmer.py ├── micromodule.py ├── shutter.py ├── switch.py ├── wirelessshutter.py └── wirelessswitch.py ├── lidl ├── TS0501A.py ├── __init__.py ├── cct.py ├── rgbcct.py └── ts011f_plug.py ├── linkind ├── __init__.py ├── a001082.py └── motion.py ├── linxura ├── __init__.py └── button.py ├── lixee ├── __init__.py └── zlinky.py ├── lutron ├── __init__.py └── lzl4bwhl01remote.py ├── mli ├── __init__.py ├── tint.py └── tintE14rgbcct.py ├── netvox ├── __init__.py └── z308e3ed.py ├── nimly ├── __init__.py └── lock.py ├── nodon ├── __init__.py ├── pilot_wire.py ├── roller_shutter.py └── switch.py ├── nue ├── __init__.py └── auwz02000.py ├── orvibo ├── __init__.py ├── dimmer.py └── motion.py ├── osram ├── __init__.py ├── a19rgbw.py ├── cla60tw.py ├── flexrgbw.py ├── gardenpolesrgbw.py ├── lightifyx4.py ├── osramplug.py ├── smartplusac05347.py ├── switchmini.py └── tunablewhite.py ├── paulmann ├── __init__.py └── fourbtnremote.py ├── philio ├── __init__.py └── pst03a.py ├── philips ├── __init__.py ├── hue_light.py ├── motion.py ├── rdm002.py ├── rom001.py ├── rwl022.py ├── rwlfirstgen.py ├── soc001.py └── wall_switch.py ├── plaid ├── __init__.py └── soil.py ├── quirk_ids.py ├── salus ├── __init__.py └── sp600.py ├── samjin ├── __init__.py ├── button.py ├── multi.py └── multi2.py ├── schneiderelectric ├── __init__.py ├── dimmers.py ├── outlet.py ├── shutters.py ├── smoke.py └── thermostat.py ├── sengled ├── __init__.py └── e1e_g7f.py ├── sercomm ├── __init__.py ├── contact_sensor.py └── flood_sensor.py ├── siglis ├── __init__.py └── zigfred.py ├── sinope ├── __init__.py ├── light.py ├── sensor.py ├── switch.py └── thermostat.py ├── smarthjemmet ├── __init__.py └── quadzigsw.py ├── smartthings ├── __init__.py ├── moisturev4.py ├── motion.py ├── multi.py ├── multiv4.py ├── pgc313.py ├── pgc314.py └── tag_v4.py ├── smartwings ├── __init__.py └── wm25lz.py ├── sonoff ├── __init__.py ├── button.py ├── snzb02d.py ├── snzb02wd.py ├── snzb04p.py ├── snzb06p.py ├── swv.py ├── trvzb.py └── zbminir2.py ├── sourcingandcreation ├── __init__.py └── smart_button.py ├── sunricher ├── __init__.py └── button.py ├── terncy ├── __init__.py ├── cl001.py ├── pp01.py └── sd01.py ├── texasinstruments ├── __init__.py └── router.py ├── thirdreality ├── __init__.py ├── button.py ├── curtain_gen2.py ├── door_sensor_v2.py ├── garage_door_tilt_sensor.py ├── motion_sensor.py ├── night_light.py ├── plug.py ├── radar_sensor.py ├── switch.py ├── switch_v2.py ├── temperature_sensor.py ├── vibrate.py ├── water_leak_sensor.py └── watering_kit.py ├── trust ├── __init__.py └── zpir8000.py ├── tuya ├── __init__.py ├── builder │ └── __init__.py ├── mcu │ └── __init__.py ├── sm0202_motion.py ├── ts0001_switch.py ├── ts000f_switch.py ├── ts000x.py ├── ts001x.py ├── ts0021.py ├── ts0041.py ├── ts0042.py ├── ts0043.py ├── ts0044.py ├── ts0046.py ├── ts004f.py ├── ts011f_plug.py ├── ts011f_switch.py ├── ts0121_plug.py ├── ts0201.py ├── ts0210.py ├── ts0211.py ├── ts0501_fan_switch.py ├── ts0501b.py ├── ts0501bs.py ├── ts0601_cover.py ├── ts0601_dimmer.py ├── ts0601_din_power.py ├── ts0601_electric_heating.py ├── ts0601_garage.py ├── ts0601_haozee.py ├── ts0601_power.py ├── ts0601_rcbo.py ├── ts0601_switch.py ├── ts0601_trv.py ├── ts110e.py ├── ts1201.py ├── ts130f.py ├── tuya_co.py ├── tuya_contact.py ├── tuya_door.py ├── tuya_fingerbot.py ├── tuya_gas.py ├── tuya_illuminance.py ├── tuya_level_sensor.py ├── tuya_motion.py ├── tuya_rain.py ├── tuya_sensor.py ├── tuya_siren.py ├── tuya_smoke.py ├── tuya_thermostat.py ├── tuya_trv.py ├── tuya_valve.py └── ty0201.py ├── universalelectronics ├── __init__.py └── contact_sensor.py ├── visonic ├── __init__.py └── mct340.py ├── waxman ├── __init__.py └── leaksmart.py ├── xbee ├── __init__.py ├── types.py ├── xbee3_io.py └── xbee_io.py ├── xiaomi ├── __init__.py ├── aqara │ ├── __init__.py │ ├── ctrl_ln.py │ ├── ctrl_neutral.py │ ├── cube.py │ ├── cube_aqgl01.py │ ├── driver_curtain_e1.py │ ├── feeder_acn001.py │ ├── illumination.py │ ├── light_acn.py │ ├── light_aqcn2.py │ ├── magnet_ac01.py │ ├── magnet_acn001.py │ ├── magnet_agl02.py │ ├── magnet_aq2.py │ ├── motion_ac01.py │ ├── motion_ac02.py │ ├── motion_acn001.py │ ├── motion_agl02.py │ ├── motion_agl04.py │ ├── motion_agl1.py │ ├── motion_aq2.py │ ├── motion_aq2b.py │ ├── opple_remote.py │ ├── opple_switch.py │ ├── plug.py │ ├── plug_eu.py │ ├── plug_maus01.py │ ├── relay_c2acn01.py │ ├── remote_b186acn01.py │ ├── remote_b286acn01.py │ ├── remote_e1.py │ ├── remote_h1.py │ ├── roller_curtain_e1.py │ ├── sensor_ht_agl02.py │ ├── sensor_switch_aq3.py │ ├── smoke.py │ ├── switch_acn047.py │ ├── switch_agl011.py │ ├── switch_aq2.py │ ├── switch_h1_double.py │ ├── switch_h1_single.py │ ├── switch_t1.py │ ├── thermostat_agl001.py │ ├── tvoc.py │ ├── vibration_aq1.py │ ├── water_acn001.py │ ├── water_agl02.py │ ├── weather.py │ └── wleak_aq1.py ├── custom │ ├── __init__.py │ └── z03mmc.py └── mija │ ├── __init__.py │ ├── motion.py │ ├── sensor_ht.py │ ├── sensor_magnet.py │ ├── sensor_switch.py │ └── smoke.py ├── yale ├── __init__.py └── realliving.py ├── zbeacon ├── __init__.py └── doorsensor.py ├── zen ├── __init__.py └── thermostat.py ├── zhongxing ├── __init__.py └── motion.py └── zunzunbee ├── __init__.py └── slateswitch.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/device_support_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/ISSUE_TEMPLATE/device_support_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/matchers/codespell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/matchers/codespell.json -------------------------------------------------------------------------------- /.github/workflows/matchers/flake8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/matchers/flake8.json -------------------------------------------------------------------------------- /.github/workflows/matchers/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/matchers/python.json -------------------------------------------------------------------------------- /.github/workflows/matchers/ruff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/matchers/ruff.json -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/.vscode/settings.default.json -------------------------------------------------------------------------------- /Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/Contributors.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/_config.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /script/check_dirty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/script/check_dirty -------------------------------------------------------------------------------- /script/check_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/script/check_format -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/script/setup -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for zha quirks.""" 2 | -------------------------------------------------------------------------------- /tests/async_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/async_mock.py -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_bosch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_bosch.py -------------------------------------------------------------------------------- /tests/test_candeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_candeo.py -------------------------------------------------------------------------------- /tests/test_ctrl_neutral1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_ctrl_neutral1.py -------------------------------------------------------------------------------- /tests/test_danfoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_danfoss.py -------------------------------------------------------------------------------- /tests/test_develco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_develco.py -------------------------------------------------------------------------------- /tests/test_gledopto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_gledopto.py -------------------------------------------------------------------------------- /tests/test_ikea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_ikea.py -------------------------------------------------------------------------------- /tests/test_inovelli_blue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_inovelli_blue.py -------------------------------------------------------------------------------- /tests/test_kof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_kof.py -------------------------------------------------------------------------------- /tests/test_konke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_konke.py -------------------------------------------------------------------------------- /tests/test_legrand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_legrand.py -------------------------------------------------------------------------------- /tests/test_linkind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_linkind.py -------------------------------------------------------------------------------- /tests/test_linxura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_linxura.py -------------------------------------------------------------------------------- /tests/test_nimly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_nimly.py -------------------------------------------------------------------------------- /tests/test_orvibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_orvibo.py -------------------------------------------------------------------------------- /tests/test_paulmann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_paulmann.py -------------------------------------------------------------------------------- /tests/test_philips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_philips.py -------------------------------------------------------------------------------- /tests/test_quirks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_quirks.py -------------------------------------------------------------------------------- /tests/test_quirks_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_quirks_v2.py -------------------------------------------------------------------------------- /tests/test_schneiderelectric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_schneiderelectric.py -------------------------------------------------------------------------------- /tests/test_sinope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_sinope.py -------------------------------------------------------------------------------- /tests/test_smarthjemmet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_smarthjemmet.py -------------------------------------------------------------------------------- /tests/test_smartwings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_smartwings.py -------------------------------------------------------------------------------- /tests/test_thirdreality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_thirdreality.py -------------------------------------------------------------------------------- /tests/test_tuya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya.py -------------------------------------------------------------------------------- /tests/test_tuya_air.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_air.py -------------------------------------------------------------------------------- /tests/test_tuya_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_builder.py -------------------------------------------------------------------------------- /tests/test_tuya_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_clusters.py -------------------------------------------------------------------------------- /tests/test_tuya_cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_cover.py -------------------------------------------------------------------------------- /tests/test_tuya_dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_dimmer.py -------------------------------------------------------------------------------- /tests/test_tuya_gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_gas.py -------------------------------------------------------------------------------- /tests/test_tuya_mcu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_mcu.py -------------------------------------------------------------------------------- /tests/test_tuya_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_motion.py -------------------------------------------------------------------------------- /tests/test_tuya_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_power.py -------------------------------------------------------------------------------- /tests/test_tuya_rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_rain.py -------------------------------------------------------------------------------- /tests/test_tuya_rcbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_rcbo.py -------------------------------------------------------------------------------- /tests/test_tuya_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_sensor.py -------------------------------------------------------------------------------- /tests/test_tuya_siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_siren.py -------------------------------------------------------------------------------- /tests/test_tuya_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_smoke.py -------------------------------------------------------------------------------- /tests/test_tuya_spells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_spells.py -------------------------------------------------------------------------------- /tests/test_tuya_thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_thermostat.py -------------------------------------------------------------------------------- /tests/test_tuya_trv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_trv.py -------------------------------------------------------------------------------- /tests/test_tuya_valve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_tuya_valve.py -------------------------------------------------------------------------------- /tests/test_xbee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_xbee.py -------------------------------------------------------------------------------- /tests/test_xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_xiaomi.py -------------------------------------------------------------------------------- /tests/test_zunzunbee_slateswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tests/test_zunzunbee_slateswitch.py -------------------------------------------------------------------------------- /tuya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/tuya.md -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/uv.lock -------------------------------------------------------------------------------- /xbee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/xbee.md -------------------------------------------------------------------------------- /zhaquirks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/__init__.py -------------------------------------------------------------------------------- /zhaquirks/adeo/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for ADEO devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/adeo/color_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/adeo/color_controller.py -------------------------------------------------------------------------------- /zhaquirks/aduro/__init__.py: -------------------------------------------------------------------------------- 1 | """ADUROLIGHT module for custom device handlers.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/aduro/adurolightncc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/aduro/adurolightncc.py -------------------------------------------------------------------------------- /zhaquirks/aurora/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Aurora devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/aurora/aurora_dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/aurora/aurora_dimmer.py -------------------------------------------------------------------------------- /zhaquirks/bitron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bitron/__init__.py -------------------------------------------------------------------------------- /zhaquirks/bitron/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bitron/thermostat.py -------------------------------------------------------------------------------- /zhaquirks/bosch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/__init__.py -------------------------------------------------------------------------------- /zhaquirks/bosch/isw_zdl1_wp11g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/isw_zdl1_wp11g.py -------------------------------------------------------------------------------- /zhaquirks/bosch/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/motion.py -------------------------------------------------------------------------------- /zhaquirks/bosch/rbsh_rth0_zb_eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/rbsh_rth0_zb_eu.py -------------------------------------------------------------------------------- /zhaquirks/bosch/rbsh_trv0_zb_eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/rbsh_trv0_zb_eu.py -------------------------------------------------------------------------------- /zhaquirks/bosch/relay_rbsh-mms-zb-eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/bosch/relay_rbsh-mms-zb-eu.py -------------------------------------------------------------------------------- /zhaquirks/candeo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/candeo/__init__.py -------------------------------------------------------------------------------- /zhaquirks/candeo/rotary_dimmer_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/candeo/rotary_dimmer_switches.py -------------------------------------------------------------------------------- /zhaquirks/candeo/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/candeo/sensors.py -------------------------------------------------------------------------------- /zhaquirks/candeo/smart_led_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/candeo/smart_led_controllers.py -------------------------------------------------------------------------------- /zhaquirks/candeo/wall_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/candeo/wall_modules.py -------------------------------------------------------------------------------- /zhaquirks/centralite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/__init__.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3130.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3157100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3157100.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3300S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3300S.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3305S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3305S.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3310S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3310S.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3321S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3321S.py -------------------------------------------------------------------------------- /zhaquirks/centralite/cl_3460L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/cl_3460L.py -------------------------------------------------------------------------------- /zhaquirks/centralite/ias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/ias.py -------------------------------------------------------------------------------- /zhaquirks/centralite/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/motion.py -------------------------------------------------------------------------------- /zhaquirks/centralite/motionandtemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/centralite/motionandtemp.py -------------------------------------------------------------------------------- /zhaquirks/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/const.py -------------------------------------------------------------------------------- /zhaquirks/custom/__init__.py: -------------------------------------------------------------------------------- 1 | """Quirks for diy devices or with custom firmware.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/custom/telink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/custom/telink.py -------------------------------------------------------------------------------- /zhaquirks/danfoss/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Danfoss quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/danfoss/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/danfoss/thermostat.py -------------------------------------------------------------------------------- /zhaquirks/develco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/__init__.py -------------------------------------------------------------------------------- /zhaquirks/develco/air_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/air_quality.py -------------------------------------------------------------------------------- /zhaquirks/develco/emi_han.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/emi_han.py -------------------------------------------------------------------------------- /zhaquirks/develco/emi_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/emi_led.py -------------------------------------------------------------------------------- /zhaquirks/develco/emi_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/emi_p1.py -------------------------------------------------------------------------------- /zhaquirks/develco/heat_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/heat_alarm.py -------------------------------------------------------------------------------- /zhaquirks/develco/humidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/humidity.py -------------------------------------------------------------------------------- /zhaquirks/develco/intelligent_keypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/intelligent_keypad.py -------------------------------------------------------------------------------- /zhaquirks/develco/io_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/io_module.py -------------------------------------------------------------------------------- /zhaquirks/develco/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/motion.py -------------------------------------------------------------------------------- /zhaquirks/develco/open_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/open_close.py -------------------------------------------------------------------------------- /zhaquirks/develco/power_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/power_plug.py -------------------------------------------------------------------------------- /zhaquirks/develco/smart_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/smart_button.py -------------------------------------------------------------------------------- /zhaquirks/develco/smart_siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/smart_siren.py -------------------------------------------------------------------------------- /zhaquirks/develco/smoke_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/smoke_alarm.py -------------------------------------------------------------------------------- /zhaquirks/develco/water_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/develco/water_leak.py -------------------------------------------------------------------------------- /zhaquirks/echostar/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Echostar quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/echostar/bell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/echostar/bell.py -------------------------------------------------------------------------------- /zhaquirks/ecolink/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Ecolink quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/ecolink/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ecolink/contact.py -------------------------------------------------------------------------------- /zhaquirks/edpwithus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/edpwithus/__init__.py -------------------------------------------------------------------------------- /zhaquirks/edpwithus/redy_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/edpwithus/redy_plug.py -------------------------------------------------------------------------------- /zhaquirks/elko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/elko/__init__.py -------------------------------------------------------------------------------- /zhaquirks/elko/smart_super_thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/elko/smart_super_thermostat.py -------------------------------------------------------------------------------- /zhaquirks/eurotronic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/eurotronic/__init__.py -------------------------------------------------------------------------------- /zhaquirks/eurotronic/spzb0001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/eurotronic/spzb0001.py -------------------------------------------------------------------------------- /zhaquirks/feibit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/feibit/__init__.py -------------------------------------------------------------------------------- /zhaquirks/feibit/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/feibit/switch.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/__init__.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/glc009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/glc009.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/glc009p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/glc009p.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/gls007z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/gls007z.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/glsd_dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/glsd_dimmer.py -------------------------------------------------------------------------------- /zhaquirks/gledopto/soposhgu10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/gledopto/soposhgu10.py -------------------------------------------------------------------------------- /zhaquirks/heiman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/heiman/__init__.py -------------------------------------------------------------------------------- /zhaquirks/heiman/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/heiman/smoke.py -------------------------------------------------------------------------------- /zhaquirks/hivehome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/hivehome/__init__.py -------------------------------------------------------------------------------- /zhaquirks/hivehome/mot003V0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/hivehome/mot003V0.py -------------------------------------------------------------------------------- /zhaquirks/hivehome/mot003V6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/hivehome/mot003V6.py -------------------------------------------------------------------------------- /zhaquirks/hzc/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for HZC quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/hzc/dimmerswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/hzc/dimmerswitch.py -------------------------------------------------------------------------------- /zhaquirks/hzc/doubledimmerswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/hzc/doubledimmerswitch.py -------------------------------------------------------------------------------- /zhaquirks/icasa/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for icasa devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/icasa/iczb_kpd12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/icasa/iczb_kpd12.py -------------------------------------------------------------------------------- /zhaquirks/icasa/iczb_kpd14s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/icasa/iczb_kpd14s.py -------------------------------------------------------------------------------- /zhaquirks/icasa/iczb_kpd18s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/icasa/iczb_kpd18s.py -------------------------------------------------------------------------------- /zhaquirks/ikea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/__init__.py -------------------------------------------------------------------------------- /zhaquirks/ikea/blinds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/blinds.py -------------------------------------------------------------------------------- /zhaquirks/ikea/cctlightzha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/cctlightzha.py -------------------------------------------------------------------------------- /zhaquirks/ikea/dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/dimmer.py -------------------------------------------------------------------------------- /zhaquirks/ikea/fivebtnremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/fivebtnremote.py -------------------------------------------------------------------------------- /zhaquirks/ikea/fourbtnremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/fourbtnremote.py -------------------------------------------------------------------------------- /zhaquirks/ikea/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/motion.py -------------------------------------------------------------------------------- /zhaquirks/ikea/motionzha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/motionzha.py -------------------------------------------------------------------------------- /zhaquirks/ikea/opencloseremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/opencloseremote.py -------------------------------------------------------------------------------- /zhaquirks/ikea/plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/plug.py -------------------------------------------------------------------------------- /zhaquirks/ikea/plug_g2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/plug_g2.py -------------------------------------------------------------------------------- /zhaquirks/ikea/shortcutbtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/shortcutbtn.py -------------------------------------------------------------------------------- /zhaquirks/ikea/somrigsmartbtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/somrigsmartbtn.py -------------------------------------------------------------------------------- /zhaquirks/ikea/starkvind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/starkvind.py -------------------------------------------------------------------------------- /zhaquirks/ikea/symfonisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/symfonisk.py -------------------------------------------------------------------------------- /zhaquirks/ikea/symfonisk2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/symfonisk2.py -------------------------------------------------------------------------------- /zhaquirks/ikea/twobtnremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/twobtnremote.py -------------------------------------------------------------------------------- /zhaquirks/ikea/vallhorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/vallhorn.py -------------------------------------------------------------------------------- /zhaquirks/ikea/vindstyrka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ikea/vindstyrka.py -------------------------------------------------------------------------------- /zhaquirks/iluminize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/iluminize/__init__.py -------------------------------------------------------------------------------- /zhaquirks/iluminize/cct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/iluminize/cct.py -------------------------------------------------------------------------------- /zhaquirks/iluminize/dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/iluminize/dim.py -------------------------------------------------------------------------------- /zhaquirks/imagic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/imagic/__init__.py -------------------------------------------------------------------------------- /zhaquirks/imagic/gs1117s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/imagic/gs1117s.py -------------------------------------------------------------------------------- /zhaquirks/imagic/im1116s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/imagic/im1116s.py -------------------------------------------------------------------------------- /zhaquirks/innr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/innr/__init__.py -------------------------------------------------------------------------------- /zhaquirks/innr/innr_sp120_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/innr/innr_sp120_plug.py -------------------------------------------------------------------------------- /zhaquirks/innr/innr_sp234_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/innr/innr_sp234_plug.py -------------------------------------------------------------------------------- /zhaquirks/innr/innr_sp240_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/innr/innr_sp240_plug.py -------------------------------------------------------------------------------- /zhaquirks/innr/rs228t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/innr/rs228t.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/VZM30SN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/VZM30SN.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/VZM31SN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/VZM31SN.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/VZM32SN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/VZM32SN.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/VZM35SN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/VZM35SN.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/VZM36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/VZM36.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/__init__.py -------------------------------------------------------------------------------- /zhaquirks/inovelli/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/inovelli/types.py -------------------------------------------------------------------------------- /zhaquirks/insta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/insta/__init__.py -------------------------------------------------------------------------------- /zhaquirks/insta/nexentro_pushbutton_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/insta/nexentro_pushbutton_interface.py -------------------------------------------------------------------------------- /zhaquirks/keenhome/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for keen home vents and sensors.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/keenhome/sv02612mp13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/keenhome/sv02612mp13.py -------------------------------------------------------------------------------- /zhaquirks/keenhome/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/keenhome/weather.py -------------------------------------------------------------------------------- /zhaquirks/kof/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for King of Fans devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/kof/kof_mr101z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/kof/kof_mr101z.py -------------------------------------------------------------------------------- /zhaquirks/konke/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/konke/__init__.py -------------------------------------------------------------------------------- /zhaquirks/konke/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/konke/button.py -------------------------------------------------------------------------------- /zhaquirks/konke/magnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/konke/magnet.py -------------------------------------------------------------------------------- /zhaquirks/konke/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/konke/motion.py -------------------------------------------------------------------------------- /zhaquirks/konke/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/konke/temp.py -------------------------------------------------------------------------------- /zhaquirks/lds/__init__.py: -------------------------------------------------------------------------------- 1 | """LDS module.""" 2 | 3 | MANUFACTURER = "LDS" 4 | -------------------------------------------------------------------------------- /zhaquirks/lds/cctswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lds/cctswitch.py -------------------------------------------------------------------------------- /zhaquirks/ledvance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ledvance/__init__.py -------------------------------------------------------------------------------- /zhaquirks/ledvance/a19rgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ledvance/a19rgbw.py -------------------------------------------------------------------------------- /zhaquirks/ledvance/flexrgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/ledvance/flexrgbw.py -------------------------------------------------------------------------------- /zhaquirks/legrand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/__init__.py -------------------------------------------------------------------------------- /zhaquirks/legrand/cable_outlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/cable_outlet.py -------------------------------------------------------------------------------- /zhaquirks/legrand/connected_outled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/connected_outled.py -------------------------------------------------------------------------------- /zhaquirks/legrand/dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/dimmer.py -------------------------------------------------------------------------------- /zhaquirks/legrand/micromodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/micromodule.py -------------------------------------------------------------------------------- /zhaquirks/legrand/shutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/shutter.py -------------------------------------------------------------------------------- /zhaquirks/legrand/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/switch.py -------------------------------------------------------------------------------- /zhaquirks/legrand/wirelessshutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/wirelessshutter.py -------------------------------------------------------------------------------- /zhaquirks/legrand/wirelessswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/legrand/wirelessswitch.py -------------------------------------------------------------------------------- /zhaquirks/lidl/TS0501A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lidl/TS0501A.py -------------------------------------------------------------------------------- /zhaquirks/lidl/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for LIDL devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/lidl/cct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lidl/cct.py -------------------------------------------------------------------------------- /zhaquirks/lidl/rgbcct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lidl/rgbcct.py -------------------------------------------------------------------------------- /zhaquirks/lidl/ts011f_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lidl/ts011f_plug.py -------------------------------------------------------------------------------- /zhaquirks/linkind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/linkind/__init__.py -------------------------------------------------------------------------------- /zhaquirks/linkind/a001082.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/linkind/a001082.py -------------------------------------------------------------------------------- /zhaquirks/linkind/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/linkind/motion.py -------------------------------------------------------------------------------- /zhaquirks/linxura/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/linxura/__init__.py -------------------------------------------------------------------------------- /zhaquirks/linxura/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/linxura/button.py -------------------------------------------------------------------------------- /zhaquirks/lixee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lixee/__init__.py -------------------------------------------------------------------------------- /zhaquirks/lixee/zlinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lixee/zlinky.py -------------------------------------------------------------------------------- /zhaquirks/lutron/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Lutron devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/lutron/lzl4bwhl01remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/lutron/lzl4bwhl01remote.py -------------------------------------------------------------------------------- /zhaquirks/mli/__init__.py: -------------------------------------------------------------------------------- 1 | """Mueller Licht International.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/mli/tint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/mli/tint.py -------------------------------------------------------------------------------- /zhaquirks/mli/tintE14rgbcct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/mli/tintE14rgbcct.py -------------------------------------------------------------------------------- /zhaquirks/netvox/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Netvox quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/netvox/z308e3ed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/netvox/z308e3ed.py -------------------------------------------------------------------------------- /zhaquirks/nimly/__init__.py: -------------------------------------------------------------------------------- 1 | """Nimly module.""" 2 | 3 | NIMLY = "Onesti Products AS" 4 | -------------------------------------------------------------------------------- /zhaquirks/nimly/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/nimly/lock.py -------------------------------------------------------------------------------- /zhaquirks/nodon/__init__.py: -------------------------------------------------------------------------------- 1 | """NODON module for custom device handlers.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/nodon/pilot_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/nodon/pilot_wire.py -------------------------------------------------------------------------------- /zhaquirks/nodon/roller_shutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/nodon/roller_shutter.py -------------------------------------------------------------------------------- /zhaquirks/nodon/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/nodon/switch.py -------------------------------------------------------------------------------- /zhaquirks/nue/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Nue quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/nue/auwz02000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/nue/auwz02000.py -------------------------------------------------------------------------------- /zhaquirks/orvibo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/orvibo/__init__.py -------------------------------------------------------------------------------- /zhaquirks/orvibo/dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/orvibo/dimmer.py -------------------------------------------------------------------------------- /zhaquirks/orvibo/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/orvibo/motion.py -------------------------------------------------------------------------------- /zhaquirks/osram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/__init__.py -------------------------------------------------------------------------------- /zhaquirks/osram/a19rgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/a19rgbw.py -------------------------------------------------------------------------------- /zhaquirks/osram/cla60tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/cla60tw.py -------------------------------------------------------------------------------- /zhaquirks/osram/flexrgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/flexrgbw.py -------------------------------------------------------------------------------- /zhaquirks/osram/gardenpolesrgbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/gardenpolesrgbw.py -------------------------------------------------------------------------------- /zhaquirks/osram/lightifyx4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/lightifyx4.py -------------------------------------------------------------------------------- /zhaquirks/osram/osramplug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/osramplug.py -------------------------------------------------------------------------------- /zhaquirks/osram/smartplusac05347.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/smartplusac05347.py -------------------------------------------------------------------------------- /zhaquirks/osram/switchmini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/switchmini.py -------------------------------------------------------------------------------- /zhaquirks/osram/tunablewhite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/osram/tunablewhite.py -------------------------------------------------------------------------------- /zhaquirks/paulmann/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/paulmann/__init__.py -------------------------------------------------------------------------------- /zhaquirks/paulmann/fourbtnremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/paulmann/fourbtnremote.py -------------------------------------------------------------------------------- /zhaquirks/philio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philio/__init__.py -------------------------------------------------------------------------------- /zhaquirks/philio/pst03a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philio/pst03a.py -------------------------------------------------------------------------------- /zhaquirks/philips/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/__init__.py -------------------------------------------------------------------------------- /zhaquirks/philips/hue_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/hue_light.py -------------------------------------------------------------------------------- /zhaquirks/philips/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/motion.py -------------------------------------------------------------------------------- /zhaquirks/philips/rdm002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/rdm002.py -------------------------------------------------------------------------------- /zhaquirks/philips/rom001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/rom001.py -------------------------------------------------------------------------------- /zhaquirks/philips/rwl022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/rwl022.py -------------------------------------------------------------------------------- /zhaquirks/philips/rwlfirstgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/rwlfirstgen.py -------------------------------------------------------------------------------- /zhaquirks/philips/soc001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/soc001.py -------------------------------------------------------------------------------- /zhaquirks/philips/wall_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/philips/wall_switch.py -------------------------------------------------------------------------------- /zhaquirks/plaid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/plaid/__init__.py -------------------------------------------------------------------------------- /zhaquirks/plaid/soil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/plaid/soil.py -------------------------------------------------------------------------------- /zhaquirks/quirk_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/quirk_ids.py -------------------------------------------------------------------------------- /zhaquirks/salus/__init__.py: -------------------------------------------------------------------------------- 1 | """Salus quirks elements.""" 2 | 3 | COMPUTIME = "Computime" 4 | -------------------------------------------------------------------------------- /zhaquirks/salus/sp600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/salus/sp600.py -------------------------------------------------------------------------------- /zhaquirks/samjin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/samjin/__init__.py -------------------------------------------------------------------------------- /zhaquirks/samjin/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/samjin/button.py -------------------------------------------------------------------------------- /zhaquirks/samjin/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/samjin/multi.py -------------------------------------------------------------------------------- /zhaquirks/samjin/multi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/samjin/multi2.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/__init__.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/dimmers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/dimmers.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/outlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/outlet.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/shutters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/shutters.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/smoke.py -------------------------------------------------------------------------------- /zhaquirks/schneiderelectric/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/schneiderelectric/thermostat.py -------------------------------------------------------------------------------- /zhaquirks/sengled/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Sengled quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/sengled/e1e_g7f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sengled/e1e_g7f.py -------------------------------------------------------------------------------- /zhaquirks/sercomm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sercomm/__init__.py -------------------------------------------------------------------------------- /zhaquirks/sercomm/contact_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sercomm/contact_sensor.py -------------------------------------------------------------------------------- /zhaquirks/sercomm/flood_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sercomm/flood_sensor.py -------------------------------------------------------------------------------- /zhaquirks/siglis/__init__.py: -------------------------------------------------------------------------------- 1 | """Siglis device handlers.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/siglis/zigfred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/siglis/zigfred.py -------------------------------------------------------------------------------- /zhaquirks/sinope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sinope/__init__.py -------------------------------------------------------------------------------- /zhaquirks/sinope/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sinope/light.py -------------------------------------------------------------------------------- /zhaquirks/sinope/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sinope/sensor.py -------------------------------------------------------------------------------- /zhaquirks/sinope/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sinope/switch.py -------------------------------------------------------------------------------- /zhaquirks/sinope/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sinope/thermostat.py -------------------------------------------------------------------------------- /zhaquirks/smarthjemmet/__init__.py: -------------------------------------------------------------------------------- 1 | """smarthjemmet.dk devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/smarthjemmet/quadzigsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smarthjemmet/quadzigsw.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/__init__.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/moisturev4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/moisturev4.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/motion.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/multi.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/multiv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/multiv4.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/pgc313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/pgc313.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/pgc314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/pgc314.py -------------------------------------------------------------------------------- /zhaquirks/smartthings/tag_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartthings/tag_v4.py -------------------------------------------------------------------------------- /zhaquirks/smartwings/__init__.py: -------------------------------------------------------------------------------- 1 | """SmartWings devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/smartwings/wm25lz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/smartwings/wm25lz.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/__init__.py: -------------------------------------------------------------------------------- 1 | """Quirks for Sonoff devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/sonoff/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/button.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/snzb02d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/snzb02d.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/snzb02wd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/snzb02wd.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/snzb04p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/snzb04p.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/snzb06p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/snzb06p.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/swv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/swv.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/trvzb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/trvzb.py -------------------------------------------------------------------------------- /zhaquirks/sonoff/zbminir2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sonoff/zbminir2.py -------------------------------------------------------------------------------- /zhaquirks/sourcingandcreation/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Sourcing & Creation devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/sourcingandcreation/smart_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sourcingandcreation/smart_button.py -------------------------------------------------------------------------------- /zhaquirks/sunricher/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Sunricher devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/sunricher/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/sunricher/button.py -------------------------------------------------------------------------------- /zhaquirks/terncy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/terncy/__init__.py -------------------------------------------------------------------------------- /zhaquirks/terncy/cl001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/terncy/cl001.py -------------------------------------------------------------------------------- /zhaquirks/terncy/pp01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/terncy/pp01.py -------------------------------------------------------------------------------- /zhaquirks/terncy/sd01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/terncy/sd01.py -------------------------------------------------------------------------------- /zhaquirks/texasinstruments/__init__.py: -------------------------------------------------------------------------------- 1 | """Texas Instruments devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/texasinstruments/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/texasinstruments/router.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/__init__.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/button.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/curtain_gen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/curtain_gen2.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/door_sensor_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/door_sensor_v2.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/garage_door_tilt_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/garage_door_tilt_sensor.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/motion_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/motion_sensor.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/night_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/night_light.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/plug.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/radar_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/radar_sensor.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/switch.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/switch_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/switch_v2.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/temperature_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/temperature_sensor.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/vibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/vibrate.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/water_leak_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/water_leak_sensor.py -------------------------------------------------------------------------------- /zhaquirks/thirdreality/watering_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/thirdreality/watering_kit.py -------------------------------------------------------------------------------- /zhaquirks/trust/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/trust/__init__.py -------------------------------------------------------------------------------- /zhaquirks/trust/zpir8000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/trust/zpir8000.py -------------------------------------------------------------------------------- /zhaquirks/tuya/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/__init__.py -------------------------------------------------------------------------------- /zhaquirks/tuya/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/builder/__init__.py -------------------------------------------------------------------------------- /zhaquirks/tuya/mcu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/mcu/__init__.py -------------------------------------------------------------------------------- /zhaquirks/tuya/sm0202_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/sm0202_motion.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0001_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0001_switch.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts000f_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts000f_switch.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts000x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts000x.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts001x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts001x.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0021.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0041.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0042.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0043.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0044.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0046.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0046.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts004f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts004f.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts011f_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts011f_plug.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts011f_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts011f_switch.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0121_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0121_plug.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0201.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0210.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0211.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0501_fan_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0501_fan_switch.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0501b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0501b.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0501bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0501bs.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_cover.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_dimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_dimmer.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_din_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_din_power.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_electric_heating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_electric_heating.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_garage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_garage.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_haozee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_haozee.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_power.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_rcbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_rcbo.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_switch.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts0601_trv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts0601_trv.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts110e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts110e.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts1201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts1201.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ts130f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ts130f.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_co.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_co.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_contact.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_door.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_door.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_fingerbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_fingerbot.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_gas.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_illuminance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_illuminance.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_level_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_level_sensor.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_motion.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_rain.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_sensor.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_siren.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_smoke.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_thermostat.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_trv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_trv.py -------------------------------------------------------------------------------- /zhaquirks/tuya/tuya_valve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/tuya_valve.py -------------------------------------------------------------------------------- /zhaquirks/tuya/ty0201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/tuya/ty0201.py -------------------------------------------------------------------------------- /zhaquirks/universalelectronics/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Universal Electronics devices.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/universalelectronics/contact_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/universalelectronics/contact_sensor.py -------------------------------------------------------------------------------- /zhaquirks/visonic/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Visonic quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/visonic/mct340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/visonic/mct340.py -------------------------------------------------------------------------------- /zhaquirks/waxman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/waxman/__init__.py -------------------------------------------------------------------------------- /zhaquirks/waxman/leaksmart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/waxman/leaksmart.py -------------------------------------------------------------------------------- /zhaquirks/xbee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xbee/__init__.py -------------------------------------------------------------------------------- /zhaquirks/xbee/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xbee/types.py -------------------------------------------------------------------------------- /zhaquirks/xbee/xbee3_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xbee/xbee3_io.py -------------------------------------------------------------------------------- /zhaquirks/xbee/xbee_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xbee/xbee_io.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/__init__.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Xiaomi Aqara quirks implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/ctrl_ln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/ctrl_ln.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/ctrl_neutral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/ctrl_neutral.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/cube.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/cube_aqgl01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/cube_aqgl01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/driver_curtain_e1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/driver_curtain_e1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/feeder_acn001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/feeder_acn001.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/illumination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/illumination.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/light_acn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/light_acn.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/light_aqcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/light_aqcn2.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/magnet_ac01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/magnet_ac01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/magnet_acn001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/magnet_acn001.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/magnet_agl02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/magnet_agl02.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/magnet_aq2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/magnet_aq2.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_ac01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_ac01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_ac02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_ac02.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_acn001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_acn001.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_agl02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_agl02.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_agl04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_agl04.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_agl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_agl1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_aq2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_aq2.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/motion_aq2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/motion_aq2b.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/opple_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/opple_remote.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/opple_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/opple_switch.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/plug.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/plug_eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/plug_eu.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/plug_maus01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/plug_maus01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/relay_c2acn01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/relay_c2acn01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/remote_b186acn01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/remote_b186acn01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/remote_b286acn01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/remote_b286acn01.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/remote_e1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/remote_e1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/remote_h1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/remote_h1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/roller_curtain_e1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/roller_curtain_e1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/sensor_ht_agl02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/sensor_ht_agl02.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/sensor_switch_aq3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/sensor_switch_aq3.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/smoke.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_acn047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_acn047.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_agl011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_agl011.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_aq2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_aq2.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_h1_double.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_h1_double.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_h1_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_h1_single.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/switch_t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/switch_t1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/thermostat_agl001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/thermostat_agl001.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/tvoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/tvoc.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/vibration_aq1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/vibration_aq1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/water_acn001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/water_acn001.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/water_agl02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/water_agl02.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/weather.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/aqara/wleak_aq1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/aqara/wleak_aq1.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/custom/__init__.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/custom/z03mmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/custom/z03mmc.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for Xiaomi Mija implementations.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/mija/motion.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/sensor_ht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/mija/sensor_ht.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/sensor_magnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/mija/sensor_magnet.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/sensor_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/mija/sensor_switch.py -------------------------------------------------------------------------------- /zhaquirks/xiaomi/mija/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/xiaomi/mija/smoke.py -------------------------------------------------------------------------------- /zhaquirks/yale/__init__.py: -------------------------------------------------------------------------------- 1 | """Yale module for custom device handlers.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/yale/realliving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/yale/realliving.py -------------------------------------------------------------------------------- /zhaquirks/zbeacon/__init__.py: -------------------------------------------------------------------------------- 1 | """zbeacon module.""" 2 | -------------------------------------------------------------------------------- /zhaquirks/zbeacon/doorsensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zbeacon/doorsensor.py -------------------------------------------------------------------------------- /zhaquirks/zen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zen/__init__.py -------------------------------------------------------------------------------- /zhaquirks/zen/thermostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zen/thermostat.py -------------------------------------------------------------------------------- /zhaquirks/zhongxing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zhongxing/__init__.py -------------------------------------------------------------------------------- /zhaquirks/zhongxing/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zhongxing/motion.py -------------------------------------------------------------------------------- /zhaquirks/zunzunbee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zunzunbee/__init__.py -------------------------------------------------------------------------------- /zhaquirks/zunzunbee/slateswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigpy/zha-device-handlers/HEAD/zhaquirks/zunzunbee/slateswitch.py --------------------------------------------------------------------------------