Vuo  0.4.7
 All Classes Files Functions Variables Typedefs Enumerations Enumerator 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_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoMIDIController_stringFromValue (const VuoMIDIController value)
 Serializes value as a C string.
 
VuoMIDIController VuoMIDIController_valueFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_object * VuoMIDIController_jsonFromValue (const VuoMIDIController mn)
 Encodes value as a JSON object.
 
char * VuoMIDIController_summaryFromValue (const VuoMIDIController mn)
 Returns a compact string representation of value (comma-separated coordinates).
 

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

char * VuoMIDIController_stringFromValue ( const VuoMIDIController  value)

Serializes value as a C string.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)
VuoMIDIController VuoMIDIController_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

Example:
{
"channel" : 1,
"controllerNumber" : 1,
"value" : 127
}
VuoMIDIController VuoMIDIController_valueFromString ( const char *  initializer)

Parses the C string initializer to create a new value.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)