Skip to content

Commit

Permalink
Merge pull request #3537 from lepieru/mapping/hercules-p32/more-accur…
Browse files Browse the repository at this point in the history
…ate-headmix

Hercules P32 mapping: more accurate headmix control
  • Loading branch information
Be-ing authored Feb 2, 2021
2 parents 4ec83f8 + 36fc3bd commit a1c35fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion res/controllers/Hercules-P32-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ P32.browseEncoder = function(_channel, _control, value, _status, _group) {

P32.headMixEncoder = function(_channel, _control, value, _status, _group) {
var direction = (value > 64) ? -1 : 1;
engine.setValue("[Master]", "headMix", engine.getValue("[Master]", "headMix") + (0.25 * direction));
engine.setValue("[Master]", "headMix", engine.getValue("[Master]", "headMix") + (0.1 * direction));
};

P32.recordButton = new components.Button({
Expand Down

0 comments on commit a1c35fd

Please sign in to comment.