Skip to content

Commit

Permalink
rename shorter
Browse files Browse the repository at this point in the history
  • Loading branch information
montoyamoraga committed Apr 24, 2022
1 parent 44eb86c commit 4c5adfa
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 18 deletions.
3 changes: 1 addition & 2 deletions drafts/critter-and-guitari-bolsa-bass.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.critter-and-guitari-bolsa-bass.ck
// maquinitas chuck script for Critter & Guitari Bolsa Bass
// critter-and-guitari-bolsa-bass.ck

// declare class CritterBolsaBass that inherits from maquinitas
public class CritterBolsaBass extends maquinitas {
Expand Down
3 changes: 1 addition & 2 deletions drafts/roland-jp-08.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.roland-jp-08.ck
// maquinitas chuck script for Roland JP-08
// roland-jp-08.ck

// declare class RolandJP08 that inherits from maquinitas
public class RolandJP08 extends maquinitas {
Expand Down
3 changes: 1 addition & 2 deletions drafts/roland-sh-01a.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.roland-sh-01a.ck
// maquinitas chuck script for Roland SH-01A
// roland-sh-01a.ck

public class RolandSH01A extends maquinitas {
// default MIDI channel 1 for Roland SH-01A
Expand Down
3 changes: 1 addition & 2 deletions drafts/roland-tb-03.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.roland-tb-03.ck
// maquinitas chuck script for Roland TB-03
// roland-tb-03.ck

public class RolandTB03 extends maquinitas {
// default MIDI channel 2 for Roland TB-03
Expand Down
3 changes: 1 addition & 2 deletions drafts/roland-tr-08.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.roland-tr-08.ck
// maquinitas chuck script for Roland TR-08
// roland-tr-08.ck

public class RolandTR08 extends maquinitas {

Expand Down
3 changes: 1 addition & 2 deletions drafts/roland-tr-09.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.roland-tr-09.ck
// maquinitas chuck script for Roland TR-09
// roland-tr-09.ck

public class RolandTR09 extends maquinitas {

Expand Down
3 changes: 1 addition & 2 deletions examples/korg/korg-volca-beats.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maquinitas example
// korg volca beats
// example for korg volca beats

// new instance
KorgVolcaBeats beats;
Expand Down
33 changes: 33 additions & 0 deletions examples/korg/korg-volca-fm.ck
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// korg volca beats

// new instance
KorgVolcaFm fm;

// setup port
// beats.setupPort(0);

// print number of MIDI CC parameter
// <<< beats.ccMIDI["hihat grain"] >>>;

// while (true) {
// Std.rand2(36, 50) => int note;
// Std.rand2(0, 127) => int velocity;

// beats.noteOn(note, velocity);

// Std.rand2f(0.01, 0.5) => float on;
// Std.rand2f(0.01, 0.5) => float off;

// let time flow
// on :: second => now;
// note off
// beats.noteOff(note);
// let time flow
// off :: second => now;

// CC message
// myVolcaFm.controlChange(myVolcaFm.ccMIDI["lfo rate"], Std.rand2(0, 127));

// beats.startSequencer();
// beats.stopSequencer();
// }
3 changes: 1 addition & 2 deletions src/korg/korg-volca-beats.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.korg-volca-beats.ck
// maquinitas chuck script for Korg volca beats
// korg-volca-beats.ck

public class KorgVolcaBeats extends maquinitas {

Expand Down
3 changes: 1 addition & 2 deletions src/korg/korg-volca-fm.ck
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// maq.inst.korg-volca-fm.ck
// maquinitas chuck script for Korg volca fm
// korg-volca-fm.ck

public class KorgVolcaFm extends maquinitas {
// default MIDI channel 2 for Korg volca fm
Expand Down

0 comments on commit 4c5adfa

Please sign in to comment.