mirror of https://github.com/midilab/uClock
commit
a4dc3fbbda
@ -0,0 +1,84 @@ |
|||||||
|
/* Uart MIDI Sync Box
|
||||||
|
*
|
||||||
|
* This example demonstrates how to change the Uart MIDI
|
||||||
|
* device name on ESP32 family.
|
||||||
|
*
|
||||||
|
* This example code is in the public domain. |
||||||
|
*
|
||||||
|
* ... |
||||||
|
*
|
||||||
|
*/ |
||||||
|
#include <uClock.h> |
||||||
|
|
||||||
|
// MIDI clock, start and stop byte definitions - based on MIDI 1.0 Standards.
|
||||||
|
#define MIDI_CLOCK 0xF8 |
||||||
|
#define MIDI_START 0xFA |
||||||
|
#define MIDI_STOP 0xFC |
||||||
|
|
||||||
|
// the blue led
|
||||||
|
#define LED_BUILTIN 2 |
||||||
|
|
||||||
|
volatile bool _midi_clk_income = false; |
||||||
|
|
||||||
|
uint8_t bpm_blink_timer = 1; |
||||||
|
void handle_bpm_led(uint32_t tick) |
||||||
|
{ |
||||||
|
// BPM led indicator
|
||||||
|
if ( !(tick % (96)) || (tick == 1) ) { // first compass step will flash longer
|
||||||
|
bpm_blink_timer = 8; |
||||||
|
digitalWrite(LED_BUILTIN, HIGH); |
||||||
|
} else if ( !(tick % (24)) ) { // each quarter led on
|
||||||
|
bpm_blink_timer = 1; |
||||||
|
digitalWrite(LED_BUILTIN, HIGH); |
||||||
|
} else if ( !(tick % bpm_blink_timer) ) { // get led off
|
||||||
|
digitalWrite(LED_BUILTIN, LOW); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// Internal clock handlers
|
||||||
|
void ClockOut96PPQN(uint32_t tick) { |
||||||
|
// Send MIDI_CLOCK to external gears
|
||||||
|
//Serial.write(MIDI_CLOCK);
|
||||||
|
_midi_clk_income = true; |
||||||
|
handle_bpm_led(tick); |
||||||
|
} |
||||||
|
|
||||||
|
void onClockStart() { |
||||||
|
Serial.write(MIDI_START); |
||||||
|
} |
||||||
|
|
||||||
|
void onClockStop() { |
||||||
|
Serial.write(MIDI_STOP); |
||||||
|
} |
||||||
|
|
||||||
|
void setup() { |
||||||
|
// Initialize serial communication at 31250 bits per second, the default MIDI serial speed communication:
|
||||||
|
Serial.begin(31250); |
||||||
|
|
||||||
|
// A led to count bpms
|
||||||
|
pinMode(LED_BUILTIN, OUTPUT); |
||||||
|
|
||||||
|
// Setup our clock system
|
||||||
|
// Inits the clock
|
||||||
|
uClock.init(); |
||||||
|
// Set the callback function for the clock output to send MIDI Sync message.
|
||||||
|
uClock.setClock96PPQNOutput(ClockOut96PPQN); |
||||||
|
// Set the callback function for MIDI Start and Stop messages.
|
||||||
|
uClock.setOnClockStartOutput(onClockStart);
|
||||||
|
uClock.setOnClockStopOutput(onClockStop); |
||||||
|
// Set the clock BPM to 126 BPM
|
||||||
|
uClock.setTempo(126); |
||||||
|
// Starts the clock, tick-tac-tick-tac...
|
||||||
|
uClock.start(); |
||||||
|
} |
||||||
|
|
||||||
|
// Do it whatever to interface with Clock.stop(), Clock.start(), Clock.setTempo() and integrate your environment...
|
||||||
|
void loop() { |
||||||
|
// watch for income signal from uClock to fire the clock over midi
|
||||||
|
if (_midi_clk_income) { |
||||||
|
Serial.write(MIDI_CLOCK); |
||||||
|
noInterrupts(); |
||||||
|
_midi_clk_income = false; |
||||||
|
interrupts(); |
||||||
|
} |
||||||
|
} |
@ -1,10 +1,10 @@ |
|||||||
name=uClock |
name=uClock |
||||||
version=1.1.4 |
version=1.2.0 |
||||||
author=Romulo Silva <contact@midilab.co> |
author=Romulo Silva <contact@midilab.co> |
||||||
maintainer=Romulo Silva <contact@midilab.co> |
maintainer=Romulo Silva <contact@midilab.co> |
||||||
sentence=BPM clock generator for Arduino platform. |
sentence=BPM clock generator for Arduino platform. |
||||||
paragraph=A Library to implement BPM clock tick calls using hardware interruption. Supported and tested on AVR boards(ATmega168/328, ATmega16u4/32u4 and ATmega2560) and ARM boards(Teensy and Seedstudio XIAO M0) |
paragraph=A Library to implement BPM clock tick calls using hardware interruption. Supported and tested on AVR boards(ATmega168/328, ATmega16u4/32u4 and ATmega2560) and ARM boards(Teensy, Seedstudio XIAO M0 and ESP32) |
||||||
category=Timing |
category=Timing |
||||||
url=https://github.com/midilab/uClock |
url=https://github.com/midilab/uClock |
||||||
architectures=avr,arm,samd |
architectures=avr,arm,samd,esp32 |
||||||
includes=uClock.h |
includes=uClock.h |
||||||
|
Loading…
Reference in new issue