Adding more aliases

This commit is contained in:
2023-08-24 09:38:12 +02:00
parent 6ad5bb7fa9
commit fbf5d5d875
2 changed files with 13 additions and 1 deletions

View File

@ -255,6 +255,7 @@ export class UserAPI {
*/
this.MidiConnection.sendSysExMessage(data);
};
sy = this.sysex;
public pitch_bend = (value: number, channel: number): void => {
/**
@ -277,6 +278,7 @@ export class UserAPI {
*/
this.MidiConnection.sendProgramChange(program, channel);
};
pc = this.program_change;
public midi_clock = (): void => {
/**
@ -298,6 +300,7 @@ export class UserAPI {
*/
this.MidiConnection.sendMidiControlChange(control, value, channel);
};
cc = this.control_change;
public midi_panic = (): void => {
/**
@ -1034,7 +1037,7 @@ export class UserAPI {
*/
return this._euclidean_cycle(pulses, length, rotate)[iterator % length];
};
ec = this.euclid;
eu = this.euclid;
_euclidean_cycle(
pulses: number,