Skip to content

Commit

Permalink
fix: Fix led_indicator reversed for Aqara ZNCWWSQ01LM Koenkk/zigbee…
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Mar 4, 2024
1 parent 33e902e commit 3a5c6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/lumi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3035,7 +3035,7 @@ export const toZigbee = {
break;
}
case 'led_indicator':
await sendAttr(0x04170055, getFromLookup(value, {'OFF': 0, 'ON': 1}), 1);
await sendAttr(0x04170055, getFromLookup(value, {'ON': 0, 'OFF': 1}), 1);
break;
case 'child_lock':
await sendAttr(0x04160055, getFromLookup(value, {'UNLOCK': 0, 'LOCK': 1}), 1);
Expand Down

0 comments on commit 3a5c6ae

Please sign in to comment.