Skip to content

Commit

Permalink
Set manufacturer_id_override to NO_ID for Tuya IR blaster (#3865)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJulianJES authored Feb 13, 2025
1 parent 6248323 commit 1c97fcf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions zhaquirks/tuya/ts1201.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ class ZosungIRControl(CustomCluster):
cluster_id = 0xE004
ep_attribute = "zosung_ircontrol"

# remove manufacturer id for cluster
manufacturer_id_override: t.uint16_t = foundation.ZCLHeader.NO_MANUFACTURER_ID

class AttributeDefs(BaseAttributeDefs):
"""Attribute definitions."""

Expand Down Expand Up @@ -160,6 +163,9 @@ class ZosungIRTransmit(CustomCluster):
cluster_id = 0xED00
ep_attribute = "zosung_irtransmit"

# remove manufacturer id for cluster
manufacturer_id_override: t.uint16_t = foundation.ZCLHeader.NO_MANUFACTURER_ID

current_position = 0
msg_length = 0
ir_msg = []
Expand Down

0 comments on commit 1c97fcf

Please sign in to comment.