txt disp

Sends sysex for displaying text on launchpad pro (version 1).
Author: Mattilyn Mattroe
License: you have to give me two cheese triangles and a pack of mini cheddars if you ever use this at a child's 7th birthday party. otherwise, do as you wil
Github: matroe/LPadPro/txt disp.axo

Inlets

bool32 send

charptr32 text

Outlets

None

Parameters

int32 speed

bool32.tgl loop

Attributes

combo output

Declaration
int strig;
uint8_t speed;
Control Rate
speed = param_speed;
uint8_t sysexArray[32] = {240,
                          0,
                          32,
                          41,
                          2,
                          16,
                          20,
                          127,
                          param_loop,
                          speed,
                          inlet_text[0],
                          inlet_text[1],
                          inlet_text[2],
                          inlet_text[3],
                          inlet_text[4],
                          inlet_text[5],
                          inlet_text[6],
                          inlet_text[7],
                          inlet_text[8],
                          inlet_text[9],
                          inlet_text[10],
                          inlet_text[11],
                          inlet_text[12],
                          inlet_text[13],
                          inlet_text[14],
                          inlet_text[15],
                          inlet_text[16],
                          inlet_text[17],
                          inlet_text[18],
                          inlet_text[19],
                          inlet_text[20],
                          247};

if (inlet_send && !strig) {
  MidiSendSysEx(MIDI_DEVICE_USB_HOST, 2, sysexArray, 32);
  strig = 1;
}

if (!inlet_send) {
  strig = 0;
}

Privacy

© 2024 Zrna Research