Vuo  0.4.8
 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_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).
 
VuoMidiController VuoMidiController_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoMidiController_stringFromValue (const 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

VuoMidiController VuoMidiController_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

Example:
{
"channel" : 1,
"controllerNumber" : 1,
"value" : 127
}