OSCtoCV Library

Dependents:   OSCtoCVConverter

OSCtoCV_GateSequencer.h

Committer:
casiotone401
Date:
2016-02-16
Revision:
4:fe335dc8d53d
Parent:
1:981b62bb5c87
Child:
6:7fb15b1b5459

File content as of revision 4:fe335dc8d53d:

#ifndef OSCtoCV_GATESEQUENCER_h
#define OSCtoCV_GATESEQUENCER_h

#pragma O3
#pragma Otime

#include "mbed.h"

//-------------------------------------------------------------
// Gate Sequencer Functions

// Gate Sequencer  beat(Note values) length(Gate time) invert(invert Gate) gateoff, syncoff(Mute, SyncOut GateOut)
int GateSeq(unsigned int bpm, unsigned int beat, unsigned int ch, float length, bool invert, bool gatesOff, bool syncoff);

#endif