We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please add relay status and switch type setting for _TZ3000_dlhhrhs8
switch (boolean) "1": true/false countdown (integer/seconds) "7": 300, relay status (string) "14": "off" or "0"/"on" or "1"/"memory" or "2" inching (string) "19": "AAAA", switch type setting (string) "47": "flip"/"sync"/"button"
[Paste/upload your media here]
[Paste the device signature here]
tuya_local-diag.json tuya-integration-diag.json zha-diag.json
[Paste the diagnostic information here]
[Paste the logs here]
from zigpy.profiles import zgp, zha from zigpy.zcl.clusters.general import ( Basic, GreenPowerProxy, Groups, Identify, OnOff, Ota, Scenes, Time, ) from zhaquirks.const import ( DEVICE_TYPE, ENDPOINTS, INPUT_CLUSTERS, MODEL, OUTPUT_CLUSTERS, PROFILE_ID, ) from zhaquirks.quirk_ids import TUYA_PLUG_ONOFF from zhaquirks.tuya import ( EnchantedDevice, TuyaZBE000Cluster, TuyaZBElectricalMeasurement, TuyaZBExternalSwitchTypeCluster, TuyaZBMeteringCluster, TuyaZBOnOffAttributeCluster, ) class Switch_1G_GPP_TS000F(EnchantedDevice): quirk_id = TUYA_PLUG_ONOFF signature = { MODEL: "TS000F", ENDPOINTS: { # <SimpleDescriptor endpoint=1 profile=260 device_type=256 # device_version=1 # input_clusters=[0, 4, 5, 6, 57344, 57345] # output_clusters=[10, 25]> 1: { PROFILE_ID: zha.PROFILE_ID, DEVICE_TYPE: zha.DeviceType.ON_OFF_LIGHT, INPUT_CLUSTERS: [ Basic.cluster_id, Groups.cluster_id, Scenes.cluster_id, OnOff.cluster_id, TuyaZBE000Cluster.cluster_id, TuyaZBExternalSwitchTypeCluster.cluster_id, ], OUTPUT_CLUSTERS: [Time.cluster_id, Ota.cluster_id], }, # <SimpleDescriptor endpoint=242 profile=41440 device_type=97 # device_version=1 # input_clusters=[] # output_clusters=[33]> 242: { PROFILE_ID: zgp.PROFILE_ID, DEVICE_TYPE: zgp.DeviceType.PROXY_BASIC, INPUT_CLUSTERS: [], OUTPUT_CLUSTERS: [GreenPowerProxy.cluster_id], }, }, } replacement = { ENDPOINTS: { 1: { PROFILE_ID: zha.PROFILE_ID, DEVICE_TYPE: zha.DeviceType.ON_OFF_LIGHT, INPUT_CLUSTERS: [ Basic.cluster_id, Groups.cluster_id, Scenes.cluster_id, TuyaZBOnOffAttributeCluster, TuyaZBE000Cluster, TuyaZBExternalSwitchTypeCluster, ], OUTPUT_CLUSTERS: [Time.cluster_id, Ota.cluster_id], }, }, }
No response
The text was updated successfully, but these errors were encountered:
My HA just notified me that the TS000F Firmware became unknown
Sorry, something went wrong.
No branches or pull requests
Problem description
please add relay status and switch type setting for _TZ3000_dlhhrhs8
Solution description
switch (boolean)
"1": true/false
countdown (integer/seconds)
"7": 300,
relay status (string)
"14": "off" or "0"/"on" or "1"/"memory" or "2"
inching (string)
"19": "AAAA",
switch type setting (string)
"47": "flip"/"sync"/"button"
Screenshots/Video
Screenshots/Video
[Paste/upload your media here]
Device signature
Device signature
[Paste the device signature here]
Diagnostic information
tuya_local-diag.json
tuya-integration-diag.json
zha-diag.json
Diagnostic information
[Paste the diagnostic information here]
Logs
Logs
Custom quirk
Custom quirk
Additional information
No response
The text was updated successfully, but these errors were encountered: