UClock Versions Save

A tight BPM clock generator for Arduino platform using hardware timer. AVRs, Teensy and XIAO support

v1.1.4

7 months ago
  • force the use of defined object TimerTcc0 to avoid problems with xiao mcu timer usage.

v1.1.3

8 months ago

fixed a bpm printing problem within midi monitor examples that freezes the microcontroler.

v1.1.2

8 months ago
  • Example usage fixes for tick access on calback

v1.1.1

11 months ago

Bugfixed a problem that freezed Xiao when using TinyUSB from adafruit and uClock library.

v1.1.0

1 year ago

Thanks @mightycoco for the coded support/tests and @m-r-m-s for reporting and testing.

  • Xiao Support
  • Compile time Warnings fix

v1.0.0

1 year ago

Clock generation and sync engine totally rewrited for better performance and timming.

  • You got plenty of more room to write your code at interruption calls.
  • Better clock, better slave sync!

0.10.6

1 year ago

Timer implemented to run from timer0, timer1 or timer2 on AVR boards.

Make use if you want to integrate uClock along with some library that already make use of timer1(the default and preferred uClock timer on avr boards).

You can chose your timer from uClock.cpp a #define code area:

// pickup a avr timer to make use.
// pickup only one!
// try to avoid timer0, only use it if you know what you are doing.
// 0 = delay(), millis() e micros()
// 1 = Servo.h library(any other?)
// 2 = tone()
//#define AVR_TIMER_0
#define AVR_TIMER_1
//#define AVR_TIMER_2

0.10.5

1 year ago

getTempo() fix for slave sync when receiving stop byte. this fix avoids getTempo() returns random tempo after stop byte received.

Thanks Matthew for reporting and debuging it.

0.10.4

2 years ago
  • phase lock was removed by mistaken on last release. getting him back!

0.10.3

2 years ago
  • revert back 32 and 16PPQN callbacks to keep compatibility. but give a try on polling method!