fixed sequence lengthe (was playing one step more than set)

This commit is contained in:
Oleksiy
2025-03-12 14:24:59 +02:00
parent faa8def092
commit 709c21aaf8
2 changed files with 11 additions and 41 deletions

View File

@ -20,7 +20,6 @@ const byte clockOutPin = 3;
const byte outsPins[] = { 7, 8, 10, 6, 9, 11, clockOutPin };
bool rotateScreen = false;
bool reverseEnc = false;
//
/* Rev 1 Config
#define ENC_BTN_PIN 14
@ -34,7 +33,7 @@ bool reverseEnc = false;
#define ANALOGUE_INPUT_2_PIN A1
const byte clockOutPin = 13;
const byte outsPins[6] = {6, 11, 7, 10, 8, 9};
const byte outsPins[6] = {6, 11, 7, 10, 8, 9, clockOutPin};
bool rotateScreen = true;
*/