Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya committed Mar 11, 2024
1 parent 708f86b commit 37ef827
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zhaquirks/legrand/cable_outlet.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ class LegrandCableOutletCluster(CustomCluster):
ep_attribute = "cable_outlet_cluster"

class AttributeDefs(BaseAttributeDefs):
device_mode = ZCLAttributeDef(
heat_mode = ZCLAttributeDef(
id=HEAT_MODE_ATTR,
type=HeatMode,
is_manufacturer_specific=True,
)

class ServerCommandDefs(BaseCommandDefs):
set_heat_mode = ZCLCommandDef(
id=0x00,
id=HEAT_MODE_ATTR,
schema={"mode": HeatMode},
direction=Direction.Client_to_Server,
is_manufacturer_specific=True,
Expand Down

0 comments on commit 37ef827

Please sign in to comment.