A MIDI piano synthesizer that implements the Karplus Strong physical modeling algorithm.

Dependencies:   mbed USBDevice PinDetect

LEDController.h

Committer:
asuszek
Date:
2016-04-25
Revision:
22:b800e1766647
Parent:
20:bf675ba2c454

File content as of revision 22:b800e1766647:


#include "mbed.h"

class LEDController{
public:
    
    /*
     * Identifies what note was passed in and passes this information along to chooseLEDForNote.
     * @param key The integer representation of the note
     * @param type This integer determines whether the event coming in is an "on" or "off" event
     */
    void identifyKeyForLed(int key, int type);

private:    
    /*
     * Finds an available LED to light up or turn off depending on the type param.
     * @param key[] This is the notes information such as the numerical key value and RGB values.
     * @param type This integer determines whether the event coming in is an "on" or "off" event.
     * @param signature Determines whether the note is sharp or not
     */
    void chooseLedForKey(int colors[3], int type, int signature, int key);
    
    /*
     * Sets the chosen LED to the proper color of the note passed in.
     * @param key[] This is the notes information such as the numerical key value and RGB values.
     * @param type This integer determines whether the event coming in is an "on" or "off" event.
     * @param signature Determines whether the note is sharp or not
     * @param led Determines which LED to light up
     */
    void setLedToKey(int colors[3], int type, int signature, int led, int key);
    
    
};