Update README.md

To reflect the last hotfix.
pull/7/head
midilab 6 years ago committed by GitHub
parent 42c18bca28
commit afac75c285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      README.md

@ -148,7 +148,8 @@ void sendMidiMessage(uint8_t command, uint8_t byte1, uint8_t byte2)
// The callback function wich will be called by uClock each Pulse of 16PPQN clock resolution. Each call represents exactly one step.
void ClockOut16PPQN(uint32_t * tick)
{
uint16_t step, length;
uint16_t step;
uint16_t length = NOTE_LENGTH;
// get actual step.
_step = *tick % _step_length;
@ -165,7 +166,6 @@ void ClockOut16PPQN(uint32_t * tick)
length = NOTE_LENGTH + (i * 6);
break;
} else if ( _sequencer[step].rest == false ) {
length = NOTE_LENGTH;
break;
}
}
@ -274,4 +274,4 @@ void loop()
//processYourLeds();
//processYourPots();
}
```
```

Loading…
Cancel
Save