Skip to content

Commit

Permalink
fix: live-s button index
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Nov 17, 2022
1 parent be3888c commit 39f8771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/node/src/models/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export interface LoupedeckDevice extends EventEmitter<LoupedeckDeviceEvents> {

/**
* Set the brightness of the displays
* @param value 0-10
* @param value 0-1
*/
setBrightness(value: number): Promise<void>

Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/models/live-s.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ for (let i = 0; i < 4; i++) {
Controls.push({
type: LoupedeckControlType.Button,
index: i,
encoded: 0x03 + i,
encoded: 0x07 + i,
})
}

Expand Down

0 comments on commit 39f8771

Please sign in to comment.