Projectlab Elektronica-ICT KULeuven

Dependencies:   EthernetInterface TMP102 TextLCD mbed-rtos mbed

werking.pdf

Tune.h

Committer:
seppeduwe
Date:
2014-03-14
Revision:
0:ae3af7d18c4a

File content as of revision 0:ae3af7d18c4a:

#include "mbed.h"
#ifndef Tune_H
#define Tune_H
class Tune{
    public:
        Tune();
        void play(int tune);
    private:
         
        PwmOut *speaker; 
        static const int freq[];
        static const int lenght[];
        static const int delay[];
    };
#endif