Skip to content

Commit

Permalink
fix: Fix leadingTrailingEdge for Inovelli VZM36 (#7696)
Browse files Browse the repository at this point in the history
* Add endpoint number for P26

I believe we need the endpoint to make sure the configuration gets sent to the correct one. At the least it will be consistent with the rest of the vzm36 params.

* Fixed data type
  • Loading branch information
InovelliUSA authored Jun 27, 2024
1 parent 3e56ca4 commit 9bc3d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/inovelli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1028,9 +1028,9 @@ const VZM36_ATTRIBUTES : {[s: string]: Attribute} = {
max: 254,
description: 'Level of power output during Quick Start Light time (P23).',
},
leadingTrailingEdge: {
leadingTrailingEdge_1: {
ID: 26,
dataType: Zcl.DataType.BOOLEAN,
dataType: Zcl.DataType.UINT8,
displayType: 'enum',
values: {'Leading Edge': 0, 'Trailing Edge': 1},
min: 0,
Expand Down

0 comments on commit 9bc3d95

Please sign in to comment.