Projectlab Elektronica-ICT KULeuven

Dependencies:   EthernetInterface TMP102 TextLCD mbed-rtos mbed

werking.pdf

Tune.h

Committer:
seppeduwe
Date:
2014-03-17
Revision:
4:466d859bfb13
Parent:
0:ae3af7d18c4a

File content as of revision 4:466d859bfb13:

#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