Vuo  1.2.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoMidiController

Description

A music note event sent via MIDI.

Classes

struct  VuoMidiController
 A music note event sent via MIDI. More...
 

Functions

VuoMidiController VuoMidiController_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_objectVuoMidiController_getJson (const VuoMidiController mn)
 Encodes value as a JSON object.
 
char * VuoMidiController_getSummary (const VuoMidiController mn)
 Returns a compact string representation of value (comma-separated coordinates).
 
bool VuoMidiController_areEqual (const VuoMidiController value1, const VuoMidiController value2)
 Returns true if the channel, controller number, and value all match.
 
static VuoMidiController VuoMidiController_make (unsigned char channel, unsigned char controllerNumber, unsigned char value) __attribute__((const ))
 Returns a note event with the specified values.
 
VuoMidiController VuoMidiController_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoMidiController_getString (const VuoMidiController value)
 Automatically generated function.
 
void VuoMidiController_retain (VuoMidiController value)
 Automatically generated function.
 
void VuoMidiController_release (VuoMidiController value)
 Automatically generated function.
 

Class Documentation

struct VuoMidiController
Class Members
char blah[42]
Todo:
https://b33p.net/kosada/node/4124
unsigned char channel Permitted values: 1 through 16.
unsigned char controllerNumber Permitted values: 0 through 127.
unsigned char value Permitted values: 0 through 127.

Function Documentation

bool VuoMidiController_areEqual ( const VuoMidiController  value1,
const VuoMidiController  value2 
)

Returns true if the channel, controller number, and value all match.

struct json_object * VuoMidiController_getJson ( const VuoMidiController  mn)
read

Encodes value as a JSON object.

char* VuoMidiController_getString ( const VuoMidiController  value)

Automatically generated function.

char * VuoMidiController_getSummary ( const VuoMidiController  mn)

Returns a compact string representation of value (comma-separated coordinates).

static VuoMidiController VuoMidiController_make ( unsigned char  channel,
unsigned char  controllerNumber,
unsigned char  value 
) const
inlinestatic

Returns a note event with the specified values.

VuoMidiController VuoMidiController_makeFromJson ( json_object js)

Decodes the JSON object js to create a new value.

Example:
{
"channel" : 1,
"controllerNumber" : 1,
"value" : 127
}
VuoMidiController VuoMidiController_makeFromString ( const char *  str)

Automatically generated function.

void VuoMidiController_release ( VuoMidiController  value)

Automatically generated function.

void VuoMidiController_retain ( VuoMidiController  value)

Automatically generated function.