rger

Dependencies:   mbed

HardwareControl.h

Committer:
kevinrhyne
Date:
2015-12-08
Revision:
0:a50960b2f6bd

File content as of revision 0:a50960b2f6bd:

#ifndef HARDWARECONTROL_H
#define HARDWARECONTROL_H

#include "mbed.h"
#include "Song.h"

class HardwareControl{
    public:

        HardwareControl();
        void playNote(int, int);
        void releaseNote();
    
    
};

#endif